diff options
Diffstat (limited to 'crates/rule-executor/Cargo.toml')
-rw-r--r-- | crates/rule-executor/Cargo.toml | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/crates/rule-executor/Cargo.toml b/crates/rule-executor/Cargo.toml new file mode 100644 index 0000000..3bb9561 --- /dev/null +++ b/crates/rule-executor/Cargo.toml @@ -0,0 +1,45 @@ +[package] +name = "rule-executor" +version = "0.1.0" +edition = "2024" +license.workspace = true +homepage.workspace = true +documentation.workspace = true +description.workspace = true + +[dependencies] +anyhow.workspace = true +async-nats.workspace = true +clap = { workspace = true, features = ["derive"] } +config = { workspace = true, features = ["convert-case", "toml"] } +futures-util.workspace = true +moka = { workspace = true, features = ["future"] } +opentelemetry.workspace = true +opentelemetry-semantic-conventions.workspace = true +prost.workspace = true +serde = { workspace = true, features = ["derive"] } +serde_json.workspace = true +time = { workspace = true, features = ["serde"] } +tokio = { workspace = true, features = [ + "macros", + "rt-multi-thread", + "signal", +] } +tonic.workspace = true +tracing.workspace = true +tracing-opentelemetry.workspace = true +uuid = { workspace = true, features = ["v7"] } +warden-core = { workspace = true, features = [ + "message", + "configuration", + "serde", + "time", +] } +warden-stack = { workspace = true, features = [ + "nats-jetstream", + "opentelemetry", + "postgres", + "opentelemetry-tonic", + "tracing-loki", +] } +warden-middleware.workspace = true |