Skip to content

Commit 185cb4a

Browse files
deps: bump tokio from 1.28.2 to 1.29.1
Pull-Request: #4148.
1 parent 29c0fef commit 185cb4a

File tree

13 files changed

+64
-18
lines changed

13 files changed

+64
-18
lines changed

Cargo.lock

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

examples/rendezvous/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ env_logger = "0.10.0"
1212
futures = "0.3.28"
1313
libp2p = { path = "../../libp2p", features = ["async-std", "identify", "macros", "noise", "ping", "rendezvous", "tcp", "tokio", "yamux"] }
1414
log = "0.4"
15-
tokio = { version = "1.28", features = [ "rt-multi-thread", "macros", "time" ] }
15+
tokio = { version = "1.29", features = [ "rt-multi-thread", "macros", "time" ] }

interop-tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ redis = { version = "0.23.0", default-features = false, features = ["tokio-comp"
2828
rust-embed = "6.8"
2929
serde_json = "1"
3030
thirtyfour = "=0.32.0-rc.8" # https://github.com/stevepryde/thirtyfour/issues/169
31-
tokio = { version = "1.28.2", features = ["full"] }
31+
tokio = { version = "1.29.1", features = ["full"] }
3232
tower-http = { version = "0.4", features = ["cors", "fs", "trace"] }
3333
tracing = "0.1"
3434
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

protocols/mdns/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ log = "0.4.19"
2222
rand = "0.8.3"
2323
smallvec = "1.6.1"
2424
socket2 = { version = "0.5.3", features = ["all"] }
25-
tokio = { version = "1.28", default-features = false, features = ["net", "time"], optional = true}
25+
tokio = { version = "1.29", default-features = false, features = ["net", "time"], optional = true}
2626
trust-dns-proto = { version = "0.22.0", default-features = false, features = ["mdns", "tokio-runtime"] }
2727
void = "1.0.2"
2828

@@ -37,7 +37,7 @@ libp2p-noise = { workspace = true }
3737
libp2p-swarm = { workspace = true, features = ["tokio", "async-std"] }
3838
libp2p-tcp = { workspace = true, features = ["tokio", "async-io"] }
3939
libp2p-yamux = { workspace = true }
40-
tokio = { version = "1.28", default-features = false, features = ["macros", "rt", "rt-multi-thread", "time"] }
40+
tokio = { version = "1.29", default-features = false, features = ["macros", "rt", "rt-multi-thread", "time"] }
4141
libp2p-swarm-test = { path = "../../swarm-test" }
4242

4343
[[test]]

protocols/perf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ log = "0.4"
3030
serde = { version = "1.0", features = ["derive"] }
3131
serde_json = "1.0"
3232
thiserror = "1.0"
33-
tokio = { version = "1.28.2", features = ["full"] }
33+
tokio = { version = "1.29.1", features = ["full"] }
3434
void = "1"
3535

3636
[dev-dependencies]

protocols/rendezvous/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ libp2p-identify = { workspace = true }
3737
libp2p-yamux = { workspace = true }
3838
libp2p-tcp = { workspace = true, features = ["tokio"] }
3939
rand = "0.8"
40-
tokio = { version = "1.28", features = [ "rt-multi-thread", "time", "macros", "sync", "process", "fs", "net" ] }
40+
tokio = { version = "1.29", features = [ "rt-multi-thread", "time", "macros", "sync", "process", "fs", "net" ] }
4141
libp2p-swarm-test = { path = "../../swarm-test" }
4242

4343
# Passing arguments to the docsrs builder in order to properly document cfg's.

swarm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ multistream-select = { workspace = true }
3030

3131
[target.'cfg(not(any(target_os = "emscripten", target_os = "wasi", target_os = "unknown")))'.dependencies]
3232
async-std = { version = "1.6.2", optional = true }
33-
tokio = { version = "1.28", features = ["rt"], optional = true }
33+
tokio = { version = "1.29", features = ["rt"], optional = true }
3434

3535
[features]
3636
macros = ["dep:libp2p-swarm-derive"]

transports/pnet/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ libp2p-tcp = { workspace = true, features = ["tokio"] }
2727
libp2p-websocket = { workspace = true }
2828
libp2p-yamux = { workspace = true }
2929
quickcheck = { workspace = true }
30-
tokio = { version = "1.28.2", features = ["full"] }
30+
tokio = { version = "1.29.1", features = ["full"] }
3131

3232
# Passing arguments to the docsrs builder in order to properly document cfg's.
3333
# More information: https://docs.rs/about/builds#cross-compiling

transports/quic/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ quinn-proto = { version = "0.10.1", default-features = false, features = ["tls-r
2323
rand = "0.8.5"
2424
rustls = { version = "0.21.2", default-features = false }
2525
thiserror = "1.0.40"
26-
tokio = { version = "1.28.2", default-features = false, features = ["net", "rt", "time"], optional = true }
26+
tokio = { version = "1.29.1", default-features = false, features = ["net", "rt", "time"], optional = true }
2727

2828
[features]
2929
tokio = ["dep:tokio", "if-watch/tokio"]
@@ -44,7 +44,7 @@ libp2p-noise = { workspace = true }
4444
libp2p-tcp = { workspace = true, features = ["async-io"] }
4545
libp2p-yamux = { workspace = true }
4646
quickcheck = "1"
47-
tokio = { version = "1.28.2", features = ["macros", "rt-multi-thread", "time"] }
47+
tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread", "time"] }
4848

4949
[[test]]
5050
name = "stream_compliance"

transports/tcp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ libp2p-core = { workspace = true }
2020
libp2p-identity = { workspace = true }
2121
log = "0.4.19"
2222
socket2 = { version = "0.5.3", features = ["all"] }
23-
tokio = { version = "1.28.2", default-features = false, features = ["net"], optional = true }
23+
tokio = { version = "1.29.1", default-features = false, features = ["net"], optional = true }
2424

2525
[features]
2626
tokio = ["dep:tokio", "if-watch/tokio"]
2727
async-io = ["dep:async-io", "if-watch/smol"]
2828

2929
[dev-dependencies]
3030
async-std = { version = "1.6.5", features = ["attributes"] }
31-
tokio = { version = "1.28.2", default-features = false, features = ["full"] }
31+
tokio = { version = "1.29.1", default-features = false, features = ["full"] }
3232
env_logger = "0.10.0"
3333

3434
# Passing arguments to the docsrs builder in order to properly document cfg's.

0 commit comments

Comments
 (0)