From 642970902fc7949b529920b451f77658f538f626 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 02:38:58 +0000 Subject: [PATCH] chore(deps): bump thiserror from 1.0.56 to 1.0.57 in /rust Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.56 to 1.0.57. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.56...1.0.57) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- rust/Cargo.lock | 8 ++++---- rust/db_handling/Cargo.toml | 2 +- rust/defaults/Cargo.toml | 2 +- rust/definitions/Cargo.toml | 2 +- rust/generate_message/Cargo.toml | 2 +- rust/navigator/Cargo.toml | 2 +- rust/parser/Cargo.toml | 2 +- rust/qr_reader_phone/Cargo.toml | 2 +- rust/transaction_parsing/Cargo.toml | 2 +- rust/transaction_signing/Cargo.toml | 2 +- 10 files changed, 13 insertions(+), 13 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index c03feb1dbf..5ce99b207d 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -4356,18 +4356,18 @@ checksum = "507e9898683b6c43a9aa55b64259b721b52ba226e0f3779137e50ad114a4c90b" [[package]] name = "thiserror" -version = "1.0.56" +version = "1.0.57" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad" +checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.56" +version = "1.0.57" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471" +checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81" dependencies = [ "proc-macro2", "quote", diff --git a/rust/db_handling/Cargo.toml b/rust/db_handling/Cargo.toml index 481d118e90..85a2e95021 100644 --- a/rust/db_handling/Cargo.toml +++ b/rust/db_handling/Cargo.toml @@ -18,7 +18,7 @@ regex = "1.10.3" sled = "0.34.6" sp-core = {git = "https://github.com/paritytech/substrate", default-features = false, features = ["full_crypto"], optional = true} sp-runtime = {git = "https://github.com/paritytech/substrate", default-features = false, optional = true} -thiserror = "1.0.56" +thiserror = "1.0.57" time = {version = "0.3.34", features = ["formatting", "macros"]} tiny-bip39 = {version = "1.0.0", default-features = false, optional = true} zeroize = { version = "1.7.0", optional = true, features = ["std"] } diff --git a/rust/defaults/Cargo.toml b/rust/defaults/Cargo.toml index 8a98e23d9e..94e2289090 100644 --- a/rust/defaults/Cargo.toml +++ b/rust/defaults/Cargo.toml @@ -11,7 +11,7 @@ lazy_static = {version = "1.4.0", optional = true} regex = {version = "1.10.3", optional = true} sp-core = {git = "https://github.com/paritytech/substrate", default-features = false, features = ["full_crypto"]} sp-runtime = {git = "https://github.com/paritytech/substrate", default-features = false} -thiserror = "1.0.56" +thiserror = "1.0.57" [features] default = [] diff --git a/rust/definitions/Cargo.toml b/rust/definitions/Cargo.toml index b9ac009cb1..2a7717c791 100644 --- a/rust/definitions/Cargo.toml +++ b/rust/definitions/Cargo.toml @@ -18,7 +18,7 @@ sp-io = {git = "https://github.com/paritytech/substrate", optional = true} sp-runtime = {git = "https://github.com/paritytech/substrate", default-features = false} sp-version = {git = "https://github.com/paritytech/substrate"} sp-wasm-interface = {git = "https://github.com/paritytech/substrate", optional = true} -thiserror = "1.0.56" +thiserror = "1.0.57" constants = {path = "../constants"} [features] diff --git a/rust/generate_message/Cargo.toml b/rust/generate_message/Cargo.toml index fd6b7441f8..e19da4b1d3 100644 --- a/rust/generate_message/Cargo.toml +++ b/rust/generate_message/Cargo.toml @@ -22,7 +22,7 @@ sled = "0.34.6" sp-core = {git = "https://github.com/paritytech/substrate", default-features = false, features = ["full_crypto"]} sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false } sp-keyring = { git = "https://github.com/paritytech/substrate", default-features = false } -thiserror = "1.0.56" +thiserror = "1.0.57" tokio = { version = "1", features = ["full"] } [dev-dependencies] diff --git a/rust/navigator/Cargo.toml b/rust/navigator/Cargo.toml index a4a3893934..4eae0ccc3f 100644 --- a/rust/navigator/Cargo.toml +++ b/rust/navigator/Cargo.toml @@ -12,7 +12,7 @@ hex = "0.4.3" lazy_static = "1.4.0" sp-runtime = {git = "https://github.com/paritytech/substrate", default-features = false} banana_recovery = { git = "https://github.com/paritytech/banana-recovery-rust" } -thiserror = "1.0.56" +thiserror = "1.0.57" transaction_parsing = {path = "../transaction_parsing"} transaction_signing = {path = "../transaction_signing"} zeroize = { version = "1.7.0", features = ["std"] } diff --git a/rust/parser/Cargo.toml b/rust/parser/Cargo.toml index 4c4c99b76c..84b76effef 100644 --- a/rust/parser/Cargo.toml +++ b/rust/parser/Cargo.toml @@ -20,7 +20,7 @@ scale-info = "2.10.0" sp-arithmetic = {git = "https://github.com/paritytech/substrate"} sp-core = {git = "https://github.com/paritytech/substrate", default-features = false, features = ["full_crypto"]} sp-runtime = {git = "https://github.com/paritytech/substrate", default-features = false} -thiserror = "1.0.56" +thiserror = "1.0.57" [dev-dependencies] pretty_assertions = "1" diff --git a/rust/qr_reader_phone/Cargo.toml b/rust/qr_reader_phone/Cargo.toml index 31c5ed6b46..55a7ab5859 100644 --- a/rust/qr_reader_phone/Cargo.toml +++ b/rust/qr_reader_phone/Cargo.toml @@ -10,7 +10,7 @@ edition = "2018" hex = "0.4.3" raptorq = "1.8.0" nom = "7.1.3" -thiserror = "1.0.56" +thiserror = "1.0.57" constants = {path = "../constants"} banana_recovery = { git = "https://github.com/paritytech/banana-recovery-rust" } transaction_parsing = { path = "../transaction_parsing" } diff --git a/rust/transaction_parsing/Cargo.toml b/rust/transaction_parsing/Cargo.toml index 5823cb4946..6d40f979b6 100644 --- a/rust/transaction_parsing/Cargo.toml +++ b/rust/transaction_parsing/Cargo.toml @@ -17,7 +17,7 @@ parser = {path = "../parser", default-features = false} sled = "0.34.6" sp-core = {git = "https://github.com/paritytech/substrate", default-features = false, features = ["full_crypto"]} sp-runtime = {git = "https://github.com/paritytech/substrate", default-features = false} -thiserror = "1.0.56" +thiserror = "1.0.57" nom = "7.1.3" log = "0.4" diff --git a/rust/transaction_signing/Cargo.toml b/rust/transaction_signing/Cargo.toml index 926b56a5b2..e0031dd5fa 100644 --- a/rust/transaction_signing/Cargo.toml +++ b/rust/transaction_signing/Cargo.toml @@ -14,7 +14,7 @@ definitions = { path = "../definitions", default-features = false } db_handling = { path = "../db_handling", default-features = false } sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, features = ["full_crypto"] } sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false } -thiserror = "1.0.56" +thiserror = "1.0.57" anyhow = "1.0.79" sled = "0.34"