Skip to content

Commit

Permalink
chore: remove default-features on futures
Browse files Browse the repository at this point in the history
remove default-features on futures subcrate imports to avoid warnings

Pull-Request: #5381.
  • Loading branch information
jxs authored May 13, 2024
1 parent 64a4cf4 commit 5f04bad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion protocols/rendezvous/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories = ["network-programming", "asynchronous"]
asynchronous-codec = { workspace = true }
async-trait = "0.1"
bimap = "0.6.3"
futures = { workspace = true, default-features = false, features = ["std"] }
futures = { workspace = true, features = ["std"] }
futures-timer = "3.0.3"
instant = "0.1.12"
libp2p-core = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion transports/tls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT"
exclude = ["src/test_assets"]

[dependencies]
futures = { workspace = true, default-features = false }
futures = { workspace = true }
futures-rustls = "0.24.0"
libp2p-core = { workspace = true }
libp2p-identity = { workspace = true }
Expand Down

0 comments on commit 5f04bad

Please sign in to comment.