From 9acd6497421ecb06c790bc71b51ff996fdb53fed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Fri, 28 Mar 2025 16:48:22 +0100 Subject: [PATCH] chore: Remove the RSA security advisory from our deny config Since we don't depend on mas anymore, we don't depend on RSA either. Let's remove the exception, lest we reintroduce the dependency and security issue. --- .deny.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/.deny.toml b/.deny.toml index f33c7b74c..95dd84e29 100644 --- a/.deny.toml +++ b/.deny.toml @@ -9,7 +9,6 @@ exclude = [ [advisories] version = 2 ignore = [ - { id = "RUSTSEC-2023-0071", reason = "We are not using RSA directly, nor do we depend on the RSA crate directly" }, { id = "RUSTSEC-2024-0436", reason = "Unmaintained paste crate, not critical." }, { id = "RUSTSEC-2024-0384", reason = "Unmaintained backoff crate, not critical. We'll migrate soon." }, { id = "RUSTSEC-2025-0012", reason = "Unmaintained backoff crate, not critical. We'll migrate soon." },