1 2 3 4 5 6 7 8 9 10 11 12 13
//! Utilities for parsing CEL expressions into Rust consumable types. mod error; pub use error::*; mod ast_mapping; mod parser; pub(crate) use ast_mapping::map_cel_ast; pub(crate) use parser::parse_cel_expression; #[cfg(test)] mod tests;