Skip to content

Commit b4f9634

Browse files
authoredApr 13, 2022
fix: don't enable default features in tower (#972)
1 parent 03fb09c commit b4f9634

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎tonic/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ hyper = {version = "0.14.14", features = ["full"], optional = true}
7979
hyper-timeout = {version = "0.4", optional = true}
8080
tokio = {version = "1.0.1", features = ["net"], optional = true}
8181
tokio-stream = "0.1"
82-
tower = {version = "0.4.7", features = ["balance", "buffer", "discover", "limit", "load", "make", "timeout", "util"], optional = true}
82+
tower = {version = "0.4.7", default-features = false, features = ["balance", "buffer", "discover", "limit", "load", "make", "timeout", "util"], optional = true}
8383
tracing-futures = {version = "0.2", optional = true}
8484
axum = {version = "0.5", default_features = false, optional = true}
8585

0 commit comments

Comments
 (0)
Please sign in to comment.