From ae8d1856395f4541d88f5b5a40c5450055455ed2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Nov 2024 20:33:09 +0000 Subject: [PATCH] chore(deps): update thiserror requirement from 1 to 2 Updates the requirements on [thiserror](https://github.com/dtolnay/thiserror) to permit the latest version. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.0...2.0.3) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- beam-lib/Cargo.toml | 2 +- broker/Cargo.toml | 2 +- shared/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/beam-lib/Cargo.toml b/beam-lib/Cargo.toml index 3d82262c..bb1348d6 100644 --- a/beam-lib/Cargo.toml +++ b/beam-lib/Cargo.toml @@ -10,7 +10,7 @@ serde = { version = "1", features = ["derive"] } serde_json = "1" uuid = { version = "1", features = ["v4", "serde"] } reqwest = { version = "0.12", features = ["json"], default-features = false, optional = true } -thiserror = { version = "1.0", optional = true } +thiserror = { version = "2.0", optional = true } [features] strict-ids = [] diff --git a/broker/Cargo.toml b/broker/Cargo.toml index b8ebf746..5fd6554e 100644 --- a/broker/Cargo.toml +++ b/broker/Cargo.toml @@ -19,7 +19,7 @@ axum = { version = "0.7", features = [ "query" ] } dashmap = "6.0" anyhow = "1" -thiserror = "1" +thiserror = "2" # Subscriber is setup through shared tracing = "0.1" diff --git a/shared/Cargo.toml b/shared/Cargo.toml index 1d9caa4e..a92a1864 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -40,7 +40,7 @@ jwt-simple = "0.11" once_cell = "1" # Error handling -thiserror = "1" +thiserror = "2" # Command Line Interface clap = { version = "4", features = ["env", "derive"] }