From 88fb4851a419ec001afbe23065ca61b26c0b7de6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20P=C3=A4=C3=9Fler?= <m.paessler@opentalk.eu> Date: Mon, 24 Mar 2025 08:59:52 +0100 Subject: [PATCH] fix(deps): added advisory for unmaintained paste crate (cherry picked from commit efbaf3cdb36054d4c847b8348f95b3367040a1a6) --- deny.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/deny.toml b/deny.toml index a93c85c..8e9aa0b 100644 --- a/deny.toml +++ b/deny.toml @@ -40,7 +40,13 @@ db-urls = ["https://github.com/rustsec/advisory-db"] yanked = "deny" # A list of advisory IDs to ignore. Note that ignored advisories will still # output a note when they are encountered. -ignore = ["RUSTSEC-2023-0071"] +ignore = [ + "RUSTSEC-2023-0071", + # This is an advisory for the 'paste' crate, which is no longer maintained + # Since this is a dependency for gstreamer, we can't really do anything + # against it, but wait for a new gstreamer release. + "RUSTSEC-2024-0436" +] # Threshold for security vulnerabilities, any vulnerability with a CVSS score # lower than the range specified will be ignored. Note that ignored advisories # will still output a note when they are encountered. -- GitLab