From 0312695b2c359b32651d7bd0a5c4172e9ce45bcb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 08:24:16 +0000 Subject: [PATCH] chore: Bump thiserror from 1.0.68 to 2.0.0 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.68 to 2.0.0. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.68...2.0.0) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 30 +++++++++++++++++++++++++----- fatigue/Cargo.toml | 2 +- libfatigue/Cargo.toml | 2 +- 3 files changed, 27 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 89881c1..39b040e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -525,7 +525,7 @@ dependencies = [ "prettytable-rs", "serde", "serde_json", - "thiserror", + "thiserror 2.0.0", "tokio", ] @@ -1248,7 +1248,7 @@ dependencies = [ "serde", "serde_json", "serde_yaml", - "thiserror", + "thiserror 2.0.0", "tokio", "url", ] @@ -1600,7 +1600,7 @@ version = "2.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ab62d2fa33726dbe6321cc97ef96d8cde531e3eeaf858a058de53a8a6d40d8f" dependencies = [ - "thiserror", + "thiserror 1.0.68", "ucd-trie", ] @@ -1809,7 +1809,7 @@ checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" dependencies = [ "getrandom", "redox_syscall", - "thiserror", + "thiserror 1.0.68", ] [[package]] @@ -2465,7 +2465,16 @@ version = "1.0.68" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "02dd99dc800bbb97186339685293e1cc5d9df1f8fae2d0aecd9ff1c77efea892" dependencies = [ - "thiserror-impl", + "thiserror-impl 1.0.68", +] + +[[package]] +name = "thiserror" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15291287e9bff1bc6f9ff3409ed9af665bec7a5fc8ac079ea96be07bca0e2668" +dependencies = [ + "thiserror-impl 2.0.0", ] [[package]] @@ -2479,6 +2488,17 @@ dependencies = [ "syn 2.0.87", ] +[[package]] +name = "thiserror-impl" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22efd00f33f93fa62848a7cab956c3d38c8d43095efda1decfc2b3a5dc0b8972" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.87", +] + [[package]] name = "thread_local" version = "1.1.4" diff --git a/fatigue/Cargo.toml b/fatigue/Cargo.toml index 585be9c..71bba53 100644 --- a/fatigue/Cargo.toml +++ b/fatigue/Cargo.toml @@ -22,5 +22,5 @@ num-format = "0.4.4" prettytable-rs = "0.10.0" serde = "1.0.214" serde_json = "1.0.132" -thiserror = "1.0.68" +thiserror = "2.0.0" tokio = { version = "1.41.0", features = ["full"] } diff --git a/libfatigue/Cargo.toml b/libfatigue/Cargo.toml index d1d588f..d03eadf 100644 --- a/libfatigue/Cargo.toml +++ b/libfatigue/Cargo.toml @@ -24,6 +24,6 @@ reqwest = { version = "0.12.9", features = ["json"] } serde = { version = "1.0.214", features = ["derive"] } serde_json = "1.0.132" serde_yaml = "0.9.34" -thiserror = "1.0.68" +thiserror = "2.0.0" tokio = { version = "1.41.0", features = ["full"] } url = "2.5.3"