From b04e4d89d72a02aa875deaf5a7df52c308042006 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 18:00:48 +0000 Subject: [PATCH] chore(deps): bump thiserror from 1.0.69 to 2.0.15 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.69 to 2.0.15. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.69...2.0.15) --- updated-dependencies: - dependency-name: thiserror dependency-version: 2.0.15 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 30 +++++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 26 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index af4db3993..38266ad8b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1028,7 +1028,7 @@ dependencies = [ "serde_json", "sha2", "sha3", - "thiserror", + "thiserror 2.0.15", "time", "tinystr", "tokio", @@ -1381,7 +1381,7 @@ dependencies = [ "rustc-hash", "serde", "serde_json", - "thiserror", + "thiserror 1.0.69", "tokio", "tracing", ] @@ -1418,7 +1418,7 @@ dependencies = [ "serde", "serde_json", "soketto", - "thiserror", + "thiserror 1.0.69", "tokio", "tokio-stream", "tokio-util", @@ -1435,7 +1435,7 @@ dependencies = [ "http", "serde", "serde_json", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -2553,7 +2553,16 @@ version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" dependencies = [ - "thiserror-impl", + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80d76d3f064b981389ecb4b6b7f45a0bf9fdac1d5b9204c7bd6714fecc302850" +dependencies = [ + "thiserror-impl 2.0.15", ] [[package]] @@ -2567,6 +2576,17 @@ dependencies = [ "syn 2.0.104", ] +[[package]] +name = "thiserror-impl" +version = "2.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44d29feb33e986b6ea906bd9c3559a856983f92371b3eaa5e83782a351623de0" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + [[package]] name = "thread_local" version = "1.1.9" diff --git a/Cargo.toml b/Cargo.toml index e9fd5f03c..279ea4917 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ pbkdf2 = { version = "0.12.0", default-features = false } rand = "0.8.5" sha2 = "0.10.9" sha3 = "0.10.2" -thiserror = "1.0.31" +thiserror = "2.0.15" time = "0.3.41" tokio = { version = "1.47.0", features = ["time"] } tonic = "0.12.3"