diff options
author | rtkay123 <dev@kanjala.com> | 2025-08-16 14:13:14 +0200 |
---|---|---|
committer | rtkay123 <dev@kanjala.com> | 2025-08-16 14:13:14 +0200 |
commit | 70a148dd86be9c8ccc56e1fce232262475aa3158 (patch) | |
tree | 51214ab651215ef94a8554039cc953042b043cf6 /crates/aggregator/Cargo.toml | |
parent | bf4a2b8b0a04f0cb682db84a835fe7c57d8526bc (diff) | |
download | warden-70a148dd86be9c8ccc56e1fce232262475aa3158.tar.bz2 warden-70a148dd86be9c8ccc56e1fce232262475aa3158.zip |
feat(aggregator): write evaluation
Diffstat (limited to 'crates/aggregator/Cargo.toml')
-rw-r--r-- | crates/aggregator/Cargo.toml | 51 |
1 files changed, 51 insertions, 0 deletions
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", +] } |