From 4973003892fd740e1e63f37bc9dda8be5d7820a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Sep 2022 19:00:06 +0000 Subject: [PATCH] build(deps): bump thiserror from 1.0.33 to 1.0.34 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.33 to 1.0.34. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.33...1.0.34) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- zebra-chain/Cargo.toml | 2 +- zebra-consensus/Cargo.toml | 2 +- zebra-network/Cargo.toml | 2 +- zebra-rpc/Cargo.toml | 2 +- zebra-script/Cargo.toml | 2 +- zebra-state/Cargo.toml | 2 +- zebra-test/Cargo.toml | 2 +- zebrad/Cargo.toml | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 38b33b32792..aba817c7fb6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4786,18 +4786,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.33" +version = "1.0.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d0a539a918745651435ac7db7a18761589a94cd7e94cd56999f828bf73c8a57" +checksum = "8c1b05ca9d106ba7d2e31a9dab4a64e7be2cce415321966ea3132c49a656e252" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.33" +version = "1.0.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c251e90f708e16c49a16f4917dc2131e75222b72edfa9cb7f7c58ae56aae0c09" +checksum = "e8f2591983642de85c921015f3f070c665a197ed69e417af436115e3a1407487" dependencies = [ "proc-macro2 1.0.42", "quote 1.0.20", diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index 5fb0bb2536a..28ee81b5f97 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -55,7 +55,7 @@ humantime = "2.1.0" # Error Handling & Formatting displaydoc = "0.2.3" static_assertions = "1.1.0" -thiserror = "1.0.33" +thiserror = "1.0.34" tracing = "0.1.31" # Serialization diff --git a/zebra-consensus/Cargo.toml b/zebra-consensus/Cargo.toml index 166a3ecd16e..a3c60f95e54 100644 --- a/zebra-consensus/Cargo.toml +++ b/zebra-consensus/Cargo.toml @@ -28,7 +28,7 @@ serde = { version = "1.0.144", features = ["serde_derive"] } futures = "0.3.24" futures-util = "0.3.24" metrics = "0.18.1" -thiserror = "1.0.33" +thiserror = "1.0.34" tokio = { version = "1.21.0", features = ["time", "sync", "tracing", "rt-multi-thread"] } tower = { version = "0.4.13", features = ["timeout", "util", "buffer"] } tracing = "0.1.31" diff --git a/zebra-network/Cargo.toml b/zebra-network/Cargo.toml index 8e2424e3c48..e35f18663cc 100644 --- a/zebra-network/Cargo.toml +++ b/zebra-network/Cargo.toml @@ -27,7 +27,7 @@ rand = { version = "0.8.5", package = "rand" } rayon = "1.5.3" regex = "1.6.0" serde = { version = "1.0.144", features = ["serde_derive"] } -thiserror = "1.0.33" +thiserror = "1.0.34" futures = "0.3.24" tokio = { version = "1.21.0", features = ["net", "time", "tracing", "macros", "rt-multi-thread"] } diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index 9b4affdd892..ffe948ff80a 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -49,7 +49,7 @@ insta = { version = "1.19.1", features = ["redactions", "json"] } proptest = "0.10.1" proptest-derive = "0.3.0" serde_json = "1.0.85" -thiserror = "1.0.33" +thiserror = "1.0.34" tokio = { version = "1.21.0", features = ["full", "tracing", "test-util"] } diff --git a/zebra-script/Cargo.toml b/zebra-script/Cargo.toml index 4dbacf9eb0e..a526c6748ae 100644 --- a/zebra-script/Cargo.toml +++ b/zebra-script/Cargo.toml @@ -12,7 +12,7 @@ zcash_script = "0.1.7" zebra-chain = { path = "../zebra-chain" } -thiserror = "1.0.33" +thiserror = "1.0.34" displaydoc = "0.2.3" [dev-dependencies] diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index d414167edd3..a5cc4cd50e0 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -24,7 +24,7 @@ rlimit = "0.8.3" rocksdb = { version = "0.19.0", default_features = false, features = ["lz4"] } serde = { version = "1.0.144", features = ["serde_derive"] } tempfile = "3.3.0" -thiserror = "1.0.33" +thiserror = "1.0.34" rayon = "1.5.3" tokio = { version = "1.21.0", features = ["sync", "tracing"] } diff --git a/zebra-test/Cargo.toml b/zebra-test/Cargo.toml index 9e66cec9d45..a3583f50380 100644 --- a/zebra-test/Cargo.toml +++ b/zebra-test/Cargo.toml @@ -29,7 +29,7 @@ tinyvec = { version = "1.6.0", features = ["rustc_1_55"] } humantime = "2.1.0" owo-colors = "3.5.0" spandoc = "0.2.2" -thiserror = "1.0.33" +thiserror = "1.0.34" tracing-subscriber = { version = "0.3.11", features = ["env-filter"] } tracing-error = "0.2.0" diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index d33d2389476..bd2d0360609 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -96,7 +96,7 @@ color-eyre = { version = "0.6.1", 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.33" +thiserror = "1.0.34" tracing-subscriber = { version = "0.3.11", features = ["env-filter"] } tracing-error = "0.2.0"