From 7123701183b0c0573456ca6b79b454bc0ea42423 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Aug 2023 21:04:54 +0000 Subject: [PATCH] build(deps): bump the log group with 2 updates (#7355) Bumps the log group with 2 updates: [thiserror](https://github.com/dtolnay/thiserror) and [inferno](https://github.com/jonhoo/inferno). Updates `thiserror` from 1.0.46 to 1.0.47 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.46...1.0.47) Updates `inferno` from 0.11.15 to 0.11.16 - [Changelog](https://github.com/jonhoo/inferno/blob/main/CHANGELOG.md) - [Commits](https://github.com/jonhoo/inferno/compare/v0.11.15...v0.11.16) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: log - dependency-name: inferno dependency-type: direct:production update-type: version-update:semver-patch dependency-group: log ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 12 ++++++------ 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 +- zebra-utils/Cargo.toml | 2 +- zebrad/Cargo.toml | 4 ++-- 10 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ca7c6d5c..862ff25d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2018,9 +2018,9 @@ dependencies = [ [[package]] name = "inferno" -version = "0.11.15" +version = "0.11.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fb7c1b80a1dfa604bb4a649a5c5aeef3d913f7c520cb42b40e534e8a61bcdfc" +checksum = "73c0fefcb6d409a6587c07515951495d482006f89a21daa0f2f783aa4fd5e027" dependencies = [ "ahash", "is-terminal", @@ -4241,18 +4241,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.46" +version = "1.0.47" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9207952ae1a003f42d3d5e892dac3c6ba42aa6ac0c79a6a91a2b5cb4253e75c" +checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.46" +version = "1.0.47" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1728216d3244de4f14f14f8c15c79be1a7c67867d28d69b719690e2a19fb445" +checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" dependencies = [ "proc-macro2 1.0.66", "quote 1.0.31", diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index 8bf7c2d8..0cd56617 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -91,7 +91,7 @@ humantime = "2.1.0" # Error Handling & Formatting displaydoc = "0.2.4" static_assertions = "1.1.0" -thiserror = "1.0.46" +thiserror = "1.0.47" tracing = "0.1.37" # Serialization diff --git a/zebra-consensus/Cargo.toml b/zebra-consensus/Cargo.toml index ac28cb2b..48c5f265 100644 --- a/zebra-consensus/Cargo.toml +++ b/zebra-consensus/Cargo.toml @@ -52,7 +52,7 @@ serde = { version = "1.0.183", features = ["serde_derive"] } futures = "0.3.28" futures-util = "0.3.28" metrics = "0.21.1" -thiserror = "1.0.46" +thiserror = "1.0.47" tokio = { version = "1.31.0", features = ["time", "sync", "tracing", "rt-multi-thread"] } tower = { version = "0.4.13", features = ["timeout", "util", "buffer"] } tracing = "0.1.37" diff --git a/zebra-network/Cargo.toml b/zebra-network/Cargo.toml index d7cea117..5b9f31b8 100644 --- a/zebra-network/Cargo.toml +++ b/zebra-network/Cargo.toml @@ -58,7 +58,7 @@ rayon = "1.7.0" regex = "1.9.3" serde = { version = "1.0.183", features = ["serde_derive"] } tempfile = "3.7.1" -thiserror = "1.0.46" +thiserror = "1.0.47" futures = "0.3.28" tokio = { version = "1.31.0", features = ["fs", "io-util", "net", "time", "tracing", "macros", "rt-multi-thread"] } diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index f82dbee4..6dbe625e 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -82,7 +82,7 @@ insta = { version = "1.31.0", features = ["redactions", "json", "ron"] } proptest = "1.2.0" -thiserror = "1.0.46" +thiserror = "1.0.47" tokio = { version = "1.31.0", features = ["full", "tracing", "test-util"] } zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] } diff --git a/zebra-script/Cargo.toml b/zebra-script/Cargo.toml index 3b222ea5..ed595db7 100644 --- a/zebra-script/Cargo.toml +++ b/zebra-script/Cargo.toml @@ -19,7 +19,7 @@ zcash_script = "0.1.13" zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.28" } -thiserror = "1.0.46" +thiserror = "1.0.47" displaydoc = "0.2.4" [dev-dependencies] diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index a00c4e38..bdb2847d 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -59,7 +59,7 @@ rocksdb = { version = "0.21.0", default-features = false, features = ["lz4"] } semver = "1.0.18" serde = { version = "1.0.183", features = ["serde_derive"] } tempfile = "3.7.1" -thiserror = "1.0.46" +thiserror = "1.0.47" rayon = "1.7.0" tokio = { version = "1.31.0", features = ["rt-multi-thread", "sync", "tracing"] } diff --git a/zebra-test/Cargo.toml b/zebra-test/Cargo.toml index d96ad48f..f4f4c855 100644 --- a/zebra-test/Cargo.toml +++ b/zebra-test/Cargo.toml @@ -36,7 +36,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.46" +thiserror = "1.0.47" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } tracing-error = "0.2.0" diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index 243435ff..1feb8edb 100644 --- a/zebra-utils/Cargo.toml +++ b/zebra-utils/Cargo.toml @@ -72,7 +72,7 @@ hex = "0.4.3" serde_json = "1.0.105" tracing-error = "0.2.0" tracing-subscriber = "0.3.17" -thiserror = "1.0.46" +thiserror = "1.0.47" zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.28" } zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.28" } diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index df9324f5..bdf5f9d3 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -173,7 +173,7 @@ color-eyre = { version = "0.6.2", 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.46" +thiserror = "1.0.47" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } tracing-appender = "0.2.2" @@ -194,7 +194,7 @@ sentry = { version = "0.31.5", default-features = false, features = ["backtrace" # prod feature flamegraph tracing-flame = { version = "0.2.0", optional = true } -inferno = { version = "0.11.15", default-features = false, optional = true } +inferno = { version = "0.11.16", default-features = false, optional = true } # prod feature journald tracing-journald = { version = "0.3.0", optional = true }