aboutsummaryrefslogtreecommitdiffstats
path: root/crates/pseudonyms/Cargo.toml
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2025-08-10 13:45:11 +0200
committerrtkay123 <dev@kanjala.com>2025-08-10 13:45:11 +0200
commitdbff6fa4e5684d8636fd46ecadfe5874a253bd49 (patch)
tree1039d96c2d02fbc6df1b7b218446c3a8acf1c6b5 /crates/pseudonyms/Cargo.toml
parent8cda165f9d3f108c80a4c9ee10c68a28299cb2d1 (diff)
downloadwarden-dbff6fa4e5684d8636fd46ecadfe5874a253bd49.tar.bz2
warden-dbff6fa4e5684d8636fd46ecadfe5874a253bd49.zip
feat(pseudonyms): serve api
Diffstat (limited to 'crates/pseudonyms/Cargo.toml')
-rw-r--r--crates/pseudonyms/Cargo.toml11
1 files changed, 10 insertions, 1 deletions
diff --git a/crates/pseudonyms/Cargo.toml b/crates/pseudonyms/Cargo.toml
index 02ecddc..1efd5c5 100644
--- a/crates/pseudonyms/Cargo.toml
+++ b/crates/pseudonyms/Cargo.toml
@@ -15,11 +15,20 @@ metrics.workspace = true
metrics-exporter-prometheus.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
+sqlx = { workspace = true, features = [
+ "macros",
+ "migrate",
+ "postgres",
+ "runtime-tokio",
+ "time",
+ "tls-rustls",
+] }
time.workspace = true
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "signal"] }
+tonic.workspace = true
tracing.workspace = true
warden-core = { workspace = true, features = ["pseudonyms", "serde-time"] }
[dependencies.warden-stack]
workspace = true
-features = ["api", "cache", "postgres", "opentelemetry", "tracing-loki"]
+features = ["api", "cache", "postgres", "opentelemetry-tonic", "tracing-loki"]