clarkmcc / cel-rust

Common Expression Language interpreter written in Rust
https://crates.io/crates/cel-interpreter
MIT License
362 stars 18 forks source link

Make functions module public #44

Closed lucperkins closed 3 months ago

lucperkins commented 3 months ago

At the moment, the functions module is only available within the crate. I think it would be useful to make those public so that people can opt into/out of specific functions in this crate when initializing their Context (for example if I only want contains, has, and exists in my context).

I'm happy to PR this.