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 with 21 updates #334

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
498 changes: 336 additions & 162 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions tower-batch-control/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ keywords = ["tower", "batch"]
categories = ["algorithms", "asynchronous"]

[dependencies]
futures = "0.3.29"
futures = "0.3.30"
futures-core = "0.3.28"
pin-project = "1.1.3"
rayon = "1.7.0"
tokio = { version = "1.34.0", features = ["time", "sync", "tracing", "macros"] }
tokio = { version = "1.35.1", features = ["time", "sync", "tracing", "macros"] }
tokio-util = "0.7.10"
tower = { version = "0.4.13", features = ["util", "buffer"] }
tracing = "0.1.39"
Expand All @@ -41,7 +41,7 @@ tinyvec = { version = "1.6.0", features = ["rustc_1_55"] }
ed25519-zebra = "4.0.3"
rand = "0.8.5"

tokio = { version = "1.34.0", features = ["full", "tracing", "test-util"] }
tokio = { version = "1.35.1", features = ["full", "tracing", "test-util"] }
tokio-test = "0.4.3"
tower-fallback = { path = "../tower-fallback/" }
tower-test = "0.4.0"
Expand Down
2 changes: 1 addition & 1 deletion tower-fallback/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ futures-core = "0.3.28"
tracing = "0.1.39"

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

zebra-test = { path = "../zebra-test/" }
18 changes: 9 additions & 9 deletions zebra-chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ incrementalmerkletree = "0.5.0"
jubjub = "0.10.0"
lazy_static = "1.4.0"
num-integer = "0.1.45"
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.28.0", features = ["serde"] }
sha2 = { version = "0.10.7", features = ["compress"] }
uint = "0.9.5"
x25519-dalek = { version = "2.0.0-rc.3", features = ["serde"] }
Expand All @@ -91,18 +91,18 @@ humantime = "2.1.0"
# Error Handling & Formatting
displaydoc = "0.2.4"
static_assertions = "1.1.0"
thiserror = "1.0.48"
thiserror = "1.0.53"
tracing = "0.1.39"

# Serialization
hex = { version = "0.4.3", features = ["serde"] }
serde = { version = "1.0.192", features = ["serde_derive", "rc"] }
serde = { version = "1.0.193", features = ["serde_derive", "rc"] }
serde_with = "3.4.0"
serde-big-array = "0.5.1"

# Processing
futures = "0.3.29"
itertools = "0.11.0"
futures = "0.3.30"
itertools = "0.12.0"
rayon = "1.7.0"

# ZF deps
Expand All @@ -111,10 +111,10 @@ redjubjub = "0.7.0"
reddsa = "0.5.1"

# Production feature json-conversion
serde_json = { version = "1.0.108", optional = true }
serde_json = { version = "1.0.109", optional = true }

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

# Experimental feature getblocktemplate-rpcs
zcash_address = { version = "0.3.0", optional = true }
Expand Down Expand Up @@ -147,7 +147,7 @@ proptest-derive = "0.4.0"
rand = "0.8.5"
rand_chacha = "0.3.1"

tokio = { version = "1.34.0", features = ["full", "tracing", "test-util"] }
tokio = { version = "1.35.1", features = ["full", "tracing", "test-util"] }

zebra-test = { path = "../zebra-test/" }

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.7.0"
chrono = { version = "0.4.31", default-features = false, features = ["clock", "std"] }
displaydoc = "0.2.4"
lazy_static = "1.4.0"
once_cell = "1.18.0"
serde = { version = "1.0.192", features = ["serde_derive"] }
once_cell = "1.19.0"
serde = { version = "1.0.193", features = ["serde_derive"] }

futures = "0.3.29"
futures = "0.3.30"
futures-util = "0.3.28"
metrics = "0.21.1"
thiserror = "1.0.48"
tokio = { version = "1.34.0", features = ["time", "sync", "tracing", "rt-multi-thread"] }
metrics = "0.22.0"
thiserror = "1.0.53"
tokio = { version = "1.35.1", 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"
Expand Down Expand Up @@ -90,9 +90,9 @@ proptest = "1.4.0"
proptest-derive = "0.4.0"
spandoc = "0.2.2"

tokio = { version = "1.34.0", features = ["full", "tracing", "test-util"] }
tokio = { version = "1.35.1", features = ["full", "tracing", "test-util"] }
tracing-error = "0.2.0"
tracing-subscriber = "0.3.17"
tracing-subscriber = "0.3.18"

zebra-state = { path = "../zebra-state", features = ["proptest-impl"] }
zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] }
Expand Down
16 changes: 8 additions & 8 deletions zebra-network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,25 +48,25 @@ dirs = "5.0.1"
hex = "0.4.3"
humantime-serde = "1.1.1"
indexmap = { version = "2.0.1", features = ["serde"] }
itertools = "0.11.0"
itertools = "0.12.0"
lazy_static = "1.4.0"
num-integer = "0.1.45"
ordered-map = "0.4.2"
pin-project = "1.1.3"
rand = "0.8.5"
rayon = "1.7.0"
regex = "1.10.2"
serde = { version = "1.0.192", features = ["serde_derive"] }
tempfile = "3.8.1"
thiserror = "1.0.48"
serde = { version = "1.0.193", features = ["serde_derive"] }
tempfile = "3.9.0"
thiserror = "1.0.53"

futures = "0.3.29"
tokio = { version = "1.34.0", features = ["fs", "io-util", "net", "time", "tracing", "macros", "rt-multi-thread"] }
futures = "0.3.30"
tokio = { version = "1.35.1", 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"] }
tower = { version = "0.4.13", features = ["retry", "discover", "load", "load-shed", "timeout", "util", "buffer"] }

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

static_assertions = "1.1.0"
tokio = { version = "1.34.0", features = ["full", "tracing", "test-util"] }
tokio = { version = "1.35.1", features = ["full", "tracing", "test-util"] }
toml = "0.8.8"

zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] }
Expand Down
12 changes: 6 additions & 6 deletions zebra-node-services/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.31" }
color-eyre = { version = "0.6.2", optional = true }
jsonrpc-core = { version = "18.0.0", optional = true }
# Security: avoid default dependency on openssl
reqwest = { version = "0.11.22", default-features = false, features = ["rustls-tls"], optional = true }
serde = { version = "1.0.192", optional = true }
serde_json = { version = "1.0.108", optional = true }
reqwest = { version = "0.11.23", default-features = false, features = ["rustls-tls"], optional = true }
serde = { version = "1.0.193", optional = true }
serde_json = { version = "1.0.109", optional = true }

[dev-dependencies]

color-eyre = "0.6.2"
jsonrpc-core = "18.0.0"
reqwest = { version = "0.11.22", default-features = false, features = ["rustls-tls"] }
serde = "1.0.192"
serde_json = "1.0.108"
reqwest = { version = "0.11.23", default-features = false, features = ["rustls-tls"] }
serde = "1.0.193"
serde_json = "1.0.109"
14 changes: 7 additions & 7 deletions zebra-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,27 +40,27 @@ proptest-impl = [

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

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

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

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

tokio = { version = "1.34.0", features = ["time", "rt-multi-thread", "macros", "tracing"] }
tokio = { version = "1.35.1", 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.192", features = ["serde_derive"] }
serde = { version = "1.0.193", features = ["serde_derive"] }

# Experimental feature getblocktemplate-rpcs
rand = { version = "0.8.5", optional = true }
Expand All @@ -82,8 +82,8 @@ insta = { version = "1.33.0", features = ["redactions", "json", "ron"] }

proptest = "1.4.0"

thiserror = "1.0.48"
tokio = { version = "1.34.0", features = ["full", "tracing", "test-util"] }
thiserror = "1.0.53"
tokio = { version = "1.35.1", features = ["full", "tracing", "test-util"] }

zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] }
zebra-consensus = { path = "../zebra-consensus", features = ["proptest-impl"] }
Expand Down
4 changes: 2 additions & 2 deletions zebra-scan/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ categories = ["cryptography::cryptocurrencies"]
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.31" }

indexmap = { version = "2.0.1", features = ["serde"] }
serde = { version = "1.0.192", features = ["serde_derive"] }
serde = { version = "1.0.193", features = ["serde_derive"] }

[dev-dependencies]

Expand All @@ -36,7 +36,7 @@ bls12_381 = "0.8.0"
jubjub = "0.10.0"
ff = "0.13.0"
group = "0.13.0"
tokio = { version = "1.34.0", features = ["test-util"] }
tokio = { version = "1.35.1", features = ["test-util"] }

zebra-state = { path = "../zebra-state" }
zebra-test = { path = "../zebra-test" }
2 changes: 1 addition & 1 deletion zebra-script/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ zcash_script = "0.1.14"

zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.31" }

thiserror = "1.0.48"
thiserror = "1.0.53"
displaydoc = "0.2.4"

[dev-dependencies]
Expand Down
20 changes: 10 additions & 10 deletions zebra-state/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,32 +46,32 @@ elasticsearch = [
bincode = "1.3.3"
chrono = { version = "0.4.31", default-features = false, features = ["clock", "std"] }
dirs = "5.0.1"
futures = "0.3.29"
futures = "0.3.30"
hex = "0.4.3"
hex-literal = "0.4.1"
humantime-serde = "1.1.1"
indexmap = "2.0.1"
itertools = "0.11.0"
itertools = "0.12.0"
lazy_static = "1.4.0"
metrics = "0.21.1"
metrics = "0.22.0"
mset = "0.1.1"
regex = "1.10.2"
rlimit = "0.10.1"
rocksdb = { version = "0.21.0", default-features = false, features = ["lz4"] }
semver = "1.0.20"
serde = { version = "1.0.192", features = ["serde_derive"] }
tempfile = "3.8.1"
thiserror = "1.0.48"
serde = { version = "1.0.193", features = ["serde_derive"] }
tempfile = "3.9.0"
thiserror = "1.0.53"

rayon = "1.7.0"
tokio = { version = "1.34.0", features = ["rt-multi-thread", "sync", "tracing"] }
tokio = { version = "1.35.1", features = ["rt-multi-thread", "sync", "tracing"] }
tower = { version = "0.4.13", features = ["buffer", "util"] }
tracing = "0.1.39"

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

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

Expand All @@ -89,7 +89,7 @@ color-eyre = "0.6.2"
# Enable a feature that makes tinyvec compile much faster.
tinyvec = { version = "1.6.0", features = ["rustc_1_55"] }

once_cell = "1.18.0"
once_cell = "1.19.0"
spandoc = "0.2.2"

hex = { version = "0.4.3", features = ["serde"] }
Expand All @@ -102,7 +102,7 @@ rand = "0.8.5"
halo2 = { package = "halo2_proofs", version = "0.3.0" }
jubjub = "0.10.0"

tokio = { version = "1.34.0", features = ["full", "tracing", "test-util"] }
tokio = { version = "1.35.1", features = ["full", "tracing", "test-util"] }

zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] }
zebra-test = { path = "../zebra-test/" }
16 changes: 8 additions & 8 deletions zebra-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,29 +19,29 @@ hex = "0.4.3"
indexmap = "2.0.1"
lazy_static = "1.4.0"
insta = "1.33.0"
itertools = "0.11.0"
itertools = "0.12.0"
proptest = "1.4.0"
once_cell = "1.18.0"
once_cell = "1.19.0"
rand = "0.8.5"
regex = "1.10.2"

tokio = { version = "1.34.0", features = ["full", "tracing", "test-util"] }
tokio = { version = "1.35.1", features = ["full", "tracing", "test-util"] }
tower = { version = "0.4.13", features = ["util"] }
futures = "0.3.29"
futures = "0.3.30"

color-eyre = "0.6.2"
# 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"] }

humantime = "2.1.0"
owo-colors = "3.5.0"
owo-colors = "4.0.0"
spandoc = "0.2.2"
thiserror = "1.0.48"
thiserror = "1.0.53"

tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing-error = "0.2.0"
tracing = "0.1.39"

[dev-dependencies]
tempfile = "3.8.1"
tempfile = "3.9.0"
12 changes: 6 additions & 6 deletions zebra-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ tinyvec = { version = "1.6.0", features = ["rustc_1_55"] }

structopt = "0.3.26"
hex = "0.4.3"
serde_json = "1.0.108"
serde_json = "1.0.109"
tracing-error = "0.2.0"
tracing-subscriber = "0.3.17"
thiserror = "1.0.48"
tracing-subscriber = "0.3.18"
thiserror = "1.0.53"

zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.31" }
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.31" }
Expand All @@ -81,12 +81,12 @@ zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.31" }
zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.31", optional = true }

# These crates are needed for the zebra-checkpoints binary
itertools = { version = "0.11.0", optional = true }
itertools = { version = "0.12.0", optional = true }

# These crates are needed for the search-issue-refs binary
regex = { version = "1.10.2", optional = true }
# Avoid default openssl dependency to reduce the dependency tree and security alerts.
reqwest = { version = "0.11.22", default-features = false, features = ["rustls-tls"], optional = true }
reqwest = { version = "0.11.23", default-features = false, features = ["rustls-tls"], optional = true }

# These crates are needed for the zebra-checkpoints and search-issue-refs binaries
tokio = { version = "1.34.0", features = ["full"], optional = true }
tokio = { version = "1.35.1", features = ["full"], optional = true }
Loading
Loading