Skip to content

Commit 2580d45

Browse files
add a new criterion advisory to ignore list
As part of this commit I also restructured a bit the comments of audit.toml such that they ar per advisory, and not as a top level comment for the ignore list. Signed-off-by: Andreea Florescu <[email protected]>
1 parent 5e34fce commit 2580d45

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

.cargo/audit.toml

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
[advisories]
2-
# serde_cbor is an unmaintained dependency introduced by criterion.
3-
# We are using criterion only for benchmarks, so we can ignore
4-
# this vulnerability until criterion is fixing this.
5-
# See https://github.com/bheisler/criterion.rs/issues/534.
6-
ignore = [ "RUSTSEC-2021-0127" ]
2+
ignore = [
3+
# serde_cbor is an unmaintained dependency introduced by criterion.
4+
# We are using criterion only for benchmarks, so we can ignore
5+
# this vulnerability until criterion is fixing this.
6+
# See https://github.com/bheisler/criterion.rs/issues/534.
7+
"RUSTSEC-2021-0127",
8+
# atty is unmaintained (the unsound problem doesn't seem to impact us).
9+
# We are ignoring this advisory because it's only used by criterion,
10+
# and we are using criterion for benchmarks. This is not a problem for
11+
# production use cases. Also, criterion did not update the dependency,
12+
# so there is not much else we can do.
13+
"RUSTSEC-2021-0145"
14+
]

0 commit comments

Comments
 (0)