From a6dd81b3c66862464f1d2347e347b0d614a81a2c Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Mon, 29 Jun 2026 11:28:32 -0400 Subject: [PATCH 1/2] Avoid vulnerability in anyhow --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2f27910..a71c9d2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -69,9 +69,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.102" +version = "1.0.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" +checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3" [[package]] name = "assert_matches" diff --git a/Cargo.toml b/Cargo.toml index 0823aa2..34b20f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ exclude = ["/.*"] [dependencies] anstream = "1.0.0" anstyle = "1.0.7" -anyhow = "1.0.82" +anyhow = "1.0.103" cfgfifo = { version = "0.8.0", default-features = false, features = ["json", "json5", "toml", "yaml"] } clap = { version = "4.5.4", default-features = false, features = ["derive", "error-context", "help", "std", "suggestions", "usage", "wrap_help"] } csscolorparser = { version = "0.8.0", features = ["serde"] } From 77dbd94274c8563f06e5e7fb2ef94fdddcbf92ea Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Mon, 29 Jun 2026 11:29:00 -0400 Subject: [PATCH 2/2] Update THIRDPARTY.toml --- THIRDPARTY.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/THIRDPARTY.toml b/THIRDPARTY.toml index b5dbc95..6d40855 100644 --- a/THIRDPARTY.toml +++ b/THIRDPARTY.toml @@ -1505,7 +1505,7 @@ text = """ [[third_party_libraries]] package_name = "anyhow" -package_version = "1.0.102" +package_version = "1.0.103" repository = "https://github.com/dtolnay/anyhow" license = "MIT OR Apache-2.0"