rave_engine 0.3.4

A secure and efficient JSON Schema validation and Rhai script execution engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod helper_fn;
mod json_schema_validator;
mod rhai_engine;
pub mod types;

pub mod prelude {
    pub mod json_schema_validator {
        pub use crate::json_schema_validator::*;
    }
    pub use crate::rhai_engine::*;
}