From 885ee7119533a4daf2b0aad8bfddc20971fb2b31 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Sep 2023 02:44:01 +0000 Subject: [PATCH] build(deps): bump the log-time group with 2 updates (#7493) Bumps the log-time group with 2 updates: [chrono](https://github.com/chronotope/chrono) and [thiserror](https://github.com/dtolnay/thiserror). Updates `chrono` from 0.4.28 to 0.4.29 - [Release notes](https://github.com/chronotope/chrono/releases) - [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md) - [Commits](https://github.com/chronotope/chrono/compare/v0.4.28...v0.4.29) Updates `thiserror` from 1.0.47 to 1.0.48 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.47...1.0.48) --- updated-dependencies: - dependency-name: chrono dependency-type: direct:production update-type: version-update:semver-patch dependency-group: log-time - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: log-time ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 12 ++++++------ zebra-chain/Cargo.toml | 4 ++-- zebra-consensus/Cargo.toml | 4 ++-- zebra-network/Cargo.toml | 4 ++-- zebra-rpc/Cargo.toml | 4 ++-- zebra-script/Cargo.toml | 2 +- zebra-state/Cargo.toml | 4 ++-- zebra-test/Cargo.toml | 2 +- zebra-utils/Cargo.toml | 2 +- zebrad/Cargo.toml | 4 ++-- 10 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c3ad8a44..f5e0fd02 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -688,9 +688,9 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.28" +version = "0.4.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95ed24df0632f708f5f6d8082675bef2596f7084dee3dd55f632290bf35bfe0f" +checksum = "d87d9d13be47a5b7c3907137f1290b0459a7f80efb26be8c52afb11963bccb02" dependencies = [ "android-tzdata", "iana-time-zone", @@ -4241,18 +4241,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.47" +version = "1.0.48" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f" +checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.47" +version = "1.0.48" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" +checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35" dependencies = [ "proc-macro2", "quote", diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index 6c348e34..ff2645be 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -85,13 +85,13 @@ zcash_note_encryption = "0.4.0" zcash_primitives = { version = "0.12.0", features = ["transparent-inputs"] } # Time -chrono = { version = "0.4.28", default-features = false, features = ["clock", "std", "serde"] } +chrono = { version = "0.4.29", 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.47" +thiserror = "1.0.48" tracing = "0.1.37" # Serialization diff --git a/zebra-consensus/Cargo.toml b/zebra-consensus/Cargo.toml index 9ce39f43..4e73e474 100644 --- a/zebra-consensus/Cargo.toml +++ b/zebra-consensus/Cargo.toml @@ -43,7 +43,7 @@ jubjub = "0.10.0" rand = "0.8.5" rayon = "1.7.0" -chrono = { version = "0.4.28", default-features = false, features = ["clock", "std"] } +chrono = { version = "0.4.29", default-features = false, features = ["clock", "std"] } displaydoc = "0.2.4" lazy_static = "1.4.0" once_cell = "1.18.0" @@ -52,7 +52,7 @@ serde = { version = "1.0.188", features = ["serde_derive"] } futures = "0.3.28" futures-util = "0.3.28" metrics = "0.21.1" -thiserror = "1.0.47" +thiserror = "1.0.48" tokio = { version = "1.32.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 93bf82aa..d00318cc 100644 --- a/zebra-network/Cargo.toml +++ b/zebra-network/Cargo.toml @@ -43,7 +43,7 @@ proptest-impl = ["proptest", "proptest-derive", "zebra-chain/proptest-impl"] bitflags = "2.4.0" byteorder = "1.4.3" bytes = "1.4.0" -chrono = { version = "0.4.28", default-features = false, features = ["clock", "std"] } +chrono = { version = "0.4.29", default-features = false, features = ["clock", "std"] } dirs = "5.0.1" hex = "0.4.3" humantime-serde = "1.1.1" @@ -58,7 +58,7 @@ rayon = "1.7.0" regex = "1.9.5" serde = { version = "1.0.188", features = ["serde_derive"] } tempfile = "3.8.0" -thiserror = "1.0.47" +thiserror = "1.0.48" futures = "0.3.28" tokio = { version = "1.32.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 fbe16d4a..3b26aaf4 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -39,7 +39,7 @@ proptest-impl = [ ] [dependencies] -chrono = { version = "0.4.28", default-features = false, features = ["clock", "std"] } +chrono = { version = "0.4.29", default-features = false, features = ["clock", "std"] } futures = "0.3.28" # lightwalletd sends JSON-RPC requests over HTTP 1.1 @@ -82,7 +82,7 @@ insta = { version = "1.31.0", features = ["redactions", "json", "ron"] } proptest = "1.2.0" -thiserror = "1.0.47" +thiserror = "1.0.48" tokio = { version = "1.32.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 de300fab..1acb8048 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.29" } -thiserror = "1.0.47" +thiserror = "1.0.48" displaydoc = "0.2.4" [dev-dependencies] diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index e9fd54e1..afc19693 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -44,7 +44,7 @@ elasticsearch = [ [dependencies] bincode = "1.3.3" -chrono = { version = "0.4.28", default-features = false, features = ["clock", "std"] } +chrono = { version = "0.4.29", default-features = false, features = ["clock", "std"] } dirs = "5.0.1" futures = "0.3.28" hex = "0.4.3" @@ -59,7 +59,7 @@ rocksdb = { version = "0.21.0", default-features = false, features = ["lz4"] } semver = "1.0.18" serde = { version = "1.0.188", features = ["serde_derive"] } tempfile = "3.8.0" -thiserror = "1.0.47" +thiserror = "1.0.48" rayon = "1.7.0" tokio = { version = "1.32.0", features = ["rt-multi-thread", "sync", "tracing"] } diff --git a/zebra-test/Cargo.toml b/zebra-test/Cargo.toml index 5a4af6a0..ef3dfb08 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.47" +thiserror = "1.0.48" 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 33cf9d6a..dc4f0ad8 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.47" +thiserror = "1.0.48" zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.29" } zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.29" } diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index f3ebf3f1..6154c9ed 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -154,7 +154,7 @@ zebra-utils = { path = "../zebra-utils", version = "1.0.0-beta.29", optional = t abscissa_core = "0.7.0" clap = { version = "4.4.2", features = ["cargo"] } -chrono = { version = "0.4.28", default-features = false, features = ["clock", "std"] } +chrono = { version = "0.4.29", default-features = false, features = ["clock", "std"] } humantime-serde = "1.1.1" indexmap = "2.0.0" lazy_static = "1.4.0" @@ -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.47" +thiserror = "1.0.48" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } tracing-appender = "0.2.2"