From c8a10a18f8a4a67ded3148dafbfcc101c5af3995 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 01:09:58 +0000 Subject: [PATCH 1/3] 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] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 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" From f3de5a808570295c24fad177f376bcc1200c7caf Mon Sep 17 00:00:00 2001 From: clux Date: Tue, 19 Nov 2024 11:45:20 +0000 Subject: [PATCH 2/3] exclude thiserror from deny multiple Signed-off-by: clux --- deny.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deny.toml b/deny.toml index 5729ca036..096578919 100644 --- a/deny.toml +++ b/deny.toml @@ -85,3 +85,7 @@ name = "windows-sys" [[bans.skip]] # different sources of miniz_oxide which users will not generally see name = "miniz_oxide" + +[[bans.skip]] +# currently multiple version of thiserror in flight due to its major bump +name = "thiserror" From dfe2d74e55773f45924323ccecbe53bd9ebfb523 Mon Sep 17 00:00:00 2001 From: clux Date: Tue, 19 Nov 2024 11:46:04 +0000 Subject: [PATCH 3/3] really skip thiserror Signed-off-by: clux --- deny.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deny.toml b/deny.toml index 096578919..580be6cb1 100644 --- a/deny.toml +++ b/deny.toml @@ -86,6 +86,8 @@ name = "windows-sys" # different sources of miniz_oxide which users will not generally see name = "miniz_oxide" -[[bans.skip]] # currently multiple version of thiserror in flight due to its major bump +[[bans.skip]] name = "thiserror" +[[bans.skip]] +name = "thiserror-impl"