From e8d5ab9b8b230b443c2a0bc62664e1a86efa1018 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 04:47:27 +0000 Subject: [PATCH] Update thiserror requirement from 1.0 to 2.0 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.0) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/argmin-math/Cargo.toml | 2 +- crates/argmin/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/argmin-math/Cargo.toml b/crates/argmin-math/Cargo.toml index 56dd441a5..2edc62b3f 100644 --- a/crates/argmin-math/Cargo.toml +++ b/crates/argmin-math/Cargo.toml @@ -38,7 +38,7 @@ num-traits = { version = "0.2" } num-integer = { version = "0.1" } rand = { version = "0.8.3" } anyhow = { version = "1.0" } -thiserror = { version = "1.0" } +thiserror = { version = "2.0" } cfg-if = "1" diff --git a/crates/argmin/Cargo.toml b/crates/argmin/Cargo.toml index f0948cb90..1b6c0545f 100644 --- a/crates/argmin/Cargo.toml +++ b/crates/argmin/Cargo.toml @@ -21,7 +21,7 @@ paste = "1" num-traits = "0.2" rand = "0.8.5" rand_xoshiro = "0.6.0" -thiserror = "1.0" +thiserror = "2.0" argmin-math = { path = "../argmin-math", version = "0.4", default-features = false, features = ["primitives"] } # optional ctrlc = { version = "3.2.4", features = ["termination"], optional = true }