From d4d9c5c0707842af4558ef40a6dae01d0bada0d8 Mon Sep 17 00:00:00 2001 From: wdhwg001 <8943519+wdhwg001@users.noreply.github.com> Date: Wed, 31 Aug 2022 18:18:46 +0800 Subject: [PATCH] ci: ignore RUSTSEC-2021-0139 (ansi_term is unmaintained) (#309) --- deny.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deny.toml b/deny.toml index 64ff9ffe..b53ee448 100644 --- a/deny.toml +++ b/deny.toml @@ -3,7 +3,9 @@ vulnerability = "deny" unmaintained = "deny" yanked = "deny" notice = "deny" -ignore = [] +ignore = [ + "RUSTSEC-2021-0139", # ansi_term (used by bevy_log) is unmaintained: https://github.com/ogham/rust-ansi-term/issues/72 +] [licenses] default = "deny"