From dfc6f244e22673690074991947ee7b7b208bf53b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 04:16:40 +0000 Subject: [PATCH] Update thiserror requirement from 1.0.20 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.20...2.0.0) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- mendes/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mendes/Cargo.toml b/mendes/Cargo.toml index ea892d2..c8c1126 100644 --- a/mendes/Cargo.toml +++ b/mendes/Cargo.toml @@ -55,7 +55,7 @@ ring = { version = "0.17.0", optional = true } serde = { version = "1.0.104", optional = true } serde_json = { version = "1.0.48", optional = true } serde_urlencoded = { version = "0.7.0", optional = true } -thiserror = { version = "1.0.20" } +thiserror = { version = "2.0.0" } tokio = { version = "1", optional = true } tokio-util = { version = "0.7", optional = true, features = ["codec", "compat", "io"] } tracing = { version = "0.1.26", optional = true }