[package]
edition = "2021"
name = "ooroo"
version = "0.2.0"
authors = ["Devin Ward <devissquared@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, compiled rule engine with a text-based DSL"
readme = "README.md"
keywords = [
"rules",
"dsl",
"engine",
"evaluation",
]
categories = [
"data-structures",
"config",
]
license = "MIT"
repository = "https://github.com/ooroo-rs/ooroo"
[features]
binary-cache = [
"dep:bincode",
"dep:blake3",
"dep:serde",
]
default = []
[lib]
name = "ooroo"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "detailed_report"
path = "examples/detailed_report.rs"
[[example]]
name = "dsl"
path = "examples/dsl.rs"
[[example]]
name = "multithreaded"
path = "examples/multithreaded.rs"
[[example]]
name = "priority"
path = "examples/priority.rs"
[[test]]
name = "binary_cache"
path = "tests/binary_cache.rs"
[[test]]
name = "dsl_parse"
path = "tests/dsl_parse.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "kani_proofs"
path = "tests/kani_proofs.rs"
[[test]]
name = "proptest_eval"
path = "tests/proptest_eval.rs"
[[test]]
name = "proptest_invariants"
path = "tests/proptest_invariants.rs"
[[test]]
name = "strategies"
path = "tests/strategies.rs"
[[test]]
name = "threaded"
path = "tests/threaded.rs"
[[bench]]
name = "evaluate"
path = "benches/evaluate.rs"
harness = false
[[bench]]
name = "throughput"
path = "benches/throughput.rs"
harness = false
[dependencies.bincode]
version = "2"
features = ["serde"]
optional = true
[dependencies.blake3]
version = "1"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.thiserror]
version = "2"
[dependencies.winnow]
version = "0.7"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(kani)",
'cfg(feature, values("binary-cache"))',
]