diff --git a/Cargo.lock b/Cargo.lock index 89f5238d72f..ea196d8d660 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8401,18 +8401,18 @@ checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" [[package]] name = "thiserror" -version = "1.0.63" +version = "1.0.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" +checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.63" +version = "1.0.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" +checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" dependencies = [ "proc-macro2", "quote", diff --git a/libraries/concurrent-merkle-tree/Cargo.toml b/libraries/concurrent-merkle-tree/Cargo.toml index 0c3c91ec723..27f216c3c12 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.18" -thiserror = "1.0.63" +thiserror = "1.0.64" [dev-dependencies] rand_distr = "0.4.3" diff --git a/libraries/merkle-tree-reference/Cargo.toml b/libraries/merkle-tree-reference/Cargo.toml index 5049092f7b1..46c3bca63f5 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.63" +thiserror = "1.0.64" [lib] crate-type = ["cdylib", "lib"] diff --git a/managed-token/program/Cargo.toml b/managed-token/program/Cargo.toml index f57036d38da..276e44232c5 100644 --- a/managed-token/program/Cargo.toml +++ b/managed-token/program/Cargo.toml @@ -32,7 +32,7 @@ spl-associated-token-account-client = { version = "1.0.0", path = "../../associa spl-token = { version = "6.0", path = "../../token/program", features = [ "no-entrypoint", ] } -thiserror = "^1.0.63" +thiserror = "^1.0.64" [dev-dependencies] solana-program-test = "2.0.3" diff --git a/name-service/program/Cargo.toml b/name-service/program/Cargo.toml index 2be79e70498..d6b2fb50592 100644 --- a/name-service/program/Cargo.toml +++ b/name-service/program/Cargo.toml @@ -21,7 +21,7 @@ solana-program = "2.0.3" num-traits = "0.2" borsh = "1.5.1" num-derive = "0.4.2" -thiserror = "1.0.63" +thiserror = "1.0.64" [dev-dependencies] solana-program-test = "2.0.3" diff --git a/token/confidential-transfer/proof-extraction/Cargo.toml b/token/confidential-transfer/proof-extraction/Cargo.toml index a2850b0ff2b..ff3a982d84c 100644 --- a/token/confidential-transfer/proof-extraction/Cargo.toml +++ b/token/confidential-transfer/proof-extraction/Cargo.toml @@ -11,7 +11,7 @@ edition = "2021" bytemuck = "1.18.0" solana-curve25519 = "2.0.3" solana-zk-sdk = "2.0.3" -thiserror = "1.0.63" +thiserror = "1.0.64" [lib] crate-type = ["cdylib", "lib"] diff --git a/token/confidential-transfer/proof-generation/Cargo.toml b/token/confidential-transfer/proof-generation/Cargo.toml index 7d580d77081..0730edeefd4 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.3" -thiserror = "1.0.63" +thiserror = "1.0.64" [dev-dependencies] diff --git a/token/confidential-transfer/proof-tests/Cargo.toml b/token/confidential-transfer/proof-tests/Cargo.toml index d528e2367e7..c3fa2d55f1e 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.3" -thiserror = "1.0.63" +thiserror = "1.0.64" 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" }