Trim unused axum/tower-http features; 'deploying', not 'self-hosting'

This commit is contained in:
Gregory Schier
2026-08-17 11:03:58 -07:00
parent 679e49d1eb
commit 47d25f7479
4 changed files with 5 additions and 6 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ path = "src/main.rs"
[dependencies]
async-trait = "0.1"
axum = { version = "0.7", features = ["http1", "http2", "json", "tokio"] }
axum = "0.7"
base64 = "0.22.1"
bytes = "1.11.1"
clap = { version = "4.5", features = ["derive", "env"] }
@@ -28,7 +28,7 @@ log = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "signal", "sync", "io-util", "time", "net"] }
tower-http = { version = "0.6", features = ["cors", "trace"] }
tower-http = { version = "0.6", features = ["cors"] }
ts-rs = { workspace = true }
url = "2"
uuid = { version = "1", features = ["v4"] }