From 219554a851daeba6d71b0882c472519bb206280c Mon Sep 17 00:00:00 2001 From: Denis Cornehl Date: Tue, 23 Jun 2026 06:36:07 +0200 Subject: [PATCH 1/2] update quinn-proto to fix security alert --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ebff455fb..0810f40d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6322,9 +6322,9 @@ dependencies = [ [[package]] name = "quinn-proto" -version = "0.11.14" +version = "0.11.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" +checksum = "4fcb935c5bec503c2f0e306bdd3e58bb9029dcb14fa8d9ac76e3a5256ac0763e" dependencies = [ "aws-lc-rs", "bytes", From d73cbb91b4d261a5a18c63bd820ff45571402d0e Mon Sep 17 00:00:00 2001 From: Denis Cornehl Date: Tue, 23 Jun 2026 06:37:32 +0200 Subject: [PATCH 2/2] ignore "unmaintained" warning for proc-macro-error2 --- .cargo/audit.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.cargo/audit.toml b/.cargo/audit.toml index 28180d662..a4dc1ce74 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -13,6 +13,9 @@ ignore = [ "RUSTSEC-2025-0141", # Bincode is unmaintained # https://github.com/rust-lang/docs.rs/issues/3122 + + "RUSTSEC-2026-0173", # proc-macro-error2 is unmaintained + # https://github.com/rust-lang/docs.rs/issues/3386 ] informational_warnings = ["unmaintained"] # warn for categories of informational advisories severity_threshold = "low" # CVSS severity ("none", "low", "medium", "high", "critical")