Skip to content

Commit 0f58c99

Browse files
deps: bump futures from 0.3.30 to 0.3.31
Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.30 to 0.3.31. - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](rust-lang/futures-rs@0.3.30...0.3.31) --- updated-dependencies: - dependency-name: futures dependency-version: 0.3.31 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 2d9be84 commit 0f58c99

File tree

52 files changed

+93
-93
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+93
-93
lines changed

Cargo.lock

Lines changed: 41 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
1313
[dependencies]
1414
either = "1.9"
1515
fnv = "1.0"
16-
futures = { version = "0.3.30", features = ["executor", "thread-pool"] }
16+
futures = { version = "0.3.31", features = ["executor", "thread-pool"] }
1717
futures-timer = "3"
1818
instant = "0.1.12"
1919
libp2p-identity = { workspace = true, features = ["peerid", "ed25519"] }

examples/autonat/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ release = false
1111
[dependencies]
1212
tokio = { version = "1.36", features = ["full"] }
1313
clap = { version = "4.4.16", features = ["derive"] }
14-
futures = "0.3.30"
14+
futures = "0.3.31"
1515
libp2p = { path = "../../libp2p", features = ["tokio", "tcp", "noise", "yamux", "autonat", "identify", "macros"] }
1616
tracing = "0.1.37"
1717
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

examples/browser-webrtc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ crate-type = ["cdylib"]
1717

1818
[dependencies]
1919
anyhow = "1.0.80"
20-
futures = "0.3.30"
20+
futures = "0.3.31"
2121
rand = "0.8"
2222
tracing = "0.1.37"
2323
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

examples/chat/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ release = false
1111
[dependencies]
1212
tokio = { version = "1.36", features = ["full"] }
1313
async-trait = "0.1"
14-
futures = "0.3.30"
14+
futures = "0.3.31"
1515
libp2p = { path = "../../libp2p", features = [ "tokio", "gossipsub", "mdns", "noise", "macros", "tcp", "yamux", "quic"] }
1616
tracing = "0.1.37"
1717
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

examples/dcutr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ release = false
1010

1111
[dependencies]
1212
clap = { version = "4.4.16", features = ["derive"] }
13-
futures = "0.3.30"
13+
futures = "0.3.31"
1414
futures-timer = "3.0"
1515
libp2p = { path = "../../libp2p", features = [ "dns", "dcutr", "identify", "macros", "noise", "ping", "quic", "relay", "rendezvous", "tcp", "tokio", "yamux"] }
1616
log = "0.4"

examples/distributed-key-value-store/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ release = false
1111
[dependencies]
1212
async-std = { version = "1.12", features = ["attributes"] }
1313
async-trait = "0.1"
14-
futures = "0.3.30"
14+
futures = "0.3.31"
1515
libp2p = { path = "../../libp2p", features = [ "async-std", "dns", "kad", "mdns", "noise", "macros", "tcp", "yamux"] }
1616
tracing = "0.1.37"
1717
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

examples/file-sharing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ serde = { version = "1.0", features = ["derive"] }
1313
async-std = { version = "1.12", features = ["attributes"] }
1414
clap = { version = "4.4.16", features = ["derive"] }
1515
either = "1.9"
16-
futures = "0.3.30"
16+
futures = "0.3.31"
1717
libp2p = { path = "../../libp2p", features = [ "async-std", "cbor", "dns", "kad", "noise", "macros", "request-response", "tcp", "websocket", "yamux"] }
1818
tracing = "0.1.37"
1919
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

examples/identify/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ release = false
1111
[dependencies]
1212
async-std = { version = "1.12", features = ["attributes"] }
1313
async-trait = "0.1"
14-
futures = "0.3.30"
14+
futures = "0.3.31"
1515
libp2p = { path = "../../libp2p", features = ["async-std", "dns", "dcutr", "identify", "macros", "noise", "ping", "relay", "rendezvous", "tcp", "tokio","yamux"] }
1616
tracing = "0.1.37"
1717
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

examples/ipfs-kad/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ tokio = { version = "1.36", features = ["rt-multi-thread", "macros"] }
1313
async-trait = "0.1"
1414
clap = { version = "4.4.16", features = ["derive"] }
1515
env_logger = "0.10"
16-
futures = "0.3.30"
16+
futures = "0.3.31"
1717
anyhow = "1.0.80"
1818
libp2p = { path = "../../libp2p", features = [ "tokio", "dns", "kad", "noise", "tcp", "yamux", "rsa"] }
1919
tracing = "0.1.37"

0 commit comments

Comments
 (0)