Move ComparisonNumber into the library and add an OwnedLiteral for booleans.

This commit is contained in:
Tom Alexander
2020-06-14 17:08:01 -04:00
parent 8ab315abfe
commit 83c86ff9b3
6 changed files with 148 additions and 169 deletions

View File

@@ -1,6 +1,7 @@
//! This module contains a renderer for a rust implementation of LinkedIn Dust
mod breadcrumb_tree;
mod comparison_number;
mod context_element;
mod errors;
mod inline_partial_tree;
@@ -11,6 +12,8 @@ mod renderer;
mod select_context;
mod walking;
pub use comparison_number::compare_json_numbers;
pub use comparison_number::ComparisonNumber;
pub use context_element::Castable;
pub use context_element::CompareContextElement;
pub use context_element::ContextElement;