From e5d7fb4beb0b19a10c4ea632a31861328baeeba0 Mon Sep 17 00:00:00 2001 From: andriyDev Date: Wed, 11 Dec 2024 09:25:55 -0800 Subject: [PATCH] Ignore the 'instant is unmaintained' advisory. (#16763) # Objective - Hides #16477. ## Solution Add the advisory ID to the list of ignored advisories. The notify-types crate has already been switched to web-time upstream, but it's up to the maintainer to publish the crate. There is nothing for us to do, so better to just ignore it so we don't ignore this CI check anymore (and mistakenly miss new advisories). ## Testing - Tested locally. --- deny.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/deny.toml b/deny.toml index 859d9e5e3ebef..f8114fed1d1a7 100644 --- a/deny.toml +++ b/deny.toml @@ -3,7 +3,10 @@ all-features = true [advisories] version = 2 -ignore = [] +ignore = [ + # TODO: #16477 - Delete this once notify-types has been bumped. + "RUSTSEC-2024-0384", +] [licenses] version = 2