[package]
edition = "2024"
rust-version = "1.88.0"
name = "rsigma-runtime"
version = "0.12.0"
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 = []
daachorse-index = ["rsigma-eval/daachorse-index"]
default = []
evtx = ["dep:evtx"]
logfmt = []
nats = [
"async-nats",
"tokio-stream",
"time",
"futures",
]
otlp = [
"opentelemetry-proto",
"prost",
]
[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"
[[test]]
name = "evtx_integration"
path = "tests/evtx_integration.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "nats_e2e"
path = "tests/nats_e2e.rs"
[[test]]
name = "nats_integration"
path = "tests/nats_integration.rs"
[[test]]
name = "sources_integration"
path = "tests/sources_integration.rs"
[[bench]]
name = "dynamic_pipelines"
path = "benches/dynamic_pipelines.rs"
harness = false
[[bench]]
name = "runtime_throughput"
path = "benches/runtime_throughput.rs"
harness = false
[dependencies.arc-swap]
version = "1"
[dependencies.async-nats]
version = "0.48"
optional = true
[dependencies.async-trait]
version = "0.1"
[dependencies.cel]
version = "0.13"
[dependencies.chrono]
version = "0.4"
features = ["std"]
default-features = false
[dependencies.csv]
version = "1"
[dependencies.evtx]
version = "0.11"
optional = true
default-features = false
[dependencies.futures]
version = "0.3"
optional = true
[dependencies.jaq-interpret]
version = "1.5.0"
[dependencies.jaq-parse]
version = "1.0.3"
[dependencies.jsonpath-rust]
version = "1"
[dependencies.notify]
version = "8.2"
[dependencies.opentelemetry-proto]
version = "0.32"
features = [
"gen-tonic",
"logs",
"with-serde",
]
optional = true
default-features = false
[dependencies.parking_lot]
version = "0.12"
[dependencies.prost]
version = "0.14"
optional = true
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"json",
]
default-features = false
[dependencies.rsigma-eval]
version = "0.12.0"
features = ["parallel"]
[dependencies.rsigma-parser]
version = "0.12.0"
[dependencies.rusqlite]
version = "0.39"
features = ["bundled"]
[dependencies.serde_json]
version = "1"
[dependencies.syslog_loose]
version = "0.23"
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
optional = true
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"sync",
"macros",
"io-util",
"io-std",
"process",
"fs",
]
[dependencies.tokio-stream]
version = "0.1"
optional = true
[dependencies.tracing]
version = "0.1"
[dependencies.yaml_serde]
version = "0.10"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.rand]
version = "0.10"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.testcontainers]
version = "0.27"
[dev-dependencies.testcontainers-modules]
version = "0.15"
features = ["nats"]
[dev-dependencies.tokio]
version = "1"
features = ["full"]