Skip to content

Commit

Permalink
Correct the feature flag of tokio-util
Browse files Browse the repository at this point in the history
  • Loading branch information
YuanYuYuan committed Jan 10, 2024
1 parent 2ecd8b5 commit bdbac9d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion io/zenoh-links/zenoh-link-serial/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ async-trait = { workspace = true }
futures = { workspace = true }
log = { workspace = true }
tokio = { workspace = true, features = ["io-std", "macros", "net", "rt-multi-thread", "time"] }
tokio-util = { workspace = true }
tokio-util = { workspace = true, features = ["rt"] }
uuid = { workspace = true, default-features = true }
z-serial = { workspace = true }
zenoh-collections = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion io/zenoh-links/zenoh-link-udp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ description = "Internal crate for zenoh."

[dependencies]
tokio = { workspace = true, features = ["net", "io-util", "rt", "time"] }
tokio-util = { workspace = true }
tokio-util = { workspace = true, features = ["rt"] }
async-trait = { workspace = true }
log = { workspace = true }
socket2 = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion io/zenoh-links/zenoh-link-unixpipe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ zenoh-protocol = { workspace = true }
zenoh-result = { workspace = true }
zenoh-runtime = { workspace = true }
tokio = { workspace = true, features = ["sync", "fs", "io-util", "macros"] }
tokio-util = { workspace = true }
tokio-util = { workspace = true, features = ["rt"] }

[target.'cfg(unix)'.dependencies]
unix-named-pipe = "=0.2.0"
Expand Down
2 changes: 1 addition & 1 deletion io/zenoh-links/zenoh-link-unixsock_stream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ futures = { workspace = true }
log = { workspace = true }
nix = { workspace = true }
tokio = { workspace = true, features = ["io-std", "macros", "net", "rt-multi-thread", "time"] }
tokio-util = { workspace = true }
tokio-util = { workspace = true, features = ["rt"] }
uuid = { workspace = true, features = ["default"] }
zenoh-core = { workspace = true }
zenoh-link-commons = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion io/zenoh-links/zenoh-link-ws/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ async-trait = { workspace = true }
futures-util = { workspace = true, features = ["sink", "std"] }
log = { workspace = true }
tokio = { workspace = true, features = ["io-std", "macros", "net", "rt-multi-thread", "time"] }
tokio-util = { workspace = true }
tokio-util = { workspace = true, features = ["rt"] }
tokio-tungstenite = { workspace = true }
url = { workspace = true }
zenoh-core = { workspace = true }
Expand Down

0 comments on commit bdbac9d

Please sign in to comment.