From 06a5084df32584a8f55d08c2b0601a5be8168de8 Mon Sep 17 00:00:00 2001 From: Andy Leiserson Date: Tue, 21 Oct 2025 17:24:42 -0400 Subject: [PATCH] [build] Waive cargo deny for unmaintained `unic-*` crates (#8394) Related to #8393. --- .deny.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.deny.toml b/.deny.toml index e3d685a58..af5635c22 100644 --- a/.deny.toml +++ b/.deny.toml @@ -36,6 +36,13 @@ ignore = [ # It's a dependency of `metal` (which is to be replaced with `objc2-metal`), and a # transitive dependency of `deno`. https://github.com/gfx-rs/wgpu/issues/7873 "RUSTSEC-2024-0436", + # `unic-*` crates are no longer maintained https://rustsec.org/advisories/RUSTSEC-2025-0100 + # These are used via `deno`. https://github.com/gfx-rs/wgpu/issues/8393 + "RUSTSEC-2025-0075", + "RUSTSEC-2025-0080", + "RUSTSEC-2025-0081", + "RUSTSEC-2025-0098", + "RUSTSEC-2025-0100", ] [licenses]