aboutsummaryrefslogtreecommitdiffstats
path: root/crates/typologies/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'crates/typologies/Cargo.toml')
-rw-r--r--crates/typologies/Cargo.toml35
1 files changed, 34 insertions, 1 deletions
diff --git a/crates/typologies/Cargo.toml b/crates/typologies/Cargo.toml
index 207e671..38a8cb4 100644
--- a/crates/typologies/Cargo.toml
+++ b/crates/typologies/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-name = "typologies"
+name = "warden-typologies"
version = "0.1.0"
edition = "2024"
license.workspace = true
@@ -8,3 +8,36 @@ 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, default-features = false }
+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
+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-middleware.workspace = true
+warden-stack = { workspace = true, features = [
+ "cache",
+ "nats-jetstream",
+ "opentelemetry",
+ "opentelemetry-tonic",
+ "tracing-loki",
+] }