From cd1a6de72af9e56ca9433a6b47bc4f03b98350ac Mon Sep 17 00:00:00 2001 From: Nextest Bot Date: Sun, 22 Dec 2024 20:50:06 -0800 Subject: [PATCH] Update Rust crate anyhow to 1.0.95 (#367) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [anyhow](https://redirect.github.com/dtolnay/anyhow) | dependencies | patch | `1.0.94` -> `1.0.95` | --- ### Release Notes
dtolnay/anyhow (anyhow) ### [`v1.0.95`](https://redirect.github.com/dtolnay/anyhow/releases/tag/1.0.95) [Compare Source](https://redirect.github.com/dtolnay/anyhow/compare/1.0.94...1.0.95) - Add [`Error::from_boxed`](https://docs.rs/anyhow/1/anyhow/struct.Error.html#method.from_boxed) ([#​401](https://redirect.github.com/dtolnay/anyhow/issues/401), [#​402](https://redirect.github.com/dtolnay/anyhow/issues/402))
--- ### Configuration 📅 **Schedule**: Branch creation - "after 8pm,before 6am" in timezone America/Los_Angeles, Automerge - "after 8pm,before 6am" in timezone America/Los_Angeles. 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). --- Cargo.lock | 4 ++-- internal-tools/cargo-compare/Cargo.toml | 2 +- internal-tools/fixture-manager/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 952a03fcd93..67b5cd550b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -121,9 +121,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.94" +version = "1.0.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1fd03a028ef38ba2276dce7e33fcd6369c158a1bca17946c4b1b701891c1ff7" +checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" [[package]] name = "arc-swap" diff --git a/internal-tools/cargo-compare/Cargo.toml b/internal-tools/cargo-compare/Cargo.toml index 09c70573b8e..048256cc31b 100644 --- a/internal-tools/cargo-compare/Cargo.toml +++ b/internal-tools/cargo-compare/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" publish = false [dependencies] -anyhow = "1.0.94" +anyhow = "1.0.95" cargo = { version = "0.84.0", features = ["vendored-libgit2"] } clap = { version = "3.2.25", features = ["derive"] } color-eyre = { version = "0.6.3", default-features = false } diff --git a/internal-tools/fixture-manager/Cargo.toml b/internal-tools/fixture-manager/Cargo.toml index 99903c97fc6..1686836966d 100644 --- a/internal-tools/fixture-manager/Cargo.toml +++ b/internal-tools/fixture-manager/Cargo.toml @@ -8,7 +8,7 @@ publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.94" +anyhow = "1.0.95" camino = "1.1.9" clap = "2.34.0" guppy = { path = "../../guppy", features = ["proptest1", "summaries"] }