From 4262e1189c4ce1f10aed946bb814c4a58478925d Mon Sep 17 00:00:00 2001 From: Denis Cornehl Date: Tue, 2 Apr 2024 08:10:07 +0200 Subject: [PATCH] allow unmaintained yaml-rust --- .cargo/audit.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.cargo/audit.toml b/.cargo/audit.toml index 73bd8d81f..0fd52747c 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -10,6 +10,9 @@ ignore = [ "RUSTSEC-2024-0013", # Memory corruption, denial of service, and arbitrary code execution in libgit2 # https://github.com/rust-lang/docs.rs/issues/2414 + + "RUSTSEC-2024-0320", # yaml-rust is unmaintained. + # https://github.com/rust-lang/docs.rs/issues/2469 ] informational_warnings = ["unmaintained"] # warn for categories of informational advisories severity_threshold = "low" # CVSS severity ("none", "low", "medium", "high", "critical")