From 018b70da7ea14937d7135f06bf0b1b044d9fa467 Mon Sep 17 00:00:00 2001 From: Paul Iatchenii Date: Fri, 3 Jan 2025 04:28:28 -0800 Subject: [PATCH] upgrade anyhow: 1.0.86 -> 1.0.95 Summary: Mainly due to the need to have [`Error::from_boxed`](https://docs.rs/anyhow/1.0.95/anyhow/struct.Error.html#method.from_boxed) and stop using less ergonomic alternatives. Thankfully, this API comes in the latest [1.0.95](https://github.com/dtolnay/anyhow/releases/tag/1.0.95) Reviewed By: dtolnay Differential Revision: D67775008 fbshipit-source-id: b9c0d3ff169dbb69d4c8b96e378334b37d200fd2 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index af2addf6..caae5c8f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -100,9 +100,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.86" +version = "1.0.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" +checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" [[package]] name = "arbitrary" diff --git a/Cargo.toml b/Cargo.toml index ef484830..f25e3577 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/facebookincubator/reindeer" license = "MIT" [dependencies] -anyhow = "1.0.86" +anyhow = "1.0.95" cached = "0.39.0" cargo_toml = "0.20.5" clap = { version = "4.5.20", features = ["derive", "env", "string", "unicode", "wrap_help"] }