From ec5ffb3883e0247aa26f0afc04de69b54dc68183 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Jul 2024 09:36:32 +0000 Subject: [PATCH] build(deps): bump thiserror from 1.0.61 to 1.0.62 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.61 to 1.0.62. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.61...1.0.62) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- libraries/concurrent-merkle-tree/Cargo.toml | 2 +- libraries/merkle-tree-reference/Cargo.toml | 2 +- managed-token/program/Cargo.toml | 2 +- name-service/program/Cargo.toml | 2 +- token/confidential-transfer/proof-extraction/Cargo.toml | 2 +- token/confidential-transfer/proof-generation/Cargo.toml | 2 +- token/confidential-transfer/proof-tests/Cargo.toml | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1cb63077a98..b6e343dba33 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8359,18 +8359,18 @@ checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" [[package]] name = "thiserror" -version = "1.0.61" +version = "1.0.62" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" +checksum = "f2675633b1499176c2dff06b0856a27976a8f9d436737b4cf4f312d4d91d8bbb" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.61" +version = "1.0.62" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" +checksum = "d20468752b09f49e909e55a5d338caa8bedf615594e9d80bc4c565d30faf798c" dependencies = [ "proc-macro2", "quote", diff --git a/libraries/concurrent-merkle-tree/Cargo.toml b/libraries/concurrent-merkle-tree/Cargo.toml index da7d1ee895c..ad57dc2a6b1 100644 --- a/libraries/concurrent-merkle-tree/Cargo.toml +++ b/libraries/concurrent-merkle-tree/Cargo.toml @@ -14,7 +14,7 @@ sol-log = ["log"] [dependencies] solana-program = ">=1.18.11,<=2" bytemuck = "1.16" -thiserror = "1.0.61" +thiserror = "1.0.62" [dev-dependencies] rand_distr = "0.4.3" diff --git a/libraries/merkle-tree-reference/Cargo.toml b/libraries/merkle-tree-reference/Cargo.toml index 4fc8a7b3a16..338f7c4c64b 100644 --- a/libraries/merkle-tree-reference/Cargo.toml +++ b/libraries/merkle-tree-reference/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" [dependencies] solana-program = ">=1.18.11,<=2" -thiserror = "1.0.61" +thiserror = "1.0.62" [lib] crate-type = ["cdylib", "lib"] diff --git a/managed-token/program/Cargo.toml b/managed-token/program/Cargo.toml index be4cc06803a..f0aa6727d68 100644 --- a/managed-token/program/Cargo.toml +++ b/managed-token/program/Cargo.toml @@ -31,7 +31,7 @@ spl-associated-token-account = { version = "4.0.0", path = "../../associated-tok spl-token = { version = "6.0", path = "../../token/program", features = [ "no-entrypoint", ] } -thiserror = "^1.0.61" +thiserror = "^1.0.62" [dev-dependencies] solana-program-test = "2.0.0" diff --git a/name-service/program/Cargo.toml b/name-service/program/Cargo.toml index 391c6ad251b..87c0ec8008d 100644 --- a/name-service/program/Cargo.toml +++ b/name-service/program/Cargo.toml @@ -21,7 +21,7 @@ solana-program = "2.0.0" num-traits = "0.2" borsh = "1.5.1" num-derive = "0.4.2" -thiserror = "1.0.61" +thiserror = "1.0.62" [dev-dependencies] solana-program-test = "2.0.0" diff --git a/token/confidential-transfer/proof-extraction/Cargo.toml b/token/confidential-transfer/proof-extraction/Cargo.toml index f31a22ac02c..fa1c92b8e08 100644 --- a/token/confidential-transfer/proof-extraction/Cargo.toml +++ b/token/confidential-transfer/proof-extraction/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" [dependencies] solana-zk-sdk = "2.0.0" -thiserror = "1.0.61" +thiserror = "1.0.62" [lib] crate-type = ["cdylib", "lib"] diff --git a/token/confidential-transfer/proof-generation/Cargo.toml b/token/confidential-transfer/proof-generation/Cargo.toml index 9a46a9e8c2a..26618c1f705 100644 --- a/token/confidential-transfer/proof-generation/Cargo.toml +++ b/token/confidential-transfer/proof-generation/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" [dependencies] curve25519-dalek = "3.2.1" solana-zk-sdk = "2.0.0" -thiserror = "1.0.61" +thiserror = "1.0.62" [dev-dependencies] diff --git a/token/confidential-transfer/proof-tests/Cargo.toml b/token/confidential-transfer/proof-tests/Cargo.toml index cd776f7d463..fa85acce5f0 100644 --- a/token/confidential-transfer/proof-tests/Cargo.toml +++ b/token/confidential-transfer/proof-tests/Cargo.toml @@ -10,6 +10,6 @@ edition = "2021" [dev-dependencies] curve25519-dalek = "3.2.1" solana-zk-sdk = "2.0.0" -thiserror = "1.0.61" +thiserror = "1.0.62" spl-token-confidential-transfer-proof-extraction = { version = "0.1.0", path = "../proof-extraction" } spl-token-confidential-transfer-proof-generation = { version = "0.1.0", path = "../proof-generation" }