[package]
edition = "2024"
rust-version = "1.88.0"
name = "rsigma-eval"
version = "0.7.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Evaluator for Sigma detection and correlation rules — match rules against events"
homepage = "https://github.com/timescale/rsigma"
readme = "README.md"
license = "MIT"
repository = "https://github.com/timescale/rsigma"
[features]
parallel = ["rayon"]
[lib]
name = "rsigma_eval"
path = "src/lib.rs"
[[test]]
name = "correlation_edge"
path = "tests/correlation_edge.rs"
[[test]]
name = "error_paths"
path = "tests/error_paths.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "pipeline_errors"
path = "tests/pipeline_errors.rs"
[[test]]
name = "state_snapshot"
path = "tests/state_snapshot.rs"
[[bench]]
name = "correlation"
path = "benches/correlation.rs"
harness = false
[[bench]]
name = "datagen"
path = "benches/datagen.rs"
[[bench]]
name = "eval"
path = "benches/eval.rs"
harness = false
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.flate2]
version = "1"
[dependencies.ipnet]
version = "2"
[dependencies.log]
version = "0.4"
[dependencies.rayon]
version = "1"
optional = true
[dependencies.regex]
version = "1"
[dependencies.rsigma-parser]
version = "0.7.0"
[dependencies.serde]
version = "1"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1.10.0"
[dev-dependencies.rand]
version = "0.9"