json-eval-rs 0.0.97

High-performance JSON Logic evaluator with schema validation and dependency tracking. Built on blazing-fast Rust engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Schema parsing entry points.
//!
//! `legacy` keeps the original parser shape used by existing callers.
//! `parsed` fills reusable [`crate::ParsedSchema`] structures. Public functions
//! are re-exported here to preserve existing Rust imports.

pub mod common;
pub mod legacy;
pub mod parsed;

pub use legacy::parse_schema;
pub use parsed::parse_schema_into;