From 70a148dd86be9c8ccc56e1fce232262475aa3158 Mon Sep 17 00:00:00 2001 From: rtkay123 Date: Sat, 16 Aug 2025 14:13:14 +0200 Subject: feat(aggregator): write evaluation --- crates/aggregator/Cargo.toml | 51 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 crates/aggregator/Cargo.toml (limited to 'crates/aggregator/Cargo.toml') diff --git a/crates/aggregator/Cargo.toml b/crates/aggregator/Cargo.toml new file mode 100644 index 0000000..28e4b01 --- /dev/null +++ b/crates/aggregator/Cargo.toml @@ -0,0 +1,51 @@ +[package] +name = "warden-aggregator" +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 = ["toml"] } +futures-util.workspace = true +opentelemetry.workspace = true +opentelemetry-semantic-conventions.workspace = true +prost.workspace = true +serde = { workspace = true, features = ["derive", "rc"] } +serde_json.workspace = true +sqlx = { workspace = true, features = [ + "json", + "macros", + "migrate", + "postgres", + "runtime-tokio", + "time", + "tls-rustls", + "uuid", +] } +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", + "serde", + "time", +] } +warden-stack = { workspace = true, features = [ + "cache", + "nats-jetstream", + "opentelemetry", + "postgres", + "tracing-loki", +] } -- cgit v1.2.3