cel-parser 0.1.1

A parser for the Common Expression Language (CEL)
Documentation

CEL Parser

This module implements a LALRPOP parser for the Common Expression Language.

Usage:

use cel_parser::ast::Expression;
use cel_parser::parser::ExpressionParser;

pub fn main() {
    let ast = ExpressionParser::new().parse("1 + 1 && [1,2,3].size() == 3").unwrap();
    println!("{:?}", ast);
}