From 4c47e27f931457315ee5723dcd7395c447128963 Mon Sep 17 00:00:00 2001 From: xdustinface Date: Wed, 7 Jan 2026 20:09:46 +0100 Subject: [PATCH] chore: ignore bincode unmaintained advisory `RUSTSEC-2025-0141` --- deny.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deny.toml b/deny.toml index 92b2788e1..6c0d053d7 100644 --- a/deny.toml +++ b/deny.toml @@ -8,6 +8,9 @@ db-urls = ["https://github.com/rustsec/advisory-db"] ignore = [ # serde_cbor is unmaintained but only used in fuzz targets "RUSTSEC-2021-0127", + # bincode is unmaintained but used throughout the codebase, need to find a solution here. + # https://rustsec.org/advisories/RUSTSEC-2025-0141.html + "RUSTSEC-2025-0141", ] [licenses]