From 17444b92d3624ab5d5e2bab15c3c31f4074e97db Mon Sep 17 00:00:00 2001 From: "Brian L. Troutwine" Date: Thu, 8 Sep 2022 09:08:11 -0700 Subject: [PATCH] Ignore RUSTSEC-2021-0139 (#285) We're currently being dinged by the above RUSTSEC, REF https://github.com/tokio-rs/tracing/issues/2282. It looks like tracing will update itself soon but meanwhile `ansi_term` being unmaintained is not a terrible problem for lading. Signed-off-by: Brian L. Troutwine --- deny.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/deny.toml b/deny.toml index 159291cbf..e115a7b43 100644 --- a/deny.toml +++ b/deny.toml @@ -21,6 +21,7 @@ vulnerability = "deny" unmaintained = "deny" notice = "deny" unsound = "deny" +ignore = [ "RUSTSEC-2021-0139" ] [bans] multiple-versions = "allow" \ No newline at end of file