From 126879d76363883b81b9215951892227102b0830 Mon Sep 17 00:00:00 2001 From: Denis Cornehl Date: Sun, 11 Feb 2024 09:50:33 +0100 Subject: [PATCH] ignore security alert for libgit2 --- .cargo/audit.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.cargo/audit.toml b/.cargo/audit.toml index 3ed1d66ae..73bd8d81f 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -7,6 +7,9 @@ ignore = [ # https://github.com/rust-lang/docs.rs/issues/2074 "RUSTSEC-2023-0071", # potential key recovery through timing sidechannels + + "RUSTSEC-2024-0013", # Memory corruption, denial of service, and arbitrary code execution in libgit2 + # https://github.com/rust-lang/docs.rs/issues/2414 ] informational_warnings = ["unmaintained"] # warn for categories of informational advisories severity_threshold = "low" # CVSS severity ("none", "low", "medium", "high", "critical")