summaryrefslogtreecommitdiff
path: root/exes/ratelimit/Cargo.toml
blob: 079ec507203276c8d43aa3a3785f5b8f3ae91b54 (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
30
31
32
33
34
35
36
37
38
[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 = { workspace = true }
proto = { workspace = true }
leash = { workspace = true }
tracing-opentelemetry = { workspace = true }
opentelemetry = { workspace = true }
opentelemetry-http = { workspace = true }
tracing = { workspace = true }
tracing-futures = { workspace = true }
tokio = { workspace = true }
anyhow = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
hyper = { workspace = true }

twilight-http-ratelimiting = "0.14.2"
tonic = "0.8.3"
tokio-stream = "0.1.11"
redis = { version = "0.22.1", features = ["cluster", "connection-manager", "tokio-comp"] }

[dev-dependencies]
criterion = { workspace = true }
tokio-test = { workspace = true }
tracing-test = { workspace = true }
tracing-subscriber = { workspace = true }
test-log = { workspace = true }
env_logger = { workspace = true }

[[bench]]
name = "bucket"
harness = false