From 79741da2596e1ab151aed4844397c4c84598cf7b Mon Sep 17 00:00:00 2001 From: Andreas Reich Date: Sat, 8 Mar 2025 19:44:43 +0100 Subject: [PATCH] Add exception for `RUSTSEC-2024-0436` (`paste` being unmaintained) (#7301) --- .deny.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.deny.toml b/.deny.toml index 8c22a2d1a..77a3a58fa 100644 --- a/.deny.toml +++ b/.deny.toml @@ -26,6 +26,11 @@ skip = [ wildcards = "deny" allow-wildcard-paths = true +[advisories] +# `paste` crate is no longer maintained https://rustsec.org/advisories/RUSTSEC-2024-0436 +# It's a dependency of `metal` (which is to be replaced with `objc2`) and a transitive dependency of `deno`. +ignore = ["RUSTSEC-2024-0436"] + [licenses] allow = [ "Apache-2.0",