This commit is contained in:
nora 2025-08-02 22:28:42 +02:00
parent 27c8420d61
commit 5cf3f69553
3 changed files with 79 additions and 78 deletions

View file

@ -8,13 +8,7 @@ opt-level = "s"
lto = "thin"
[dependencies]
axum = { version = "0.8.4", default-features = false, features = [
"http2",
"multipart",
"tokio",
"tower-log",
"tracing",
] }
axum = { version = "0.8.4", default-features = false, features = ["http2", "macros", "multipart", "tokio", "tower-log", "tracing"] }
base64 = "0.22.1"
bs58 = "0.5.1"
color-eyre = "0.6.5"
@ -22,5 +16,7 @@ object_store = { version = "0.12.3", default-features = false, features = ["aws"
rand_core = { version = "0.9.3", features = ["os_rng"] }
subtle = { version = "2.6.1", default-features = false }
tokio = { version = "1.47.1", features = ["macros", "rt", "net"] }
tower = "0.5.2"
tower-http = { version = "0.6.6", features = ["trace"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }