From 7787c10f0b56f0ff7a710bf4c2323def30a062e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dawid=20Ci=C4=99=C5=BCarkiewicz?= Date: Thu, 5 Dec 2024 13:30:10 -0800 Subject: [PATCH] fix: ignore RUSTSEC-2024-0402 which we don't care about --- .cargo/audit.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.cargo/audit.toml b/.cargo/audit.toml index cdb612d6ac6..91ab3df9ef5 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -9,4 +9,9 @@ # # See the full example in: https://raw.githubusercontent.com/rustsec/rustsec/main/cargo-audit/audit.toml.example [advisories] -ignore = ["RUSTSEC-2023-0052", "RUSTSEC-2023-0071"] +ignore = [ + "RUSTSEC-2023-0052", + "RUSTSEC-2023-0071", + # we don't use borsch encoding + "RUSTSEC-2024-0402" +]