From 3e31fe8663b642f454e7a96966cd54b2e9bae3e0 Mon Sep 17 00:00:00 2001 From: Shella Stephens Date: Wed, 6 Dec 2023 08:49:24 -0700 Subject: [PATCH] .cargo/audit.toml: ignore RUSTSEC-2023-0071 (#541) --- .cargo/audit.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/.cargo/audit.toml b/.cargo/audit.toml index cb6e0b3..154e501 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -2,4 +2,5 @@ ignore = [ "RUSTSEC-2020-0071", # chrono "RUSTSEC-2021-0145", # atty + "RUSTSEC-2023-0071", # rsa: Marvin Attack: potential key recovery ] # advisory IDs to ignore e.g. ["RUSTSEC-2019-0001", ...]