From e9f459ef21f79421bdc494c4679f367dd1b2cc92 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Oct 2021 09:46:33 -0600 Subject: [PATCH] chore: bump thiserror from 1.0.29 to 1.0.30 (#20583) * chore: bump thiserror from 1.0.29 to 1.0.30 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.29 to 1.0.30. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.29...1.0.30) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * [auto-commit] Update all Cargo lock files Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot-buildkite --- Cargo.lock | 8 ++++---- accountsdb-plugin-interface/Cargo.toml | 2 +- accountsdb-plugin-manager/Cargo.toml | 2 +- accountsdb-plugin-postgres/Cargo.toml | 2 +- clap-utils/Cargo.toml | 2 +- cli/Cargo.toml | 2 +- programs/bpf/Cargo.lock | 8 ++++---- storage-bigtable/build-proto/Cargo.lock | 8 ++++---- 8 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 23966d336..1299b9f7e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6210,18 +6210,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.29" +version = "1.0.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "602eca064b2d83369e2b2f34b09c70b605402801927c65c11071ac911d299b88" +checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.29" +version = "1.0.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bad553cc2c78e8de258400763a647e80e6d1b31ee237275d756f6836d204494c" +checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" dependencies = [ "proc-macro2 1.0.24", "quote 1.0.9", diff --git a/accountsdb-plugin-interface/Cargo.toml b/accountsdb-plugin-interface/Cargo.toml index 09c401c74..308c83ffd 100644 --- a/accountsdb-plugin-interface/Cargo.toml +++ b/accountsdb-plugin-interface/Cargo.toml @@ -11,7 +11,7 @@ documentation = "https://docs.rs/solana-validator" [dependencies] log = "0.4.11" -thiserror = "1.0.29" +thiserror = "1.0.30" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/accountsdb-plugin-manager/Cargo.toml b/accountsdb-plugin-manager/Cargo.toml index ff27ee882..485418f4e 100644 --- a/accountsdb-plugin-manager/Cargo.toml +++ b/accountsdb-plugin-manager/Cargo.toml @@ -23,7 +23,7 @@ solana-metrics = { path = "../metrics", version = "=1.9.0" } solana-rpc = { path = "../rpc", version = "=1.9.0" } solana-runtime = { path = "../runtime", version = "=1.9.0" } solana-sdk = { path = "../sdk", version = "=1.9.0" } -thiserror = "1.0.29" +thiserror = "1.0.30" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/accountsdb-plugin-postgres/Cargo.toml b/accountsdb-plugin-postgres/Cargo.toml index cbc26038c..36d63d9d8 100644 --- a/accountsdb-plugin-postgres/Cargo.toml +++ b/accountsdb-plugin-postgres/Cargo.toml @@ -23,7 +23,7 @@ serde_derive = "1.0.103" serde_json = "1.0.67" solana-accountsdb-plugin-interface = { path = "../accountsdb-plugin-interface", version = "=1.9.0" } solana-logger = { path = "../logger", version = "=1.9.0" } -thiserror = "1.0.29" +thiserror = "1.0.30" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/clap-utils/Cargo.toml b/clap-utils/Cargo.toml index 4bfd4a609..e03c5719e 100644 --- a/clap-utils/Cargo.toml +++ b/clap-utils/Cargo.toml @@ -14,7 +14,7 @@ clap = "2.33.0" rpassword = "5.0" solana-remote-wallet = { path = "../remote-wallet", version = "=1.9.0" } solana-sdk = { path = "../sdk", version = "=1.9.0" } -thiserror = "1.0.29" +thiserror = "1.0.30" tiny-bip39 = "0.8.2" uriparse = "0.6.3" url = "2.2.2" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 52752dea4..b80139fad 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -41,7 +41,7 @@ solana-transaction-status = { path = "../transaction-status", version = "=1.9.0" solana-version = { path = "../version", version = "=1.9.0" } solana-vote-program = { path = "../programs/vote", version = "=1.9.0" } spl-memo = { version = "=3.0.1", features = ["no-entrypoint"] } -thiserror = "1.0.29" +thiserror = "1.0.30" tiny-bip39 = "0.8.2" [dev-dependencies] diff --git a/programs/bpf/Cargo.lock b/programs/bpf/Cargo.lock index 73432cd47..75363da29 100644 --- a/programs/bpf/Cargo.lock +++ b/programs/bpf/Cargo.lock @@ -3643,18 +3643,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.29" +version = "1.0.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "602eca064b2d83369e2b2f34b09c70b605402801927c65c11071ac911d299b88" +checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.29" +version = "1.0.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bad553cc2c78e8de258400763a647e80e6d1b31ee237275d756f6836d204494c" +checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" dependencies = [ "proc-macro2 1.0.24", "quote 1.0.6", diff --git a/storage-bigtable/build-proto/Cargo.lock b/storage-bigtable/build-proto/Cargo.lock index 9a6bed819..1d29f3bde 100644 --- a/storage-bigtable/build-proto/Cargo.lock +++ b/storage-bigtable/build-proto/Cargo.lock @@ -293,18 +293,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.29" +version = "1.0.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "602eca064b2d83369e2b2f34b09c70b605402801927c65c11071ac911d299b88" +checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.29" +version = "1.0.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bad553cc2c78e8de258400763a647e80e6d1b31ee237275d756f6836d204494c" +checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" dependencies = [ "proc-macro2", "quote",