Skip to content

Commit a854ccb

Browse files
authored
Merge pull request #2898 from tnull/2024-02-ignore-RUSTSEC-2021-0145
Have CI's `cargo audit` ignore `RUSTSEC-2021-0125`
2 parents cd84757 + 9aa6ddb commit a854ccb

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/audit.yml

+6
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,9 @@ jobs:
1515
- uses: rustsec/[email protected]
1616
with:
1717
token: ${{ secrets.GITHUB_TOKEN }}
18+
ignore: "RUSTSEC-2021-0145"
19+
# RUSTSEC-2021-0145 pertains `atty`, which is a depencency of
20+
# `criterion`. While the latter removed the depencency in its
21+
# newest version, it would also require a higher `rustc`. We
22+
# therefore avoid bumping it to allow benchmarking with our
23+
# `rustc` 1.63 MSRV.

0 commit comments

Comments
 (0)