Skip to content

Commit a43a174

Browse files
authored
Ignore tar vulnerability (#708)
1 parent 9fcc482 commit a43a174

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

deny.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ vulnerability = "deny"
66
unmaintained = "warn"
77
yanked = "warn"
88
notice = "warn"
9-
ignore = []
9+
ignore = [
10+
# The tar crate allows creating directories outside dst when unpacking.
11+
# Safe to ignore: we both create/control all input tar files, and we do not unpack them.
12+
# https://github.com/alexcrichton/tar-rs/issues/238
13+
"RUSTSEC-2021-0080",
14+
]
1015

1116
# This section is considered when running `cargo deny check bans`.
1217
# More documentation about the 'bans' section can be found here:

0 commit comments

Comments
 (0)