-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 1.01 KB
/
Copy pathCargo.toml
File metadata and controls
30 lines (28 loc) · 1.01 KB
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
[package]
name = "mcbot"
version = "1.0.0"
edition = "2024"
[dependencies]
axum = "0.8.9"
tokio = { version = "1.52.3", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
reqwest = { version = "0.13.4", default-features = false, features = ["json", "stream", "form", "rustls"] }
dotenvy = "0.15.7"
async_zip = { version = "0.0.18", features = ["full"] }
image = "0.25.10"
anyhow = "1.0.103"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] }
tokio-util = "0.7.18"
strsim = "0.11.1"
regex = "1.13.0"
chrono = "0.4.39"
hmac = "0.13.0"
sha2 = "0.11.0"
hex = "0.4.3"
sqlx = { version = "0.9.0", features = ["runtime-tokio", "tls-rustls", "postgres", "macros", "chrono"] }
sentry = { version = "0.49.1", default-features = false, features = ["anyhow", "backtrace", "contexts", "debug-images", "logs", "metrics", "panic", "release-health", "reqwest", "rustls", "tracing", "tower-axum-matched-path"] }
tower = "0.5.3"
[profile.dev.package."*"]
opt-level = 0