From ffc0b67d4f416f47713c54e564ff56ee4c554c3f Mon Sep 17 00:00:00 2001 From: Ameer Ghani Date: Fri, 22 Nov 2024 15:12:54 -0600 Subject: [PATCH] cargo-deny: ignore instant and derivative unmaintained warnings --- deny.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/deny.toml b/deny.toml index 28ae324fc..685ec6c11 100644 --- a/deny.toml +++ b/deny.toml @@ -7,6 +7,15 @@ all-features = true [advisories] version = 2 +ignore = [ + # `instant` is unmaintained, but it is feature-complete and small, so it is unlikely to have + # bugs or security vulnerabilities. + "RUSTSEC-2024-0384", + + # Use of `derivative` has been removed from production code. It still exists as transitive + # dependency on integration_tests. + "RUSTSEC-2024-0388" +] [bans] multiple-versions = "allow"