From fa997d63b6e49da219f462115b25bcb947727731 Mon Sep 17 00:00:00 2001 From: Ilka Schulz Date: Tue, 30 Jun 2026 09:51:57 +0200 Subject: [PATCH] upgrade dependency `anyhow` from 1.0.102 to 1.0.103 (fixes UB advisory https://github.com/dtolnay/anyhow/issues/451) --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 46d40c18..be9e62b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -118,9 +118,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 = "ar_archive_writer" diff --git a/Cargo.toml b/Cargo.toml index 2602c74d..39c6a46e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,7 +52,7 @@ clap_mangen = "0.3.0" clap_complete = "4.5.40" serde = { version = "1.0.217", features = ["derive"] } arbitrary = { version = "1.4.1", features = ["derive"] } -anyhow = { version = "1.0.98", features = ["backtrace", "std"] } +anyhow = { version = "1.0", features = ["backtrace", "std"] } mio = { version = "1.0.3", features = ["net", "os-poll"] } signal-hook-mio = { version = "0.3", features = ["support-v1_0"] } signal-hook = "0.4.4"