Disable most axum features to cut on deps count

This commit is contained in:
Marcin Kulik
2024-04-30 20:40:49 +02:00
parent 3bcdf3f744
commit 420001759c
2 changed files with 1 additions and 18 deletions

View File

@@ -29,7 +29,7 @@ which = "6.0.0"
tempfile = "3.9.0"
scraper = { version = "0.15.0", default-features = false }
avt = "0.10.3"
axum = { version = "0.7.4", features = ["ws"] }
axum = { version = "0.7.4", default-features = false, features = ["http1", "ws"] }
tokio = { version = "1.35.1", features = ["full"] }
futures-util = "0.3.30"
tokio-stream = { version = "0.1.14", features = ["sync"] }