From 6adb4bcb72852e4e6237ff07b9ab36dcca5d3d9b Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Thu, 5 Sep 2024 21:42:59 +0200 Subject: [PATCH] chore: ignore proc-macro-error 1.0.4 advisory (#10727) --- deny.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/deny.toml b/deny.toml index 66ae45bec..e58234602 100644 --- a/deny.toml +++ b/deny.toml @@ -2,8 +2,11 @@ # More documentation for the advisories section can be found here: # https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html [advisories] -version = 2 yanked = "warn" +ignore = [ + # proc-macro-error 1.0.4 unmaintained https://rustsec.org/advisories/RUSTSEC-2024-0370 + "RUSTSEC-2024-0370" +] # This section is considered when running `cargo deny check bans`. # More documentation about the 'bans' section can be found here: