ic-response-verification 3.2.0

Client side response verification for the Internet Computer
Documentation
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;