Crates.io | cel-parser |
lib.rs | cel-parser |
version | 0.8.0 |
source | src |
created_at | 2020-12-20 15:36:59.795193 |
updated_at | 2024-11-04 14:37:25.675683 |
description | A parser for the Common Expression Language (CEL) |
homepage | |
repository | https://github.com/clarkmcc/cel-rust |
max_upload_size | |
id | 324918 |
size | 56,722 |
This module implements a LALRPOP parser for the Common Expression Language.
use cel_parser::parse;
pub fn main() {
let expr = parse("1 + 1").unwrap();
println!("{:?}", expr);
}