Change tower-http to optional (#1838)

This commit is contained in:
tottoto 2023-03-10 08:23:50 -08:00 committed by GitHub
parent 5c11c5c44d
commit 5793e75aac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,6 @@ pin-project-lite = "0.2.7"
serde = "1.0"
sync_wrapper = "0.1.1"
tower = { version = "0.4.13", default-features = false, features = ["util"] }
tower-http = { version = "0.4", features = ["util", "map-response-body"] }
tower-layer = "0.3.2"
tower-service = "0.3"
@ -93,6 +92,7 @@ serde_urlencoded = { version = "0.7", optional = true }
sha1 = { version = "0.10", optional = true }
tokio = { package = "tokio", version = "1.25.0", features = ["time"], optional = true }
tokio-tungstenite = { version = "0.18.0", optional = true }
tower-http = { version = "0.4", features = ["util", "map-response-body"], optional = true }
[build-dependencies]
rustversion = "1.0.9"