We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fcc482 commit a43a174Copy full SHA for a43a174
deny.toml
@@ -6,7 +6,12 @@ vulnerability = "deny"
6
unmaintained = "warn"
7
yanked = "warn"
8
notice = "warn"
9
-ignore = []
+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
+]
15
16
# This section is considered when running `cargo deny check bans`.
17
# More documentation about the 'bans' section can be found here:
0 commit comments