From b4f96343afe6106db80f41f49e576a687bfcd633 Mon Sep 17 00:00:00 2001 From: Noah Kennedy Date: Wed, 13 Apr 2022 15:30:30 -0500 Subject: [PATCH] fix: don't enable default features in tower (#972) --- tonic/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tonic/Cargo.toml b/tonic/Cargo.toml index 12880e480..65b06d311 100644 --- a/tonic/Cargo.toml +++ b/tonic/Cargo.toml @@ -79,7 +79,7 @@ hyper = {version = "0.14.14", features = ["full"], optional = true} hyper-timeout = {version = "0.4", optional = true} tokio = {version = "1.0.1", features = ["net"], optional = true} tokio-stream = "0.1" -tower = {version = "0.4.7", features = ["balance", "buffer", "discover", "limit", "load", "make", "timeout", "util"], optional = true} +tower = {version = "0.4.7", default-features = false, features = ["balance", "buffer", "discover", "limit", "load", "make", "timeout", "util"], optional = true} tracing-futures = {version = "0.2", optional = true} axum = {version = "0.5", default_features = false, optional = true}