Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the minor-and-patch-cargo-updates group across 1 directory with 14 updates #3175

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
327 changes: 177 additions & 150 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion blockchain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ prometheus-client = { version = "0.22.3", optional = true }
rand = "0.8"
serde = "1.0"
thiserror = "2.0"
tokio = { version = "1.41", features = ["sync"] }
tokio = { version = "1.42", features = ["sync"] }
tokio-stream = { version = "0.1", features = ["sync"] }

nimiq-account = { workspace = true, features = ["accounts"] }
Expand Down
4 changes: 2 additions & 2 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ workspace = true
[dependencies]
futures = { workspace = true }
log = { workspace = true }
tokio = { version = "1.41", features = ["macros", "rt-multi-thread", "time", "tracing"] }
tokio-metrics = "0.3"
tokio = { version = "1.42", features = ["macros", "rt-multi-thread", "time", "tracing"] }
tokio-metrics = "0.4"

nimiq-utils = { workspace = true, features = ["spawn"] }

Expand Down
2 changes: 1 addition & 1 deletion consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pin-project = "1.1"
rand = "0.8"
serde = "1.0"
thiserror = "2.0"
tokio = { version = "1.41", features = ["rt", "sync", "time"] }
tokio = { version = "1.42", features = ["rt", "sync", "time"] }
tokio-stream = { version = "0.1", features = ["sync"] }

nimiq-account = { workspace = true, default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions handel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ log = { workspace = true }
instant = { version = "0.1", features = ["wasm-bindgen"] }
parking_lot = "0.12"
thiserror = "2.0"
tokio = { version = "1.41", features = ["rt"] }
tokio = { version = "1.42", features = ["rt"] }

nimiq-bls = { workspace = true }
nimiq-collections = { workspace = true }
Expand All @@ -33,7 +33,7 @@ nimiq-utils = { workspace = true, features = ["futures"] }
[dev-dependencies]
rand = "0.8"
serde = "1.0"
tokio = { version = "1.41", features = ["rt", "time", "macros"] }
tokio = { version = "1.42", features = ["rt", "time", "macros"] }

nimiq-network-interface = { workspace = true }
nimiq-network-mock = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ signal-hook = { version = "0.3", optional = true }
subtle = "2.6"
thiserror = "2.0"
time = { version = "0.3", optional = true }
tokio = { version = "1.41", features = ["rt"], optional = true }
tokio = { version = "1.42", features = ["rt"], optional = true }
toml = "0.8"
tracing-loki = { version = "0.2.5", optional = true }
tracing-subscriber = { version = "0.3", optional = true, features = [
Expand Down Expand Up @@ -92,7 +92,7 @@ nimiq-zkp-component = { workspace = true }
nimiq-zkp-primitives = { workspace = true }

[dev-dependencies]
tokio = { version = "1.41", features = ["macros"] }
tokio = { version = "1.42", features = ["macros"] }
nimiq-test-log = { workspace = true }

[features]
Expand Down
2 changes: 1 addition & 1 deletion light-blockchain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ futures = { workspace = true }
log = { workspace = true }
parking_lot = "0.12"
thiserror = "2.0"
tokio = { version = "1.41", features = ["sync"] }
tokio = { version = "1.42", features = ["sync"] }
tokio-stream = { version = "0.1", features = ["sync"] }

nimiq-block = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions mempool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ parking_lot = "0.12"
prometheus-client = { version = "0.22.3", optional = true }
serde = "1.0"
thiserror = "2.0"
tokio = { version = "1.41", features = ["rt", "rt-multi-thread", "sync", "tracing"] }
tokio-metrics = "0.3"
tokio = { version = "1.42", features = ["rt", "rt-multi-thread", "sync", "tracing"] }
tokio-metrics = "0.4"
tokio-stream = { version = "0.1", features = ["sync"] }

nimiq-account = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion mempool/mempool-task/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ workspace = true
futures = { workspace = true }
log = { workspace = true }
parking_lot = "0.12"
tokio-metrics = { version = "0.3", optional = true }
tokio-metrics = { version = "0.4", optional = true }
tokio-stream = { version = "0.1", features = ["sync"] }

nimiq-blockchain = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions metrics-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ maintenance = { status = "experimental" }
workspace = true

[dependencies]
bytes = "1.8"
bytes = "1.9"
futures = "0.3"
http-body-util = { version = "0.1" }
hyper = { version = "1.5" }
hyper-util = { version = "0.1", features = ["server-auto", "tokio"] }
log = { workspace = true }
parking_lot = "0.12"
prometheus-client = "0.22.3"
tokio = { version = "1.41", features = [
tokio = { version = "1.42", features = [
"macros",
"net",
"rt-multi-thread",
"tracing",
] }
tokio-metrics = "0.3"
tokio-metrics = "0.4"

nimiq-blockchain = { workspace = true, features = ["metrics"] }
nimiq-blockchain-interface = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion network-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ log = { workspace = true }
multiaddr = "0.18"
serde = "1.0"
thiserror = "2.0"
tokio = { version = "1.41", features = ["rt"] }
tokio = { version = "1.42", features = ["rt"] }
tokio-stream = { version = "0.1", features = ["default", "sync"] }

nimiq-serde = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions network-libp2p/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ workspace = true
[dependencies]
async-trait = "0.1"
base64 = "0.22"
bytes = "1.8"
bytes = "1.9"
futures = { workspace = true }
futures-timer = "3.0"
hex = "0.4"
Expand All @@ -37,7 +37,7 @@ rand = "0.8"
serde = "1.0"
sha2 = "0.10"
thiserror = "2.0"
tokio = { version = "1.41", features = ["macros", "rt", "tracing"] }
tokio = { version = "1.42", features = ["macros", "rt", "tracing"] }
tokio-stream = "0.1"
unsigned-varint = "0.8"
void = "1.0"
Expand Down Expand Up @@ -86,7 +86,7 @@ libp2p = { version = "0.54", default-features = false, features = [

[dev-dependencies]
# In dev/testing we require more tokio features
tokio = { version = "1.41", features = ["macros", "rt", "rt-multi-thread", "test-util", "time", "tracing"] }
tokio = { version = "1.42", features = ["macros", "rt", "rt-multi-thread", "test-util", "time", "tracing"] }

nimiq-test-log = { workspace = true }
nimiq-test-utils = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion network-mock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ log = { workspace = true }
parking_lot = "0.12"
serde = "1.0"
thiserror = "2.0"
tokio = { version = "1.41", features = [
tokio = { version = "1.42", features = [
"rt",
"sync",
] }
Expand Down
2 changes: 1 addition & 1 deletion pow-migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ serde = "1.0"
serde_derive = "1.0"
thiserror = "2.0"
time = "0.3"
tokio = { version = "1.41", features = [
tokio = { version = "1.42", features = [
"macros",
"rt-multi-thread",
"tracing",
Expand Down
2 changes: 1 addition & 1 deletion rpc-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
dotenvy = "0.15"
futures = { workspace = true }
tokio = { version = "1.41", features = [
tokio = { version = "1.42", features = [
"macros",
"rt-multi-thread",
"tracing",
Expand Down
2 changes: 1 addition & 1 deletion rpc-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ parking_lot = "0.12"
serde = "1.0"
serde_json = "1.0"
thiserror = "2.0"
tokio = "1.41"
tokio = "1.42"
tokio-stream = "0.1"

nimiq-account = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions spammer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ futures = { workspace = true }
log = { workspace = true }
rand = "0.8.5"
serde = "1.0"
tokio = { version = "1.41", features = ["rt-multi-thread", "time", "tracing"] }
tokio-metrics = { version = "0.3" }
tokio = { version = "1.42", features = ["rt-multi-thread", "time", "tracing"] }
tokio-metrics = { version = "0.4" }
toml = "0.8"

nimiq-block = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions tendermint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ futures = { workspace = true }
log = { workspace = true }
rand = "0.8"
serde = "1.0"
tokio = { version = "1.41", features = [
tokio = { version = "1.42", features = [
"macros",
"rt-multi-thread",
"tracing",
Expand All @@ -31,7 +31,7 @@ nimiq-time = { workspace = true }

[dev-dependencies]
nimiq-test-log = { workspace = true }
tokio = { version = "1.41", features = [
tokio = { version = "1.42", features = [
"macros",
"rt-multi-thread",
"tracing",
Expand Down
2 changes: 1 addition & 1 deletion test-log/proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ quote = "1.0"
syn = { version = "2.0", features = ["full"] }

[dev-dependencies]
tokio = { version = "1.41", features = ["macros", "rt"] }
tokio = { version = "1.42", features = ["macros", "rt"] }

nimiq-test-log = { workspace = true }
2 changes: 1 addition & 1 deletion test-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ rand = "0.8"
rand_chacha = "0.3.1"
serde = "1.0"
tempfile = "3.14"
tokio = { version = "1.41", features = ["rt", "time", "tracing"] }
tokio = { version = "1.42", features = ["rt", "time", "tracing"] }
tokio-stream = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

Expand Down
2 changes: 1 addition & 1 deletion time/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ futures = "0.3"
gloo-timers = { version = "0.3", features = ["futures"] }
instant = { version = "0.1", features = ["wasm-bindgen"] }
send_wrapper = { version = "0.6", features = ["futures"] }
tokio = { version = "1.41", features = ["time"] }
tokio = { version = "1.42", features = ["time"] }
tokio-stream = { version = "0.1", features = ["time"] }
2 changes: 1 addition & 1 deletion utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ nimiq-hash = { workspace = true, optional = true }
nimiq-serde = { workspace = true }

[target.'cfg(not(target_family = "wasm"))'.dependencies]
tokio = { version = "1.41.1", optional = true }
tokio = { version = "1.42.0", optional = true }
[target.'cfg(target_family = "wasm")'.dependencies]
wasm-bindgen-futures = { version = "0.4", optional = true }

Expand Down
6 changes: 3 additions & 3 deletions validator-network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ parking_lot = "0.12"
serde = "1.0"
thiserror = "2.0"
time = { version = "0.3" }
tokio = { version = "1.41", features = ["rt"] }
tokio = { version = "1.42", features = ["rt"] }

nimiq-keys = { workspace = true, features = ["serde-derive"] }
nimiq-network-interface = { workspace = true }
nimiq-primitives = { workspace = true, features = ["slots"] }
nimiq-serde = { workspace = true }
nimiq-utils = { workspace = true, features = ["futures", "spawn", "tagged-signing"] }
url = "2.5.3"
url = "2.5.4"

[dev-dependencies]
tokio = { version = "1.41", features = ["macros"] }
tokio = { version = "1.42", features = ["macros"] }
6 changes: 3 additions & 3 deletions validator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ parking_lot = "0.12"
rand = "0.8"
rayon = "1.10"
serde = "1.0"
tokio = { version = "1.41", features = ["rt", "time", "tracing"] }
tokio-metrics = "0.3"
tokio = { version = "1.42", features = ["rt", "time", "tracing"] }
tokio-metrics = "0.4"
tokio-stream = { version = "0.1", features = ["sync"] }

nimiq-account = { workspace = true }
Expand Down Expand Up @@ -60,7 +60,7 @@ nimiq-vrf = { workspace = true }

[dev-dependencies]
hex = "0.4"
tokio = { version = "1.41", features = ["rt", "test-util", "time", "tracing"] }
tokio = { version = "1.42", features = ["rt", "test-util", "time", "tracing"] }
tracing-core = "0.1"
tracing-subscriber = "0.3"

Expand Down
2 changes: 1 addition & 1 deletion web-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ log = { workspace = true }
rand_core = "0.6.4"
serde = "1.0"
serde-wasm-bindgen = "0.6"
tokio = { version = "1.41", features = ["sync"] }
tokio = { version = "1.42", features = ["sync"] }
tsify = { git = "https://github.com/sisou/tsify", branch = "sisou/comments", default-features = false, features = ["js"] }
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion zkp-component/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ parking_lot = "0.12"
rand = "0.8"
serde = "1.0"
thiserror = "2.0"
tokio = { version = "1.41", features = ["macros", "rt", "sync"] }
tokio = { version = "1.42", features = ["macros", "rt", "sync"] }
tokio-stream = { version = "0.1", features = ["sync"] }
tracing-subscriber = { version = "0.3", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion zkp-component/zkp-prove/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ hex = "0.4"
log = { workspace = true }
parking_lot = "0.12"
serde = "1.0"
tokio = { version = "1.41", features = ["macros", "rt", "sync"] }
tokio = { version = "1.42", features = ["macros", "rt", "sync"] }
tracing-subscriber = { version = "0.3" }

nimiq-block = { workspace = true }
Expand Down
Loading