-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (43 loc) · 1.12 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
45
46
[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.8.1"
bb8 = "0.9.0"
bb8-redis = "0.20.0"
dotenvy = "0.15.7"
envy = "0.4.2"
metrics = "0.24.1"
metrics-exporter-prometheus = { version = "0.16.2", default-features = false }
redis-macros = { version = "0.5.0", default-features = false, features = [
"macros",
] }
regex = "1.11.1"
reqwest = { version = "0.12.12", default-features = false, features = [
"http2",
"charset",
"json",
"rustls-tls",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serenity = { version = "0.12.4", default-features = false, features = [
"builder",
"model",
"rustls_backend",
] }
tokio = { version = "1.43.0", features = [
"rt-multi-thread",
"macros",
"signal",
] }
tower-http = { version = "0.6.2", features = ["trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.12.1", features = ["serde"] }
[profile.release]
strip = true
lto = "thin"