From 96be200877bdaaac048967980d1c5bb61bfc2759 Mon Sep 17 00:00:00 2001 From: Alfredo Garcia Date: Wed, 24 Apr 2024 08:42:10 -0300 Subject: [PATCH] update prod deps --- Cargo.lock | 20 ++++++++++---------- zebra-chain/Cargo.toml | 4 ++-- zebra-consensus/Cargo.toml | 4 ++-- zebra-grpc/Cargo.toml | 2 +- zebra-network/Cargo.toml | 4 ++-- zebra-node-services/Cargo.toml | 4 ++-- zebra-rpc/Cargo.toml | 4 ++-- zebra-scan/Cargo.toml | 2 +- zebra-script/Cargo.toml | 2 +- zebra-state/Cargo.toml | 4 ++-- zebra-test/Cargo.toml | 2 +- zebra-utils/Cargo.toml | 4 ++-- zebrad/Cargo.toml | 6 +++--- 13 files changed, 31 insertions(+), 31 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b2092ed0c..b90c1a316 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4028,9 +4028,9 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.197" +version = "1.0.198" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" +checksum = "9846a40c979031340571da2545a4e5b7c4163bdae79b301d5f86d03979451fcc" dependencies = [ "serde_derive", ] @@ -4046,9 +4046,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.197" +version = "1.0.198" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" +checksum = "e88edab869b01783ba905e7d0153f9fc1a6505a96e4ad3018011eedb838566d9" dependencies = [ "proc-macro2", "quote", @@ -4452,18 +4452,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.58" +version = "1.0.59" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297" +checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.58" +version = "1.0.59" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7" +checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66" dependencies = [ "proc-macro2", "quote", @@ -4472,9 +4472,9 @@ dependencies = [ [[package]] name = "thread-priority" -version = "0.16.0" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a617e9eeeb20448b01a8e2427fb80dfbc9c49d79a1de3b11f25731edbf547e3c" +checksum = "599e8e829c2314b750ecade9309ecc6cf9a48c2e62fe25680b6c1d2172463ca3" dependencies = [ "bitflags 2.5.0", "cfg-if 1.0.0", diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index 5dc13dfea..b554f225e 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -106,12 +106,12 @@ humantime = "2.1.0" # Error Handling & Formatting displaydoc = "0.2.4" static_assertions = "1.1.0" -thiserror = "1.0.58" +thiserror = "1.0.59" tracing = "0.1.39" # Serialization hex = { version = "0.4.3", features = ["serde"] } -serde = { version = "1.0.197", features = ["serde_derive", "rc"] } +serde = { version = "1.0.198", features = ["serde_derive", "rc"] } serde_with = "3.7.0" serde-big-array = "0.5.1" diff --git a/zebra-consensus/Cargo.toml b/zebra-consensus/Cargo.toml index 9fcf95545..d1982c76e 100644 --- a/zebra-consensus/Cargo.toml +++ b/zebra-consensus/Cargo.toml @@ -47,12 +47,12 @@ chrono = { version = "0.4.38", default-features = false, features = ["clock", "s displaydoc = "0.2.4" lazy_static = "1.4.0" once_cell = "1.18.0" -serde = { version = "1.0.197", features = ["serde_derive"] } +serde = { version = "1.0.198", features = ["serde_derive"] } futures = "0.3.30" futures-util = "0.3.28" metrics = "0.22.3" -thiserror = "1.0.58" +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" diff --git a/zebra-grpc/Cargo.toml b/zebra-grpc/Cargo.toml index bf472380c..da6f1c217 100644 --- a/zebra-grpc/Cargo.toml +++ b/zebra-grpc/Cargo.toml @@ -20,7 +20,7 @@ futures-util = "0.3.28" tonic = "0.11.0" tonic-reflection = "0.11.0" prost = "0.12.4" -serde = { version = "1.0.197", features = ["serde_derive"] } +serde = { version = "1.0.198", 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"] } diff --git a/zebra-network/Cargo.toml b/zebra-network/Cargo.toml index ac1c53489..bca5fa5bd 100644 --- a/zebra-network/Cargo.toml +++ b/zebra-network/Cargo.toml @@ -56,9 +56,9 @@ pin-project = "1.1.5" rand = "0.8.5" rayon = "1.10.0" regex = "1.10.4" -serde = { version = "1.0.197", features = ["serde_derive"] } +serde = { version = "1.0.198", features = ["serde_derive"] } tempfile = "3.10.1" -thiserror = "1.0.58" +thiserror = "1.0.59" futures = "0.3.30" tokio = { version = "1.37.0", features = ["fs", "io-util", "net", "time", "tracing", "macros", "rt-multi-thread"] } diff --git a/zebra-node-services/Cargo.toml b/zebra-node-services/Cargo.toml index 4474f2e0e..5ca768e1f 100644 --- a/zebra-node-services/Cargo.toml +++ b/zebra-node-services/Cargo.toml @@ -46,7 +46,7 @@ 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.26", default-features = false, features = ["rustls-tls"], optional = true } -serde = { version = "1.0.197", optional = true } +serde = { version = "1.0.198", optional = true } serde_json = { version = "1.0.116", optional = true } tokio = { version = "1.37.0", features = ["time"], optional = true } @@ -55,5 +55,5 @@ tokio = { version = "1.37.0", features = ["time"], optional = true } color-eyre = "0.6.3" jsonrpc-core = "18.0.0" reqwest = { version = "0.11.26", default-features = false, features = ["rustls-tls"] } -serde = "1.0.197" +serde = "1.0.198" serde_json = "1.0.116" diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index 2eec2e827..acd849b70 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -62,7 +62,7 @@ tower = "0.4.13" tracing = "0.1.39" hex = { version = "0.4.3", features = ["serde"] } -serde = { version = "1.0.197", features = ["serde_derive"] } +serde = { version = "1.0.198", features = ["serde_derive"] } # Experimental feature getblocktemplate-rpcs rand = { version = "0.8.5", optional = true } @@ -84,7 +84,7 @@ insta = { version = "1.38.0", features = ["redactions", "json", "ron"] } proptest = "1.4.0" -thiserror = "1.0.58" +thiserror = "1.0.59" tokio = { version = "1.37.0", features = ["full", "tracing", "test-util"] } zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.36", features = ["proptest-impl"] } diff --git a/zebra-scan/Cargo.toml b/zebra-scan/Cargo.toml index 69a52d8e4..cf441e8d1 100644 --- a/zebra-scan/Cargo.toml +++ b/zebra-scan/Cargo.toml @@ -45,7 +45,7 @@ color-eyre = "0.6.3" indexmap = { version = "2.2.6", features = ["serde"] } itertools = "0.12.1" semver = "1.0.22" -serde = { version = "1.0.197", features = ["serde_derive"] } +serde = { version = "1.0.198", features = ["serde_derive"] } tokio = { version = "1.37.0", features = ["time"] } tower = "0.4.13" tracing = "0.1.39" diff --git a/zebra-script/Cargo.toml b/zebra-script/Cargo.toml index 9e95e1797..a67f57f81 100644 --- a/zebra-script/Cargo.toml +++ b/zebra-script/Cargo.toml @@ -19,7 +19,7 @@ zcash_script = "0.1.14" zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.36" } -thiserror = "1.0.58" +thiserror = "1.0.59" displaydoc = "0.2.4" [dev-dependencies] diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index 6bf2cf005..2db9a8704 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -63,9 +63,9 @@ regex = "1.10.4" rlimit = "0.10.1" rocksdb = { version = "0.22.0", default-features = false, features = ["lz4"] } semver = "1.0.22" -serde = { version = "1.0.197", features = ["serde_derive"] } +serde = { version = "1.0.198", features = ["serde_derive"] } tempfile = "3.10.1" -thiserror = "1.0.58" +thiserror = "1.0.59" rayon = "1.10.0" tokio = { version = "1.37.0", features = ["rt-multi-thread", "sync", "tracing"] } diff --git a/zebra-test/Cargo.toml b/zebra-test/Cargo.toml index 16d97cf08..bc3922ff0 100644 --- a/zebra-test/Cargo.toml +++ b/zebra-test/Cargo.toml @@ -37,7 +37,7 @@ tinyvec = { version = "1.6.0", features = ["rustc_1_55"] } humantime = "2.1.0" owo-colors = "4.0.0" spandoc = "0.2.2" -thiserror = "1.0.58" +thiserror = "1.0.59" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } tracing-error = "0.2.0" diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index 4bc33e61e..2fcc642ee 100644 --- a/zebra-utils/Cargo.toml +++ b/zebra-utils/Cargo.toml @@ -98,7 +98,7 @@ hex = "0.4.3" serde_json = "1.0.116" tracing-error = "0.2.0" tracing-subscriber = "0.3.18" -thiserror = "1.0.58" +thiserror = "1.0.59" zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.36" } zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.36" } @@ -127,4 +127,4 @@ zcash_client_backend = {version = "0.10.0-rc.1", optional = true} syn = { version = "2.0.60", features = ["full"], optional = true } quote = { version = "1.0.36", optional = true } serde_yaml = { version = "0.9.34+deprecated", optional = true } -serde = { version = "1.0.197", features = ["serde_derive"], optional = true } +serde = { version = "1.0.198", features = ["serde_derive"], optional = true } diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index 8503aec12..421cf775a 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -178,7 +178,7 @@ humantime-serde = "1.1.1" indexmap = "2.2.6" lazy_static = "1.4.0" semver = "1.0.22" -serde = { version = "1.0.197", features = ["serde_derive"] } +serde = { version = "1.0.198", features = ["serde_derive"] } toml = "0.8.11" futures = "0.3.30" @@ -193,7 +193,7 @@ color-eyre = { version = "0.6.3", default-features = false, features = ["issue-u # Enable a feature that makes tinyvec compile much faster. tinyvec = { version = "1.6.0", features = ["rustc_1_55"] } -thiserror = "1.0.58" +thiserror = "1.0.59" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } tracing-appender = "0.2.3" @@ -210,7 +210,7 @@ num-integer = "0.1.46" rand = "0.8.5" # prod feature internal-miner -thread-priority = { version = "0.16.0", optional = true } +thread-priority = { version = "1.0.0", optional = true } # prod feature sentry sentry = { version = "0.32.2", default-features = false, features = ["backtrace", "contexts", "reqwest", "rustls", "tracing"], optional = true }