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 prod group across 1 directory with 12 updates #9101

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
183 changes: 98 additions & 85 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions tower-batch-control/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ pin-project = "1.1.6"
rayon = "1.10.0"
tokio = { version = "1.42.0", features = ["time", "sync", "tracing", "macros"] }
tokio-util = "0.7.13"
tower = { version = "0.4.13", features = ["util", "buffer"] }
tower = { version = "0.5.1", features = ["util", "buffer"] }
tracing = "0.1.41"
tracing-futures = "0.2.5"

[dev-dependencies]
color-eyre = "0.6.3"
# This is a transitive dependency via color-eyre.
# Enable a feature that makes tinyvec compile much faster.
tinyvec = { version = "1.8.0", features = ["rustc_1_55"] }
tinyvec = { version = "1.8.1", features = ["rustc_1_55"] }

ed25519-zebra = "4.0.3"
rand = "0.8.5"
Expand Down
2 changes: 1 addition & 1 deletion tower-fallback/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ categories = ["algorithms", "asynchronous"]

[dependencies]
pin-project = "1.1.6"
tower = "0.4.13"
tower = "0.5.1"
futures-core = "0.3.28"
tracing = "0.1.41"

Expand Down
18 changes: 9 additions & 9 deletions zebra-chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ lazy_static = "1.4.0"
tempfile = "3.14.0"
dirs = "5.0.1"
num-integer = "0.1.46"
primitive-types = "0.12.2"
primitive-types = "0.13.1"
rand_core = "0.6.4"
ripemd = "0.1.3"
# Matches version used by hdwallet
Expand All @@ -110,12 +110,12 @@ humantime = "2.1.0"

# Error Handling & Formatting
static_assertions = "1.1.0"
thiserror = "2.0.6"
thiserror = "2.0.9"
tracing = "0.1.41"

# Serialization
hex = { version = "0.4.3", features = ["serde"] }
serde = { version = "1.0.215", features = ["serde_derive", "rc"] }
serde = { version = "1.0.216", features = ["serde_derive", "rc"] }
serde_with = "3.11.0"
serde-big-array = "0.5.1"

Expand All @@ -130,7 +130,7 @@ redjubjub = "0.7.0"
reddsa = "0.5.1"

# Production feature json-conversion
serde_json = { version = "1.0.133", optional = true }
serde_json = { version = "1.0.134", optional = true }

# Production feature async-error and testing feature proptest-impl
tokio = { version = "1.42.0", optional = true }
Expand All @@ -139,8 +139,8 @@ tokio = { version = "1.42.0", optional = true }
zcash_client_backend = { workspace = true, optional = true }

# Optional testing dependencies
proptest = { version = "1.4.0", optional = true }
proptest-derive = { version = "0.5.0", optional = true }
proptest = { version = "1.6.0", optional = true }
proptest-derive = { version = "0.5.1", optional = true }

rand = { version = "0.8.5", optional = true }
rand_chacha = { version = "0.3.1", optional = true }
Expand All @@ -155,13 +155,13 @@ criterion = { version = "0.5.1", features = ["html_reports"] }
color-eyre = "0.6.3"
# This is a transitive dependency via color-eyre.
# Enable a feature that makes tinyvec compile much faster.
tinyvec = { version = "1.8.0", features = ["rustc_1_55"] }
tinyvec = { version = "1.8.1", features = ["rustc_1_55"] }
spandoc = "0.2.2"
tracing = "0.1.41"

# Make the optional testing dependencies required
proptest = "1.4.0"
proptest-derive = "0.5.0"
proptest = "1.6.0"
proptest-derive = "0.5.1"

rand = "0.8.5"
rand_chacha = "0.3.1"
Expand Down
16 changes: 8 additions & 8 deletions zebra-consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ rayon = "1.10.0"
chrono = { version = "0.4.39", default-features = false, features = ["clock", "std"] }
lazy_static = "1.4.0"
once_cell = "1.20.2"
serde = { version = "1.0.215", features = ["serde_derive"] }
serde = { version = "1.0.216", features = ["serde_derive"] }

futures = "0.3.31"
futures-util = "0.3.28"
metrics = "0.24.1"
thiserror = "2.0.6"
thiserror = "2.0.9"
tokio = { version = "1.42.0", features = ["time", "sync", "tracing", "rt-multi-thread"] }
tower = { version = "0.4.13", features = ["timeout", "util", "buffer"] }
tower = { version = "0.5.1", features = ["timeout", "util", "buffer"] }
tracing = "0.1.41"
tracing-futures = "0.2.5"

Expand All @@ -75,19 +75,19 @@ zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.43" }
howudoin = { version = "0.1.2", optional = true }

# Test-only dependencies
proptest = { version = "1.4.0", optional = true }
proptest-derive = { version = "0.5.0", optional = true }
proptest = { version = "1.6.0", optional = true }
proptest-derive = { version = "0.5.1", optional = true }

[dev-dependencies]
color-eyre = "0.6.3"
# This is a transitive dependency via color-eyre.
# Enable a feature that makes tinyvec compile much faster.
tinyvec = { version = "1.8.0", features = ["rustc_1_55"] }
tinyvec = { version = "1.8.1", features = ["rustc_1_55"] }

hex = "0.4.3"
num-integer = "0.1.46"
proptest = "1.4.0"
proptest-derive = "0.5.0"
proptest = "1.6.0"
proptest-derive = "0.5.1"
spandoc = "0.2.2"

tokio = { version = "1.42.0", features = ["full", "tracing", "test-util"] }
Expand Down
4 changes: 2 additions & 2 deletions zebra-grpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ futures-util = "0.3.28"
tonic = "0.12.3"
tonic-reflection = "0.12.3"
prost = "0.13.4"
serde = { version = "1.0.215", features = ["serde_derive"] }
serde = { version = "1.0.216", features = ["serde_derive"] }
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
tokio-stream = "0.1.17"
tower = { version = "0.4.13", features = ["util", "buffer", "timeout"] }
tower = { version = "0.5.1", features = ["util", "buffer", "timeout"] }
color-eyre = "0.6.3"

zcash_primitives.workspace = true
Expand Down
14 changes: 7 additions & 7 deletions zebra-network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ pin-project = "1.1.6"
rand = "0.8.5"
rayon = "1.10.0"
regex = "1.11.0"
serde = { version = "1.0.215", features = ["serde_derive"] }
serde = { version = "1.0.216", features = ["serde_derive"] }
tempfile = "3.14.0"
thiserror = "2.0.6"
thiserror = "2.0.9"

futures = "0.3.31"
tokio = { version = "1.42.0", features = ["fs", "io-util", "net", "time", "tracing", "macros", "rt-multi-thread"] }
tokio-stream = { version = "0.1.17", features = ["sync", "time"] }
tokio-util = { version = "0.7.13", features = ["codec"] }
tower = { version = "0.4.13", features = ["retry", "discover", "load", "load-shed", "timeout", "util", "buffer"] }
tower = { version = "0.5.1", features = ["retry", "discover", "load", "load-shed", "timeout", "util", "buffer"] }

metrics = "0.24.1"
tracing-futures = "0.2.5"
Expand All @@ -80,14 +80,14 @@ howudoin = { version = "0.1.2", optional = true }
# tor-rtcompat = { version = "0.0.2", optional = true }

# proptest dependencies
proptest = { version = "1.4.0", optional = true }
proptest-derive = { version = "0.5.0", optional = true }
proptest = { version = "1.6.0", optional = true }
proptest-derive = { version = "0.5.1", optional = true }

zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.43", features = ["async-error"] }

[dev-dependencies]
proptest = "1.4.0"
proptest-derive = "0.5.0"
proptest = "1.6.0"
proptest-derive = "0.5.1"

static_assertions = "1.1.0"
tokio = { version = "1.42.0", features = ["full", "tracing", "test-util"] }
Expand Down
8 changes: 4 additions & 4 deletions zebra-node-services/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ color-eyre = { version = "0.6.3", optional = true }
jsonrpc-core = { version = "18.0.0", optional = true }
# Security: avoid default dependency on openssl
reqwest = { version = "0.12.9", default-features = false, features = ["rustls-tls"], optional = true }
serde = { version = "1.0.215", optional = true }
serde_json = { version = "1.0.133", optional = true }
serde = { version = "1.0.216", optional = true }
serde_json = { version = "1.0.134", optional = true }
tokio = { version = "1.42.0", features = ["time", "sync"] }

[dev-dependencies]

color-eyre = "0.6.3"
jsonrpc-core = "18.0.0"
reqwest = { version = "0.12.9", default-features = false, features = ["rustls-tls"] }
serde = "1.0.215"
serde_json = "1.0.133"
serde = "1.0.216"
serde_json = "1.0.134"
14 changes: 7 additions & 7 deletions zebra-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ futures = "0.3.31"
jsonrpsee = { version = "0.24.7", features = ["server"] }
jsonrpsee-types = "0.24.7"
jsonrpsee-proc-macros = "0.24.7"
hyper = "1.5.0"
hyper = "1.5.2"
http-body-util = "0.1.2"

# zebra-rpc needs the preserve_order feature in serde_json, which is a dependency of jsonrpc-core
serde_json = { version = "1.0.133", features = ["preserve_order"] }
serde_json = { version = "1.0.134", features = ["preserve_order"] }
indexmap = { version = "2.7.0", features = ["serde"] }

# RPC endpoint basic auth
Expand All @@ -82,7 +82,7 @@ tokio = { version = "1.42.0", features = [
"macros",
"tracing",
] }
tower = "0.4.13"
tower = "0.5.1"

# indexer-rpcs dependencies
tonic = { version = "0.12.3", optional = true }
Expand All @@ -93,7 +93,7 @@ tokio-stream = { version = "0.1.17", optional = true }
tracing = "0.1.41"

hex = { version = "0.4.3", features = ["serde"] }
serde = { version = "1.0.215", features = ["serde_derive"] }
serde = { version = "1.0.216", features = ["serde_derive"] }

# For the `stop` RPC method.
nix = { version = "0.29.0", features = ["signal"] }
Expand All @@ -104,7 +104,7 @@ zcash_primitives = { workspace = true, features = ["transparent-inputs"] }
zcash_address = { workspace = true, optional = true}

# Test-only feature proptest-impl
proptest = { version = "1.4.0", optional = true }
proptest = { version = "1.6.0", optional = true }

zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.43", features = [
"json-conversion",
Expand All @@ -123,9 +123,9 @@ tonic-build = { version = "0.12.3", optional = true }
[dev-dependencies]
insta = { version = "1.41.1", features = ["redactions", "json", "ron"] }

proptest = "1.4.0"
proptest = "1.6.0"

thiserror = "2.0.6"
thiserror = "2.0.9"
tokio = { version = "1.42.0", features = ["full", "tracing", "test-util"] }

zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.43", features = [
Expand Down
16 changes: 8 additions & 8 deletions zebra-scan/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ results-reader = [
color-eyre = "0.6.3"
indexmap = { version = "2.7.0", features = ["serde"] }
itertools = "0.13.0"
semver = "1.0.23"
serde = { version = "1.0.215", features = ["serde_derive"] }
semver = "1.0.24"
serde = { version = "1.0.216", features = ["serde_derive"] }
tokio = { version = "1.42.0", features = ["time"] }
tower = "0.4.13"
tower = "0.5.1"
tracing = "0.1.41"
futures = "0.3.31"

Expand All @@ -86,8 +86,8 @@ zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.43" }
chrono = { version = "0.4.39", default-features = false, features = ["clock", "std", "serde"] }

# test feature proptest-impl
proptest = { version = "1.4.0", optional = true }
proptest-derive = { version = "0.5.0", optional = true }
proptest = { version = "1.6.0", optional = true }
proptest-derive = { version = "0.5.1", optional = true }

bls12_381 = { version = "0.8.0", optional = true }
ff = { version = "0.13.0", optional = true }
Expand All @@ -102,7 +102,7 @@ zebra-test = { path = "../zebra-test", version = "1.0.0-beta.43", optional = tru
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
structopt = "0.3.26"
lazy_static = "1.4.0"
serde_json = "1.0.133"
serde_json = "1.0.134"

jsonrpc = { version = "0.18.0", optional = true }
hex = { version = "0.4.3", optional = true }
Expand All @@ -113,8 +113,8 @@ zebrad = { path = "../zebrad", version = "2.1.0" }
insta = { version = "1.41.1", features = ["ron", "redactions"] }
tokio = { version = "1.42.0", features = ["test-util"] }

proptest = "1.4.0"
proptest-derive = "0.5.0"
proptest = "1.6.0"
proptest-derive = "0.5.1"
bls12_381 = "0.8.0"
ff = "0.13.0"
group = "0.13.0"
Expand Down
2 changes: 1 addition & 1 deletion zebra-script/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ categories = ["api-bindings", "cryptography::cryptocurrencies"]
zcash_script = "0.2.0"
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.43" }

thiserror = "2.0.6"
thiserror = "2.0.9"

[dev-dependencies]
hex = "0.4.3"
Expand Down
22 changes: 11 additions & 11 deletions zebra-state/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,20 +62,20 @@ mset = "0.1.1"
regex = "1.11.0"
rlimit = "0.10.2"
rocksdb = { version = "0.22.0", default-features = false, features = ["lz4"] }
semver = "1.0.23"
serde = { version = "1.0.215", features = ["serde_derive"] }
semver = "1.0.24"
serde = { version = "1.0.216", features = ["serde_derive"] }
tempfile = "3.14.0"
thiserror = "2.0.6"
thiserror = "2.0.9"

rayon = "1.10.0"
tokio = { version = "1.42.0", features = ["rt-multi-thread", "sync", "tracing"] }
tower = { version = "0.4.13", features = ["buffer", "util"] }
tower = { version = "0.5.1", features = ["buffer", "util"] }
tracing = "0.1.41"

# elasticsearch specific dependencies.
# Security: avoid default dependency on openssl
elasticsearch = { version = "8.16.0-alpha.1", default-features = false, features = ["rustls-tls"], optional = true }
serde_json = { version = "1.0.133", package = "serde_json", optional = true }
elasticsearch = { version = "8.17.0-alpha.1", default-features = false, features = ["rustls-tls"], optional = true }
serde_json = { version = "1.0.134", package = "serde_json", optional = true }

zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.43", features = ["async-error"] }

Expand All @@ -84,23 +84,23 @@ howudoin = { version = "0.1.2", optional = true }

# test feature proptest-impl
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.43", optional = true }
proptest = { version = "1.4.0", optional = true }
proptest-derive = { version = "0.5.0", optional = true }
proptest = { version = "1.6.0", optional = true }
proptest-derive = { version = "0.5.1", optional = true }

[dev-dependencies]
color-eyre = "0.6.3"
# This is a transitive dependency via color-eyre.
# Enable a feature that makes tinyvec compile much faster.
tinyvec = { version = "1.8.0", features = ["rustc_1_55"] }
tinyvec = { version = "1.8.1", features = ["rustc_1_55"] }

once_cell = "1.20.2"
spandoc = "0.2.2"

hex = { version = "0.4.3", features = ["serde"] }
insta = { version = "1.41.1", features = ["ron", "redactions"] }

proptest = "1.4.0"
proptest-derive = "0.5.0"
proptest = "1.6.0"
proptest-derive = "0.5.1"
rand = "0.8.5"

halo2 = { package = "halo2_proofs", version = "0.3.0" }
Expand Down
8 changes: 4 additions & 4 deletions zebra-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,24 @@ indexmap = "2.7.0"
lazy_static = "1.4.0"
insta = "1.41.1"
itertools = "0.13.0"
proptest = "1.4.0"
proptest = "1.6.0"
once_cell = "1.20.2"
rand = "0.8.5"
regex = "1.11.0"

tokio = { version = "1.42.0", features = ["full", "tracing", "test-util"] }
tower = { version = "0.4.13", features = ["util"] }
tower = { version = "0.5.1", features = ["util"] }
futures = "0.3.31"

color-eyre = "0.6.3"
# This is a transitive dependency via color-eyre.
# Enable a feature that makes tinyvec compile much faster.
tinyvec = { version = "1.8.0", features = ["rustc_1_55"] }
tinyvec = { version = "1.8.1", features = ["rustc_1_55"] }

humantime = "2.1.0"
owo-colors = "4.1.0"
spandoc = "0.2.2"
thiserror = "2.0.6"
thiserror = "2.0.9"

tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
tracing-error = "0.2.1"
Expand Down
Loading
Loading