From b6924a50c9ec49e1b2b0d286abbbe608410af87d Mon Sep 17 00:00:00 2001 From: rtkay123 Date: Tue, 12 Aug 2025 21:05:07 +0200 Subject: feat(router): get config --- crates/router/Cargo.toml | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 crates/router/Cargo.toml (limited to 'crates/router/Cargo.toml') diff --git a/crates/router/Cargo.toml b/crates/router/Cargo.toml new file mode 100644 index 0000000..0b7b232 --- /dev/null +++ b/crates/router/Cargo.toml @@ -0,0 +1,44 @@ +[package] +name = "warden-router" +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 +bytes = "1.10.1" +clap = { workspace = true, features = ["derive"] } +config = { workspace = true, features = ["convert-case", "toml"] } +futures-util.workspace = true +moka = { version = "0.12.10", features = ["future"] } +opentelemetry.workspace = true +opentelemetry-semantic-conventions.workspace = true +prost.workspace = true +serde = { workspace = true, features = ["derive", "rc"] } +serde_json.workspace = true +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" +] } + +[dependencies.warden-stack] +workspace = true +features = [ + "nats-jetstream", + "opentelemetry-tonic", + "tracing-loki", +] -- cgit v1.2.3