From 31c9fb690a2fbed32eafb54ce8f2de95b515a4ee Mon Sep 17 00:00:00 2001 From: "Brian L. Troutwine" Date: Mon, 11 Nov 2024 18:14:48 -0800 Subject: [PATCH] Ignore unmaintained errors There's really nothing we can do in the short-term about these unmaintained cargo-deny errors other than keep our dependency tree updated. Signed-off-by: Brian L. Troutwine --- deny.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/deny.toml b/deny.toml index f74c3bf2a..9f8596212 100644 --- a/deny.toml +++ b/deny.toml @@ -16,14 +16,13 @@ unused-allowed-license = "allow" [sources] unknown-git = "deny" -allow-git = ["http://github.com/metrics-rs/metrics"] [advisories] version = 2 ignore = [ - # atty is unsound for some custom allocators on Windows and is unmaintained - "RUSTSEC-2021-0145", - "RUSTSEC-2024-0370" # proc-macro-error is unmaintained + "RUSTSEC-2024-0370", # proc-macro-error is unmaintained + "RUSTSEC-2024-0384", # instant crate is unmaintained + "RUSTSEC-2024-0387" # opentelemetry_api is unmaintained ] [bans]