From 15c3b42750a5fe1af60c09483ffb915d079816e9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 07:03:25 +0000 Subject: [PATCH] build(deps): update thiserror requirement from 1.0.29 to 2.0.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.29...2.0.0) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- frost-core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frost-core/Cargo.toml b/frost-core/Cargo.toml index 5b1ab2e8..e68d0649 100644 --- a/frost-core/Cargo.toml +++ b/frost-core/Cargo.toml @@ -33,7 +33,7 @@ rand_core = { version = "0.6", default-features = false } serde = { version = "1.0.160", default-features = false, features = ["derive"], optional = true } serdect = { version = "0.2.0", optional = true } thiserror-nostd-notrait = { version = "1.0.29", default-features = false } -thiserror = { version = "1.0.29", default-features = false, optional = true } +thiserror = { version = "2.0.0", default-features = false, optional = true } visibility = "0.1.0" zeroize = { version = "1.5.4", default-features = false, features = ["derive"] } itertools = { version = "0.13.0", default-features = false }