# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "cel-interpreter" version = "0.9.0" authors = [ "Tom Forbes ", "Clark McCauley ", ] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "An interpreter for the Common Expression Language (CEL)" readme = "README.md" categories = ["compilers"] license = "MIT" repository = "https://github.com/clarkmcc/cel-rust" [lib] name = "cel_interpreter" path = "src/lib.rs" [[bench]] name = "runtime" path = "benches/runtime.rs" harness = false [dependencies.base64] version = "0.22.1" optional = true [dependencies.cel-parser] version = "0.8.0" [dependencies.chrono] version = "0.4.26" features = ["alloc"] optional = true default-features = false [dependencies.nom] version = "7.1.3" [dependencies.paste] version = "1.0.14" [dependencies.regex] version = "1.10.5" optional = true [dependencies.serde] version = "1.0.196" [dependencies.serde_json] version = "1.0.124" optional = true [dependencies.thiserror] version = "1.0.40" [dev-dependencies.criterion] version = "0.5.1" features = ["html_reports"] [dev-dependencies.serde_bytes] version = "0.11.14" [features] chrono = ["dep:chrono"] json = [ "dep:base64", "dep:serde_json", ] regex = ["dep:regex"]