summaryrefslogtreecommitdiff
path: root/exes/ratelimit/Cargo.toml
blob: d82d8c95f07a76224a53c958f1a84df398fb51aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "ratelimit"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
shared = { path = "../../libs/shared" }
proto = { path = "../../libs/proto" }
leash = { path = "../../libs/leash" }

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 = "*"
tracing = "*"
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"] }