* Refactor the code, Update to the Service API REST JSON objects on disk. * Connect to the DB data model and engine to execute queries. * Remove the syntactic sugar around implicit `inside` operation on shapes, as it introduces issues.
24 lines
443 B
Rust
24 lines
443 B
Rust
#[macro_use]
|
|
extern crate lalrpop_util;
|
|
|
|
lalrpop_mod!(#[allow(clippy::all)] pub queries); // synthesized by LALRPOP
|
|
|
|
mod evaluators;
|
|
mod executors;
|
|
mod expressions;
|
|
mod predictors;
|
|
mod validators;
|
|
|
|
mod symbols;
|
|
mod types;
|
|
|
|
pub use expressions::Executor;
|
|
pub use expressions::Predictor;
|
|
pub use expressions::Validator;
|
|
pub use queries::FiltersParser;
|
|
pub use queries::QueryParser;
|
|
pub use validators::ValidationResult;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|