From 564ae12c4e2277db744b6fd2ed02a91d7ebb74ba Mon Sep 17 00:00:00 2001 From: hasezoey Date: Tue, 9 Apr 2024 14:42:43 +0200 Subject: [PATCH] fix: disable default features for dep "tower" --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a421a7f..aa1d6b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ socket2 = { version = "0.5", optional = true, features = ["all"] } tracing = { version = "0.1", default-features = false, features = ["std"], optional = true } tokio = { version = "1", optional = true, features = ["net", "rt", "time"] } tower-service ={ version = "0.3", optional = true } -tower = { version = "0.4.1", optional = true, features = ["make", "util"] } +tower = { version = "0.4.1", optional = true, default-features = false, features = ["make", "util"] } [dev-dependencies] hyper = { version = "1.2.0", features = ["full"] }