From 5c510dba7e8b18c8592a95550960b31a23d3787d Mon Sep 17 00:00:00 2001 From: Toni Peter Date: Thu, 16 Jan 2025 11:45:43 +0100 Subject: [PATCH] Ignore RUSTSEC-2023-0071 in cargo audit This vulnerability has been around since 2023 and cannot currently be patched. A separate ticket, SC-1217, exists to track this vulnerability. --- rust/.cargo/audit.toml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 rust/.cargo/audit.toml diff --git a/rust/.cargo/audit.toml b/rust/.cargo/audit.toml new file mode 100644 index 000000000..200bcb455 --- /dev/null +++ b/rust/.cargo/audit.toml @@ -0,0 +1,4 @@ +[advisories] +ignore = [ + "RUSTSEC-2023-0071" # This cannot currently be patched. For more information, see: https://rustsec.org/advisories/RUSTSEC-2023-0071 +] \ No newline at end of file