preserves/implementations/rust/preserves-path/src/lib.rs

25 lines
430 B
Rust

pub mod context;
pub mod error;
pub mod parse;
pub mod predicate;
pub mod schemas {
include!(concat!(env!("OUT_DIR"), "/src/schemas/mod.rs"));
}
pub mod step;
pub use context::Context;
pub use context::Env;
pub use error::CompilationError;
pub use parse::parse_selector;
pub use parse::parse_predicate;
pub use schemas::path::Predicate;
pub use schemas::path::Selector;
pub use schemas::path::Step;
pub use step::Node;