cellang 0.6.0

Interpreter for the CEL expression language
Documentation
# 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 = "2024"
name = "cellang"
version = "0.6.0"
authors = ["Nikola Jokic <jokicnikola07@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Interpreter for the CEL expression language"
readme = "README.md"
keywords = [
    "cel",
    "expression",
    "language",
    "interpreter",
    "rust",
]
categories = [
    "development-tools",
    "compilers",
]
license = "MIT"
repository = "https://github.com/nikola-jokic/cellang"
resolver = "2"

[features]
default = []
derive = ["cellang-macros"]
wasm = [
    "dep:wasm-bindgen",
    "dep:serde-wasm-bindgen",
]

[lib]
name = "cellang"
crate-type = [
    "rlib",
    "cdylib",
]
path = "src/lib.rs"

[[example]]
name = "comprehensions"
path = "examples/comprehensions.rs"

[[example]]
name = "concurrency"
path = "examples/concurrency.rs"

[[example]]
name = "create_function"
path = "examples/create_function.rs"

[[example]]
name = "env_snapshot"
path = "examples/env_snapshot.rs"

[[example]]
name = "simple"
path = "examples/simple.rs"

[[example]]
name = "user_role_derive"
path = "examples/user_role_derive.rs"

[[test]]
name = "derive"
path = "tests/derive.rs"

[dependencies.base64]
version = "^0.22"

[dependencies.cellang-macros]
version = "0.6.0"
optional = true

[dependencies.miette]
version = "^7"

[dependencies.regex]
version = "^1"

[dependencies.serde]
version = "^1"
features = [
    "derive",
    "rc",
]

[dependencies.serde-wasm-bindgen]
version = "^0.6"
optional = true

[dependencies.serde_json]
version = "^1"

[dependencies.thiserror]
version = "^2"

[dependencies.time]
version = "^0.3"
features = [
    "serde",
    "formatting",
    "parsing",
]

[dependencies.wasm-bindgen]
version = "^0.2.95"
features = ["spans"]
optional = true

[dev-dependencies.miette]
version = "^7"
features = ["fancy"]

[dev-dependencies.time]
version = "^0.3"
features = [
    "serde",
    "formatting",
    "parsing",
    "macros",
]

[target.'cfg(target_arch = "wasm32")'.dev-dependencies.wasm-bindgen-test]
version = "^0.3"