From d67a7bad393c55d1cea78c698597e1faafd09021 Mon Sep 17 00:00:00 2001 From: Sam <16504129+sagudev@users.noreply.github.com> Date: Fri, 5 Sep 2025 22:55:17 +0200 Subject: [PATCH] cargo: Ignore advisory for deprecated crate 'fxhash' (#39174) Unblock CI, we will do migration slowly (because stylo). Signed-off-by: Sam <16504129+sagudev@users.noreply.github.com> --- deny.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deny.toml b/deny.toml index ef352ab3bd8..0b06beeb27f 100644 --- a/deny.toml +++ b/deny.toml @@ -14,6 +14,8 @@ feature-depth = 1 ignore = [ # The crate `paste` is no longer maintained. "RUSTSEC-2024-0436", + # The crate `fxhash` is no longer maintained. + "RUSTSEC-2025-0057", ] # This section is considered when running `cargo deny check licenses`