From 66f82153b78bb8578a5d2c68268b6c2cca2f27bc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Aug 2025 04:11:14 +0000 Subject: [PATCH] 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 | 38 +++++++++++++++++++++++++++--------- crates/common/Cargo.toml | 2 +- crates/ev-cli/Cargo.toml | 2 +- crates/ev-enclave/Cargo.toml | 2 +- 4 files changed, 32 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 785640d4..3f5533fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -147,7 +147,7 @@ dependencies = [ "nom", "num-traits", "rusticata-macros", - "thiserror", + "thiserror 1.0.69", "time", ] @@ -230,7 +230,7 @@ dependencies = [ "serde_cbor", "serde_with 2.3.3", "sha2 0.10.8", - "thiserror", + "thiserror 1.0.69", "webpki", "x509-parser", ] @@ -596,7 +596,7 @@ dependencies = [ "serde", "serde_json", "tempfile", - "thiserror", + "thiserror 2.0.15", "tokio", "tokio-util", "toml 0.5.11", @@ -1111,7 +1111,7 @@ dependencies = [ "strum", "strum_macros", "tempfile", - "thiserror", + "thiserror 2.0.15", "tokio", "tokio-util", "toml 0.5.11", @@ -1158,7 +1158,7 @@ dependencies = [ "serial_test", "sha2 0.9.9", "tempfile", - "thiserror", + "thiserror 2.0.15", "tokio", "tokio-rustls", "tokio-stream", @@ -2136,7 +2136,7 @@ dependencies = [ "once_cell", "parking_lot", "textwrap", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -3147,7 +3147,7 @@ dependencies = [ "rand", "serde", "serde_json", - "thiserror", + "thiserror 1.0.69", "time", "url", "uuid", @@ -3628,7 +3628,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]] @@ -3642,6 +3651,17 @@ dependencies = [ "syn 2.0.98", ] +[[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.98", +] + [[package]] name = "time" version = "0.3.37" @@ -4454,7 +4474,7 @@ dependencies = [ "nom", "oid-registry", "rusticata-macros", - "thiserror", + "thiserror 1.0.69", "time", ] diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml index e413ad23..7e6bedf5 100644 --- a/crates/common/Cargo.toml +++ b/crates/common/Cargo.toml @@ -10,7 +10,7 @@ async-trait = "0.1.57" reqwest = { version = "0.11.12", features = ["json", "stream"] } serde = { version = "1.0.152", features = ["derive"] } serde_json = "1.0.91" -thiserror = "1.0.31" +thiserror = "2.0.15" exitcode = "1.1.2" toml = "0.5.9" elliptic-curve = { version = "0.13.8", features = ["pkcs8"] } diff --git a/crates/ev-cli/Cargo.toml b/crates/ev-cli/Cargo.toml index 40769274..c3855a76 100644 --- a/crates/ev-cli/Cargo.toml +++ b/crates/ev-cli/Cargo.toml @@ -33,7 +33,7 @@ serde_json = "1.0.116" strum = { version = "0.26.2", features = [ "derive", "strum_macros" ]} strum_macros = "0.26.2" tempfile = "3.10.1" -thiserror = "1.0.59" +thiserror = "2.0.15" tokio = {version = "1.45.0", features = ["rt", "rt-multi-thread", "macros", "fs"]} tokio-util = "0.7.11" toml = "0.5.9" diff --git a/crates/ev-enclave/Cargo.toml b/crates/ev-enclave/Cargo.toml index cff22898..693f9c4f 100644 --- a/crates/ev-enclave/Cargo.toml +++ b/crates/ev-enclave/Cargo.toml @@ -19,7 +19,7 @@ env_logger = "0.9.0" atty = "0.2.14" serde = { version = "1.0.152", features = ["derive"] } serde_json = "1.0.91" -thiserror = "1.0.31" +thiserror = "2.0.15" rcgen = { version = "0.13.2", features = ["pem"] } chrono = "0.4.19" toml = "0.5.9"