[package]
edition = "2024"
rust-version = "1.88.0"
name = "rsigma-runtime"
version = "0.8.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Streaming runtime for rsigma — event sources, sinks, and log processing pipeline"
homepage = "https://github.com/timescale/rsigma"
readme = "README.md"
license = "MIT"
repository = "https://github.com/timescale/rsigma"
[features]
cef = []
default = []
evtx = ["dep:evtx"]
logfmt = []
nats = [
"async-nats",
"tokio-stream",
]
[lib]
name = "rsigma_runtime"
path = "src/lib.rs"
[[example]]
name = "jsonl_stdin"
path = "examples/jsonl_stdin.rs"
[[example]]
name = "tail_syslog"
path = "examples/tail_syslog.rs"
[[bench]]
name = "runtime_throughput"
path = "benches/runtime_throughput.rs"
harness = false
[dependencies.arc-swap]
version = "1"
[dependencies.async-nats]
version = "0.47"
optional = true
[dependencies.chrono]
version = "0.4"
features = ["std"]
default-features = false
[dependencies.evtx]
version = "0.11"
optional = true
[dependencies.rsigma-eval]
version = "0.8.1"
features = ["parallel"]
[dependencies.rsigma-parser]
version = "0.8.1"
[dependencies.serde_json]
version = "1"
[dependencies.syslog_loose]
version = "0.23"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"sync",
"macros",
"io-util",
"io-std",
]
[dependencies.tokio-stream]
version = "0.1"
optional = true
[dependencies.tracing]
version = "0.1"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.rand]
version = "0.9"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = ["full"]