From 2ff5594712a6583a9b40b16efea283b8eec59483 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Nov 2024 11:56:49 +0000 Subject: [PATCH] Update thiserror requirement from 1.0.29 to 2.0.3 (#1637) * Update thiserror requirement from 1.0.29 to 2.0.3 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...1.0.69) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production ... Signed-off-by: dependabot[bot] * exclude thiserror from deny multiple Signed-off-by: clux * really skip thiserror Signed-off-by: clux --------- Signed-off-by: dependabot[bot] Signed-off-by: clux Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Eirik A --- Cargo.toml | 2 +- deny.toml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1aa434508..a103d2d15 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -79,7 +79,7 @@ serde_yaml = "0.9.19" syn = "2.0.38" tame-oauth = "0.10.0" tempfile = "3.1.0" -thiserror = "1.0.29" +thiserror = "2.0.3" tokio = "1.14.0" tokio-test = "0.4.0" tokio-tungstenite = "0.24.0" diff --git a/deny.toml b/deny.toml index 5729ca036..580be6cb1 100644 --- a/deny.toml +++ b/deny.toml @@ -85,3 +85,9 @@ name = "windows-sys" [[bans.skip]] # different sources of miniz_oxide which users will not generally see name = "miniz_oxide" + +# currently multiple version of thiserror in flight due to its major bump +[[bans.skip]] +name = "thiserror" +[[bans.skip]] +name = "thiserror-impl"