From 5da2107c2d81a69d80f0439313c4439b6eaafab6 Mon Sep 17 00:00:00 2001 From: Gowtham Suresh Kumar Date: Thu, 30 Nov 2023 14:21:33 +0000 Subject: [PATCH] audit.toml: Add Marvin Attack from rsa crate to ignore list The rsa crate is only used for testing purpose and the security vulnerability has no impact on this crate. Signed-off-by: Gowtham Suresh Kumar --- .cargo/audit.toml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .cargo/audit.toml diff --git a/.cargo/audit.toml b/.cargo/audit.toml new file mode 100644 index 0000000..0fd1121 --- /dev/null +++ b/.cargo/audit.toml @@ -0,0 +1,4 @@ +[advisories] +ignore = [ + "RUSTSEC-2023-0071", # `rsa` Marvin Attack not concerning as `rsa` is only used for tests +]