From 64d4cb629a2f67ce9757fabafbc53c5dafed3289 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 10:24:06 +0000 Subject: [PATCH] chore(deps): update thiserror requirement from 1.0 to 2.0 in /physerver 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.18) --- updated-dependencies: - dependency-name: thiserror dependency-version: 2.0.18 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- physerver/Cargo.toml | 2 +- physerver/crates/phycmd-core/Cargo.toml | 2 +- physerver/crates/phycmd-rust/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/physerver/Cargo.toml b/physerver/Cargo.toml index 4ca5250..187f6b5 100644 --- a/physerver/Cargo.toml +++ b/physerver/Cargo.toml @@ -76,7 +76,7 @@ clap = { version = "4.4", features = ["derive"] } # Error handling anyhow = "1.0" -thiserror = "1.0" +thiserror = "2.0" # Utilities crossbeam-channel = "0.5" diff --git a/physerver/crates/phycmd-core/Cargo.toml b/physerver/crates/phycmd-core/Cargo.toml index dc01e56..f586e11 100644 --- a/physerver/crates/phycmd-core/Cargo.toml +++ b/physerver/crates/phycmd-core/Cargo.toml @@ -12,7 +12,7 @@ path = "src/lib.rs" [dependencies] # Protocol / CRC -thiserror = "1.0" +thiserror = "2.0" # Serde for Command/Status wire types (consumed by IPC / HTTP downstream) serde = { version = "1.0", features = ["derive"] } diff --git a/physerver/crates/phycmd-rust/Cargo.toml b/physerver/crates/phycmd-rust/Cargo.toml index 4029f85..5f9a3f8 100644 --- a/physerver/crates/phycmd-rust/Cargo.toml +++ b/physerver/crates/phycmd-rust/Cargo.toml @@ -13,7 +13,7 @@ path = "src/lib.rs" [dependencies] phycmd-core = { path = "../phycmd-core", default-features = false } anyhow = "1.0" -thiserror = "1.0" +thiserror = "2.0" tracing = "0.1" # Re-exported only so that `StatusReceiver = broadcast::Receiver` # can be aliased publicly. Same feature subset as phycmd-core.