-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (41 loc) · 1.1 KB
/
Cargo.toml
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
39
40
41
42
43
44
[package]
name = "api-rs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
axum = "0.7.7"
bb8 = "0.8.6"
bb8-redis = "0.17.0"
dotenvy = "0.15.7"
envy = "0.4.2"
metrics = "0.24.0"
metrics-exporter-prometheus = { version = "0.16.0", default-features = false }
redis = { version = "0.27.5", features = ["ahash", "tokio-comp"] }
redis-macros = "0.4.2"
reqwest = { version = "0.12.9", default-features = false, features = [
"http2",
"charset",
"json",
"rustls-tls",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serenity = { version = "0.12.2", default-features = false, features = [
"builder",
"model",
"rustls_backend",
] }
tokio = { version = "1.41.1", features = [
"rt-multi-thread",
"macros",
"signal",
] }
tower-http = { version = "0.6.1", features = ["trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.11.0", features = ["serde"] }
[profile.release]
strip = true
lto = "thin"