Skip to content

Commit

Permalink
deps: bump tokio from 1.35.0 to 1.35.1
Browse files Browse the repository at this point in the history
Pull-Request: #5034.
  • Loading branch information
dependabot[bot] committed Dec 25, 2023
1 parent 3751773 commit 0e3843c
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/ping/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ release = false
[dependencies]
futures = "0.3.29"
libp2p = { path = "../../libp2p", features = ["noise", "ping", "tcp", "tokio", "yamux"] }
tokio = { version = "1.35.0", features = ["full"] }
tokio = { version = "1.35.1", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

Expand Down
2 changes: 1 addition & 1 deletion hole-punching-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ futures = "0.3.29"
libp2p = { path = "../libp2p", features = ["tokio", "dcutr", "identify", "macros", "noise", "ping", "relay", "tcp", "yamux", "quic"] }
tracing = "0.1.37"
redis = { version = "0.23.0", default-features = false, features = ["tokio-comp"] }
tokio = { version = "1.35.0", features = ["full"] }
tokio = { version = "1.35.1", features = ["full"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
either = "1.9.0"
2 changes: 1 addition & 1 deletion interop-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ redis = { version = "0.23.3", default-features = false, features = [
rust-embed = "8.1"
serde_json = "1"
thirtyfour = "=0.32.0-rc.8" # https://github.com/stevepryde/thirtyfour/issues/169
tokio = { version = "1.35.0", features = ["full"] }
tokio = { version = "1.35.1", features = ["full"] }
tower-http = { version = "0.5", features = ["cors", "fs", "trace"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
Expand Down
2 changes: 1 addition & 1 deletion misc/futures-bounded/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ futures-util = { version = "0.3.30" }
futures-timer = "3.0.2"

[dev-dependencies]
tokio = { version = "1.35.0", features = ["macros", "rt", "sync"] }
tokio = { version = "1.35.1", features = ["macros", "rt", "sync"] }
futures = "0.3.28"

[lints]
Expand Down
2 changes: 1 addition & 1 deletion swarm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ quickcheck = { workspace = true }
void = "1"
once_cell = "1.19.0"
trybuild = "1.0.85"
tokio = { version = "1.35.0", features = ["time", "rt", "macros", "rt-multi-thread"] }
tokio = { version = "1.35.1", features = ["time", "rt", "macros", "rt-multi-thread"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

[[test]]
Expand Down
2 changes: 1 addition & 1 deletion transports/pnet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ libp2p-tcp = { workspace = true, features = ["tokio"] }
libp2p-websocket = { workspace = true }
libp2p-yamux = { workspace = true }
quickcheck = { workspace = true }
tokio = { version = "1.35.0", features = ["full"] }
tokio = { version = "1.35.1", features = ["full"] }

# Passing arguments to the docsrs builder in order to properly document cfg's.
# More information: https://docs.rs/about/builds#cross-compiling
Expand Down
4 changes: 2 additions & 2 deletions transports/quic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ quinn = { version = "0.10.2", default-features = false, features = ["tls-rustls"
rand = "0.8.5"
rustls = { version = "0.21.9", default-features = false }
thiserror = "1.0.51"
tokio = { version = "1.35.0", default-features = false, features = ["net", "rt", "time"], optional = true }
tokio = { version = "1.35.1", default-features = false, features = ["net", "rt", "time"], optional = true }
tracing = "0.1.37"
socket2 = "0.5.5"
ring = "0.16.20"
Expand All @@ -46,7 +46,7 @@ libp2p-noise = { workspace = true }
libp2p-tcp = { workspace = true, features = ["async-io"] }
libp2p-yamux = { workspace = true }
quickcheck = "1"
tokio = { version = "1.35.0", features = ["macros", "rt-multi-thread", "time"] }
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread", "time"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

[[test]]
Expand Down
4 changes: 2 additions & 2 deletions transports/tcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ libc = "0.2.151"
libp2p-core = { workspace = true }
libp2p-identity = { workspace = true }
socket2 = { version = "0.5.5", features = ["all"] }
tokio = { version = "1.35.0", default-features = false, features = ["net"], optional = true }
tokio = { version = "1.35.1", default-features = false, features = ["net"], optional = true }
tracing = "0.1.37"

[features]
Expand All @@ -29,7 +29,7 @@ async-io = ["dep:async-io", "if-watch/smol"]
[dev-dependencies]
async-std = { version = "1.6.5", features = ["attributes"] }
libp2p-identity = { workspace = true, features = ["rand"] }
tokio = { version = "1.35.0", default-features = false, features = ["full"] }
tokio = { version = "1.35.1", default-features = false, features = ["full"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

# Passing arguments to the docsrs builder in order to properly document cfg's.
Expand Down
2 changes: 1 addition & 1 deletion transports/tls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ libp2p-core = { workspace = true }
libp2p-identity = { workspace = true, features = ["ed25519", "rsa", "secp256k1", "ecdsa", "rand"] }
libp2p-swarm = { workspace = true, features = ["tokio"] }
libp2p-yamux = { workspace = true }
tokio = { version = "1.35.0", features = ["full"] }
tokio = { version = "1.35.1", features = ["full"] }

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

0 comments on commit 0e3843c

Please sign in to comment.