From e53164935bce3d3be6f2ddf499eff9a1f70e0dd3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2024 08:53:19 +0000 Subject: [PATCH] chore: Bump thiserror from 1.0.63 to 1.0.64 (#332) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps thiserror from 1.0.63 to 1.0.64. Release notes Sourced from thiserror's releases. 1.0.64 Exclude derived impls from coverage instrumentation (#322, thanks @​oxalica) Commits 84484bc Release 1.0.64 023f036 Merge pull request #322 from oxalica/feat/mark-auto-derived ae1f47e Mark #[automatically_derived] for generated impls ab5b5e3 Upload CI Cargo.lock for reproducing failures 00b3c14 Work around new dead code warning in test See full diff in compare view Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase. Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: @dependabot rebase will rebase this PR @dependabot recreate will recreate this PR, overwriting any edits that have been made to it @dependabot merge will merge this PR after your CI passes on it @dependabot squash and merge will squash and merge this PR after your CI passes on it @dependabot cancel merge will cancel a previously requested merge and block automerging @dependabot reopen will reopen this PR if it is closed @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually @dependabot show ignore conditions will show all of the ignore conditions of the specified dependency @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) --- Cargo.lock | 8 ++++---- fatigue/Cargo.toml | 2 +- libfatigue/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f1ebf4d..95e825b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2298,18 +2298,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.63" +version = "1.0.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" +checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.63" +version = "1.0.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" +checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" dependencies = [ "proc-macro2", "quote", diff --git a/fatigue/Cargo.toml b/fatigue/Cargo.toml index 93f4406..10cd79f 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.210" serde_json = "1.0.128" -thiserror = "1.0.63" +thiserror = "1.0.64" tokio = { version = "1.40.0", features = ["full"] } diff --git a/libfatigue/Cargo.toml b/libfatigue/Cargo.toml index adf46d2..9f2c91b 100644 --- a/libfatigue/Cargo.toml +++ b/libfatigue/Cargo.toml @@ -24,6 +24,6 @@ reqwest = { version = "0.12.7", features = ["json"] } serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0.128" serde_yaml = "0.9.34" -thiserror = "1.0.63" +thiserror = "1.0.64" tokio = { version = "1.40.0", features = ["full"] } url = "2.5.2"