summaryrefslogtreecommitdiff
path: root/exes/ratelimit/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'exes/ratelimit/Cargo.toml')
-rw-r--r--exes/ratelimit/Cargo.toml16
1 files changed, 12 insertions, 4 deletions
diff --git a/exes/ratelimit/Cargo.toml b/exes/ratelimit/Cargo.toml
index 82ca9f6..d82d8c9 100644
--- a/exes/ratelimit/Cargo.toml
+++ b/exes/ratelimit/Cargo.toml
@@ -9,13 +9,21 @@ edition = "2021"
shared = { path = "../../libs/shared" }
proto = { path = "../../libs/proto" }
leash = { path = "../../libs/leash" }
-hyper = { version = "0.14", features = ["full"] }
-tokio = { version = "1", features = ["full"] }
+
+hyper = "0.14"
+tokio = { version = "1", features = ["rt"] }
+
serde = { version = "1.0.8", features = ["derive"] }
+
twilight-http-ratelimiting = { git = "https://github.com/MatthieuCoder/twilight.git" }
anyhow = "*"
-futures-util = "0.3.17"
tracing = "*"
-serde_json = { version = "1.0" }
+tracing-opentelemetry = "0.18.0"
+opentelemetry = "0.18.0"
+opentelemetry-http = "0.7.0"
+
tonic = "0.8.3"
tokio-stream = "0.1.11"
+
+
+redis = { version = "0.22.1", features = ["cluster", "connection-manager", "tokio-comp"] } \ No newline at end of file