Skip to content

Commit 0f93d76

Browse files
build(deps): bump tokio in the minor-and-patch-cargo-updates group (#3675)
Bumps the minor-and-patch-cargo-updates group with 1 update: [tokio](https://github.com/tokio-rs/tokio). Updates `tokio` from 1.50.0 to 1.51.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.50.0...tokio-1.51.0) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.51.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch-cargo-updates ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5e4c029 commit 0f93d76

26 files changed

Lines changed: 48 additions & 48 deletions

File tree

Cargo.lock

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

blockchain/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ prometheus-client = { version = "0.24.1", optional = true }
2828
rand = "0.9"
2929
serde = "1.0"
3030
thiserror = "2.0"
31-
tokio = { version = "1.50", features = ["sync"] }
31+
tokio = { version = "1.51", features = ["sync"] }
3232
tokio-stream = { version = "0.1", features = ["sync"] }
3333

3434
nimiq-account = { workspace = true, features = ["accounts"] }

client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ workspace = true
2323
[dependencies]
2424
futures = { workspace = true }
2525
log = { workspace = true }
26-
tokio = { version = "1.50", features = ["macros", "rt-multi-thread", "time", "tracing"] }
26+
tokio = { version = "1.51", features = ["macros", "rt-multi-thread", "time", "tracing"] }
2727
tokio-metrics = "0.4"
2828

2929
nimiq-time = { workspace = true }

consensus/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pin-project = "1.1"
3030
rand = "0.9"
3131
serde = "1.0"
3232
thiserror = "2.0"
33-
tokio = { version = "1.50", features = ["rt", "sync", "time"] }
33+
tokio = { version = "1.51", features = ["rt", "sync", "time"] }
3434
tokio-stream = { version = "0.1", features = ["sync"] }
3535

3636
nimiq-account = { workspace = true, default-features = false }

handel/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ log = { workspace = true }
2121
instant = { version = "0.1", features = ["wasm-bindgen"] }
2222
parking_lot = "0.12"
2323
thiserror = "2.0"
24-
tokio = { version = "1.50", features = ["rt"] }
24+
tokio = { version = "1.51", features = ["rt"] }
2525

2626
nimiq-bls = { workspace = true }
2727
nimiq-collections = { workspace = true }
@@ -33,7 +33,7 @@ nimiq-utils = { workspace = true, features = ["futures"] }
3333
[dev-dependencies]
3434
rand = "0.9"
3535
serde = "1.0"
36-
tokio = { version = "1.50", features = ["rt", "time", "macros"] }
36+
tokio = { version = "1.51", features = ["rt", "time", "macros"] }
3737

3838
nimiq-network-interface = { workspace = true }
3939
nimiq-network-mock = { workspace = true }

lib/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ signal-hook = { version = "0.4", optional = true }
5656
subtle = "2.6"
5757
thiserror = "2.0"
5858
time = { version = "0.3", optional = true }
59-
tokio = { version = "1.50", features = ["rt"], optional = true }
59+
tokio = { version = "1.51", features = ["rt"], optional = true }
6060
toml = "1.1"
6161
tracing-loki = { version = "0.2.6", optional = true }
6262
tracing-subscriber = { version = "0.3", optional = true, features = [
@@ -102,7 +102,7 @@ nimiq-zkp-component = { workspace = true }
102102
nimiq-zkp-primitives = { workspace = true }
103103

104104
[dev-dependencies]
105-
tokio = { version = "1.50", features = ["macros"] }
105+
tokio = { version = "1.51", features = ["macros"] }
106106
nimiq-test-log = { workspace = true }
107107

108108
[features]

light-blockchain/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ futures = { workspace = true }
1818
log = { workspace = true }
1919
parking_lot = "0.12"
2020
thiserror = "2.0"
21-
tokio = { version = "1.50", features = ["sync"] }
21+
tokio = { version = "1.51", features = ["sync"] }
2222
tokio-stream = { version = "0.1", features = ["sync"] }
2323

2424
nimiq-block = { workspace = true }

mempool/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ parking_lot = "0.12"
2828
prometheus-client = { version = "0.24.1", optional = true }
2929
serde = "1.0"
3030
thiserror = "2.0"
31-
tokio = { version = "1.50", features = ["rt", "rt-multi-thread", "sync", "tracing"] }
31+
tokio = { version = "1.51", features = ["rt", "rt-multi-thread", "sync", "tracing"] }
3232
tokio-metrics = "0.4"
3333
tokio-stream = { version = "0.1", features = ["sync"] }
3434

metrics-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ hyper-util = { version = "0.1", features = ["server-auto", "tokio"] }
2828
log = { workspace = true }
2929
parking_lot = "0.12"
3030
prometheus-client = "0.24.1"
31-
tokio = { version = "1.50", features = [
31+
tokio = { version = "1.51", features = [
3232
"macros",
3333
"net",
3434
"rt-multi-thread",

network-interface/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ log = { workspace = true }
2727
multiaddr = "0.18"
2828
serde = "1.0"
2929
thiserror = "2.0"
30-
tokio = { version = "1.50", features = ["rt"] }
30+
tokio = { version = "1.51", features = ["rt"] }
3131
tokio-stream = { version = "0.1", features = ["default", "sync"] }
3232

3333
nimiq-serde = { workspace = true }

0 commit comments

Comments
 (0)