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 39 updates #469

Closed
wants to merge 1 commit into from
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
738 changes: 526 additions & 212 deletions Cargo.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions tower-batch-control/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,25 @@ categories = ["algorithms", "asynchronous"]
[dependencies]
futures = "0.3.30"
futures-core = "0.3.28"
pin-project = "1.1.4"
rayon = "1.8.1"
tokio = { version = "1.36.0", features = ["time", "sync", "tracing", "macros"] }
tokio-util = "0.7.10"
pin-project = "1.1.5"
rayon = "1.10.0"
tokio = { version = "1.37.0", features = ["time", "sync", "tracing", "macros"] }
tokio-util = "0.7.11"
tower = { version = "0.4.13", features = ["util", "buffer"] }
tracing = "0.1.39"
tracing-futures = "0.2.5"

[dev-dependencies]
color-eyre = "0.6.2"
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.6.0", features = ["rustc_1_55"] }

ed25519-zebra = "4.0.3"
rand = "0.8.5"

tokio = { version = "1.36.0", features = ["full", "tracing", "test-util"] }
tokio-test = "0.4.3"
tokio = { version = "1.37.0", features = ["full", "tracing", "test-util"] }
tokio-test = "0.4.4"
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.11" }
tower-test = "0.4.0"

Expand Down
4 changes: 2 additions & 2 deletions tower-fallback/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ keywords = ["tower", "batch"]
categories = ["algorithms", "asynchronous"]

[dependencies]
pin-project = "1.1.4"
pin-project = "1.1.5"
tower = "0.4.13"
futures-core = "0.3.28"
tracing = "0.1.39"

[dev-dependencies]
tokio = { version = "1.36.0", features = ["full", "tracing", "test-util"] }
tokio = { version = "1.37.0", features = ["full", "tracing", "test-util"] }

zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.35" }
38 changes: 19 additions & 19 deletions zebra-chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ bench = ["zebra-test"]

# Cryptography
bitvec = "1.0.1"
bitflags = "2.4.2"
bitflags = "2.5.0"
bitflags-serde-legacy = "0.1.1"
blake2b_simd = "1.0.2"
blake2s_simd = "1.0.2"
bridgetree = "0.4.0"
bs58 = { version = "0.5.0", features = ["check"] }
bs58 = { version = "0.5.1", features = ["check"] }
byteorder = "1.5.0"

# TODO: Internal miner feature functionality was removed at https://github.com/ZcashFoundation/zebra/issues/8180
Expand All @@ -79,64 +79,64 @@ byteorder = "1.5.0"
equihash = "0.2.0"

group = "0.13.0"
incrementalmerkletree = "0.5.0"
incrementalmerkletree = "0.5.1"
jubjub = "0.10.0"
lazy_static = "1.4.0"
num-integer = "0.1.46"
primitive-types = "0.11.1"
primitive-types = "0.12.2"
rand_core = "0.6.4"
ripemd = "0.1.3"
# Matches version used by hdwallet
secp256k1 = { version = "0.26.0", features = ["serde"] }
secp256k1 = { version = "0.29.0", features = ["serde"] }
sha2 = { version = "0.10.7", features = ["compress"] }
uint = "0.9.5"
x25519-dalek = { version = "2.0.1", features = ["serde"] }

# ECC deps
halo2 = { package = "halo2_proofs", version = "0.3.0" }
orchard = "0.6.0"
orchard = "0.8.0"
zcash_encoding = "0.2.0"
zcash_history = "0.3.0"
zcash_history = "0.4.0"
zcash_note_encryption = "0.4.0"
zcash_primitives = { version = "0.13.0-rc.1", features = ["transparent-inputs"] }
zcash_primitives = { version = "0.15.0", features = ["transparent-inputs"] }

# Time
chrono = { version = "0.4.34", default-features = false, features = ["clock", "std", "serde"] }
chrono = { version = "0.4.38", default-features = false, features = ["clock", "std", "serde"] }
humantime = "2.1.0"

# Error Handling & Formatting
displaydoc = "0.2.4"
static_assertions = "1.1.0"
thiserror = "1.0.57"
thiserror = "1.0.59"
tracing = "0.1.39"

# Serialization
hex = { version = "0.4.3", features = ["serde"] }
serde = { version = "1.0.196", features = ["serde_derive", "rc"] }
serde_with = "3.6.1"
serde = { version = "1.0.200", features = ["serde_derive", "rc"] }
serde_with = "3.8.1"
serde-big-array = "0.5.1"

# Processing
futures = "0.3.30"
itertools = "0.12.1"
rayon = "1.8.1"
rayon = "1.10.0"

# ZF deps
ed25519-zebra = "4.0.3"
redjubjub = "0.7.0"
reddsa = "0.5.1"

# Production feature json-conversion
serde_json = { version = "1.0.113", optional = true }
serde_json = { version = "1.0.116", optional = true }

# Production feature async-error and testing feature proptest-impl
tokio = { version = "1.36.0", optional = true }
tokio = { version = "1.37.0", optional = true }

# Production feature getblocktemplate-rpcs
zcash_address = { version = "0.3.1", optional = true }
zcash_address = { version = "0.3.2", optional = true }

# Experimental feature shielded-scan
zcash_client_backend = { version = "0.10.0-rc.1", optional = true }
zcash_client_backend = { version = "0.12.1", optional = true }

# Optional testing dependencies
proptest = { version = "1.4.0", optional = true }
Expand All @@ -152,7 +152,7 @@ zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.35", optional = tr
criterion = { version = "0.5.1", features = ["html_reports"] }

# Error Handling & Formatting
color-eyre = "0.6.2"
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.6.0", features = ["rustc_1_55"] }
Expand All @@ -166,7 +166,7 @@ proptest-derive = "0.4.0"
rand = "0.8.5"
rand_chacha = "0.3.1"

tokio = { version = "1.36.0", features = ["full", "tracing", "test-util"] }
tokio = { version = "1.37.0", features = ["full", "tracing", "test-util"] }

zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.35" }

Expand Down
20 changes: 10 additions & 10 deletions zebra-consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,26 +41,26 @@ bls12_381 = "0.8.0"
halo2 = { package = "halo2_proofs", version = "0.3.0" }
jubjub = "0.10.0"
rand = "0.8.5"
rayon = "1.8.1"
rayon = "1.10.0"

chrono = { version = "0.4.34", default-features = false, features = ["clock", "std"] }
chrono = { version = "0.4.38", default-features = false, features = ["clock", "std"] }
displaydoc = "0.2.4"
lazy_static = "1.4.0"
once_cell = "1.18.0"
serde = { version = "1.0.196", features = ["serde_derive"] }
serde = { version = "1.0.200", features = ["serde_derive"] }

futures = "0.3.30"
futures-util = "0.3.28"
metrics = "0.22.1"
thiserror = "1.0.57"
tokio = { version = "1.36.0", features = ["time", "sync", "tracing", "rt-multi-thread"] }
metrics = "0.22.3"
thiserror = "1.0.59"
tokio = { version = "1.37.0", features = ["time", "sync", "tracing", "rt-multi-thread"] }
tower = { version = "0.4.13", features = ["timeout", "util", "buffer"] }
tracing = "0.1.39"
tracing-futures = "0.2.5"

orchard = "0.6.0"
orchard = "0.8.0"

zcash_proofs = { version = "0.13.0-rc.1", features = ["multicore" ] }
zcash_proofs = { version = "0.14.0", features = ["multicore" ] }
wagyu-zcash-parameters = "0.2.0"

tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.11" }
Expand All @@ -79,7 +79,7 @@ proptest = { version = "1.4.0", optional = true }
proptest-derive = { version = "0.4.0", optional = true }

[dev-dependencies]
color-eyre = "0.6.2"
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.6.0", features = ["rustc_1_55"] }
Expand All @@ -90,7 +90,7 @@ proptest = "1.4.0"
proptest-derive = "0.4.0"
spandoc = "0.2.2"

tokio = { version = "1.36.0", features = ["full", "tracing", "test-util"] }
tokio = { version = "1.37.0", features = ["full", "tracing", "test-util"] }
tracing-error = "0.2.0"
tracing-subscriber = "0.3.18"

Expand Down
14 changes: 7 additions & 7 deletions zebra-grpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ categories = ["cryptography::cryptocurrencies"]
futures-util = "0.3.28"
tonic = "0.11.0"
tonic-reflection = "0.11.0"
prost = "0.12.3"
serde = { version = "1.0.196", features = ["serde_derive"] }
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
tokio-stream = "0.1.14"
prost = "0.12.4"
serde = { version = "1.0.200", features = ["serde_derive"] }
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread"] }
tokio-stream = "0.1.15"
tower = { version = "0.4.13", features = ["util", "buffer"] }
color-eyre = "0.6.2"
color-eyre = "0.6.3"

zcash_primitives = { version = "0.13.0-rc.1" }
zcash_primitives = { version = "0.15.0" }

zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.35", features = ["shielded-scan"] }
zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.35" }
Expand All @@ -35,7 +35,7 @@ zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.35" }
tonic-build = "0.11.0"

[dev-dependencies]
insta = { version = "1.33.0", features = ["redactions", "json", "ron"] }
insta = { version = "1.38.0", features = ["redactions", "json", "ron"] }

zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] }
zebra-state = { path = "../zebra-state" }
Expand Down
32 changes: 16 additions & 16 deletions zebra-network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,33 +40,33 @@ progress-bar = [
proptest-impl = ["proptest", "proptest-derive", "zebra-chain/proptest-impl"]

[dependencies]
bitflags = "2.4.2"
bitflags = "2.5.0"
byteorder = "1.5.0"
bytes = "1.5.0"
chrono = { version = "0.4.34", default-features = false, features = ["clock", "std"] }
bytes = "1.6.0"
chrono = { version = "0.4.38", default-features = false, features = ["clock", "std"] }
dirs = "5.0.1"
hex = "0.4.3"
humantime-serde = "1.1.1"
indexmap = { version = "2.2.3", features = ["serde"] }
indexmap = { version = "2.2.6", features = ["serde"] }
itertools = "0.12.1"
lazy_static = "1.4.0"
num-integer = "0.1.46"
ordered-map = "0.4.2"
pin-project = "1.1.4"
pin-project = "1.1.5"
rand = "0.8.5"
rayon = "1.8.1"
regex = "1.10.3"
serde = { version = "1.0.196", features = ["serde_derive"] }
tempfile = "3.10.0"
thiserror = "1.0.57"
rayon = "1.10.0"
regex = "1.10.4"
serde = { version = "1.0.200", features = ["serde_derive"] }
tempfile = "3.10.1"
thiserror = "1.0.59"

futures = "0.3.30"
tokio = { version = "1.36.0", features = ["fs", "io-util", "net", "time", "tracing", "macros", "rt-multi-thread"] }
tokio-stream = { version = "0.1.14", features = ["sync", "time"] }
tokio-util = { version = "0.7.10", features = ["codec"] }
tokio = { version = "1.37.0", features = ["fs", "io-util", "net", "time", "tracing", "macros", "rt-multi-thread"] }
tokio-stream = { version = "0.1.15", features = ["sync", "time"] }
tokio-util = { version = "0.7.11", features = ["codec"] }
tower = { version = "0.4.13", features = ["retry", "discover", "load", "load-shed", "timeout", "util", "buffer"] }

metrics = "0.22.1"
metrics = "0.22.3"
tracing-futures = "0.2.5"
tracing-error = { version = "0.2.0", features = ["traced-error"] }
tracing = "0.1.39"
Expand All @@ -90,8 +90,8 @@ proptest = "1.4.0"
proptest-derive = "0.4.0"

static_assertions = "1.1.0"
tokio = { version = "1.36.0", features = ["full", "tracing", "test-util"] }
toml = "0.8.10"
tokio = { version = "1.37.0", features = ["full", "tracing", "test-util"] }
toml = "0.8.12"

zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] }
zebra-test = { path = "../zebra-test/" }
18 changes: 9 additions & 9 deletions zebra-node-services/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,18 @@ zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.35" }
# Optional dependencies

# Tool and test feature rpc-client
color-eyre = { version = "0.6.2", optional = true }
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.11.24", default-features = false, features = ["rustls-tls"], optional = true }
serde = { version = "1.0.196", optional = true }
serde_json = { version = "1.0.113", optional = true }
tokio = { version = "1.36.0", features = ["time"], optional = true }
reqwest = { version = "0.11.27", default-features = false, features = ["rustls-tls"], optional = true }
serde = { version = "1.0.200", optional = true }
serde_json = { version = "1.0.116", optional = true }
tokio = { version = "1.37.0", features = ["time"], optional = true }

[dev-dependencies]

color-eyre = "0.6.2"
color-eyre = "0.6.3"
jsonrpc-core = "18.0.0"
reqwest = { version = "0.11.24", default-features = false, features = ["rustls-tls"] }
serde = "1.0.196"
serde_json = "1.0.113"
reqwest = { version = "0.11.27", default-features = false, features = ["rustls-tls"] }
serde = "1.0.200"
serde_json = "1.0.116"
20 changes: 10 additions & 10 deletions zebra-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,32 +42,32 @@ proptest-impl = [
]

[dependencies]
chrono = { version = "0.4.34", default-features = false, features = ["clock", "std"] }
chrono = { version = "0.4.38", default-features = false, features = ["clock", "std"] }
futures = "0.3.30"

# lightwalletd sends JSON-RPC requests over HTTP 1.1
hyper = { version = "0.14.28", features = ["http1", "server"] }
hyper = { version = "1.3.1", features = ["http1", "server"] }

jsonrpc-core = "18.0.0"
jsonrpc-derive = "18.0.0"
jsonrpc-http-server = "18.0.0"

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

tokio = { version = "1.36.0", features = ["time", "rt-multi-thread", "macros", "tracing"] }
tokio = { version = "1.37.0", features = ["time", "rt-multi-thread", "macros", "tracing"] }
tower = "0.4.13"

tracing = "0.1.39"

hex = { version = "0.4.3", features = ["serde"] }
serde = { version = "1.0.196", features = ["serde_derive"] }
serde = { version = "1.0.200", features = ["serde_derive"] }

# Experimental feature getblocktemplate-rpcs
rand = { version = "0.8.5", optional = true }
# ECC deps used by getblocktemplate-rpcs feature
zcash_address = { version = "0.3.1", optional = true }
zcash_address = { version = "0.3.2", optional = true }

# Test-only feature proptest-impl
proptest = { version = "1.4.0", optional = true }
Expand All @@ -80,12 +80,12 @@ zebra-script = { path = "../zebra-script", version = "1.0.0-beta.35" }
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.35" }

[dev-dependencies]
insta = { version = "1.33.0", features = ["redactions", "json", "ron"] }
insta = { version = "1.38.0", features = ["redactions", "json", "ron"] }

proptest = "1.4.0"

thiserror = "1.0.57"
tokio = { version = "1.36.0", features = ["full", "tracing", "test-util"] }
thiserror = "1.0.59"
tokio = { version = "1.37.0", features = ["full", "tracing", "test-util"] }

zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.35", features = ["proptest-impl"] }
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.35", features = ["proptest-impl"] }
Expand Down
Loading
Loading