From a9ea0973772688466fdb452eb21d3d92457d06f2 Mon Sep 17 00:00:00 2001 From: Manuel Raimann Date: Wed, 11 Feb 2026 19:23:31 +0100 Subject: [PATCH] chore: add advisory ignore for unmaintained transitive dependency --- deny.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/deny.toml b/deny.toml index 44afe1a..8d82afe 100644 --- a/deny.toml +++ b/deny.toml @@ -1,7 +1,11 @@ [advisories] version = 2 db-path = "~/.cargo/advisory-db" -ignore = [] +ignore = [ + # paste is unmaintained but it's a transitive dep via simba -> nalgebra + # with no fix available upstream yet + "RUSTSEC-2024-0436", +] [licenses] version = 2 @@ -9,7 +13,6 @@ allow = [ "MIT", "Apache-2.0", "Apache-2.0 WITH LLVM-exception", - "BSD-2-Clause", "Unicode-3.0", ] confidence-threshold = 0.8