Skip to content

Commit 9754acb

Browse files
authored
fix: Use minimal tokio features (#828)
1 parent b79c0c7 commit 9754acb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tower/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ hedge = ["util", "filter", "futures-util", "hdrhistogram", "tokio/time", "tracin
4848
limit = ["tokio/time", "tokio/sync", "tokio-util", "tracing", "pin-project-lite"]
4949
load = ["tokio/time", "tracing", "pin-project-lite"]
5050
load-shed = ["pin-project-lite"]
51-
make = ["pin-project-lite", "tokio/io-std"]
51+
make = ["pin-project-lite", "tokio"]
5252
ready-cache = ["futures-core", "futures-util", "indexmap", "tokio/sync", "tracing", "pin-project-lite"]
53-
reconnect = ["make", "tokio/io-std", "tracing"]
53+
reconnect = ["make", "tracing"]
5454
retry = ["tokio/time", "util"]
5555
spawn-ready = ["futures-util", "tokio/sync", "tokio/rt", "util", "tracing"]
5656
steer = []
@@ -67,7 +67,7 @@ futures-util = { workspace = true, features = ["alloc"], optional = true }
6767
hdrhistogram = { workspace = true, optional = true }
6868
indexmap = { workspace = true, optional = true }
6969
slab = { workspace = true, optional = true }
70-
tokio = { workspace = true, features = ["sync"], optional = true }
70+
tokio = { workspace = true, optional = true }
7171
tokio-util = { workspace = true, optional = true }
7272
tracing = { workspace = true, features = ["std"], optional = true }
7373
pin-project-lite = { workspace = true, optional = true }

0 commit comments

Comments
 (0)