json_eval_rs/parse_schema/mod.rs
1//! Schema parsing entry points.
2//!
3//! `legacy` keeps the original parser shape used by existing callers.
4//! `parsed` fills reusable [`crate::ParsedSchema`] structures. Public functions
5//! are re-exported here to preserve existing Rust imports.
6
7pub mod common;
8pub mod legacy;
9pub mod parsed;
10
11pub use legacy::parse_schema;
12pub use parsed::parse_schema_into;