From 8cbb634e61b072c732080339889b2203b2842868 Mon Sep 17 00:00:00 2001 From: Denis Cornehl Date: Sat, 22 Feb 2025 11:05:13 +0100 Subject: [PATCH] add `proc-macro-error` to ignored audit warnings --- .cargo/audit.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.cargo/audit.toml b/.cargo/audit.toml index 136881a20..88d3eb0c2 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -18,6 +18,9 @@ ignore = [ # But in all these places, the user content is part of the path of the URL. # Since URL length is limited by cloudfront, and also by nginx, to something much smaller than 4 GiB, I don't think this issue affects us. + "RUSTSEC-2024-0370", # proc-macro-error is unmaintained + # https://github.com/rust-lang/docs.rs/issues/2595 + "RUSTSEC-2025-0007", # `ring` is unmaintained. Not much we can do about it. # https://github.com/rust-lang/docs.rs/issues/2741 ]