Reduce axum features to tokio, http1

This commit is contained in:
2024-05-16 19:30:46 -04:00
parent 8ffe09381c
commit 965bf5a457
2 changed files with 1 additions and 28 deletions

View File

@ -27,7 +27,7 @@ time = { version = "0.3.34", features = ["serde"], default-features = false }
diesel_migrations = { version = "2.1.0", optional = true }
pbkdf2 = { version = "0.12.2", features = ["simple"], optional = true }
tokio = { version = "1", optional = true, features = ["rt-multi-thread"] }
axum = { version = "0.7.5", optional = true }
axum = { version = "0.7.5", features = ["tokio", "http1"], default-features = false, optional = true }
tower = { version = "0.4.13", optional = true }
tower-http = { version = "0.5", optional = true, features = ["fs"] }
thiserror = "1.0.57"