From 9d8fa388e36df52c570f80ece0a888da00551ae8 Mon Sep 17 00:00:00 2001 From: khyperia Date: Mon, 9 Aug 2021 10:36:25 +0200 Subject: [PATCH] Ignore tar vulnerability --- deny.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/deny.toml b/deny.toml index 3550422395..101e52db3f 100644 --- a/deny.toml +++ b/deny.toml @@ -6,7 +6,12 @@ vulnerability = "deny" unmaintained = "warn" yanked = "warn" notice = "warn" -ignore = [] +ignore = [ + # The tar crate allows creating directories outside dst when unpacking. + # Safe to ignore: we both create/control all input tar files, and we do not unpack them. + # https://github.com/alexcrichton/tar-rs/issues/238 + "RUSTSEC-2021-0080", +] # This section is considered when running `cargo deny check bans`. # More documentation about the 'bans' section can be found here: