From 6f5c9c2f6caaa8ea00fc483338d52844e3407fb9 Mon Sep 17 00:00:00 2001 From: Denis Cornehl Date: Fri, 12 Dec 2025 00:39:41 +0100 Subject: [PATCH] ignore "unmaintained" warning about rustls-pemfile --- .cargo/audit.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.cargo/audit.toml b/.cargo/audit.toml index 1d0266a94..70c36bb02 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -13,6 +13,9 @@ ignore = [ "RUSTSEC-2025-0057", # fxhash - no longer maintained. Not much we can do about it. # https://github.com/rust-lang/docs.rs/issues/2914 + + "RUSTSEC-2025-0134", # rustls-pemfile is unmaintained + # https://github.com/rust-lang/docs.rs/issues/3070 ] informational_warnings = ["unmaintained"] # warn for categories of informational advisories severity_threshold = "low" # CVSS severity ("none", "low", "medium", "high", "critical")