ic-http-certification 3.2.0

Certification for HTTP responses for the Internet Computer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! The CEL module contains functions and builders for creating CEL expression
//! definitions and converting them into their `String` representation.

mod cel_builder;
pub use cel_builder::*;

mod cel_types;
pub use cel_types::*;

mod create_cel_expr;
pub use create_cel_expr::*;

#[cfg(test)]
mod fixtures;