Skip to content

Commit e327dec

Browse files
.cargo/audit.toml: fix audit (#1191)
Remove legacy ignores and add new ones to fix the build
1 parent 84375ff commit e327dec

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.cargo/audit.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
[advisories]
44
ignore = [
5-
"RUSTSEC-2020-0036", # failure
6-
"RUSTSEC-2020-0071", # time
7-
"RUSTSEC-2020-0159", # chrono
8-
"RUSTSEC-2021-0073", # prost-type
5+
"RUSTSEC-2023-0052", # webpki
6+
"RUSTSEC-2024-0336", # rustls
97
] # advisory IDs to ignore e.g. ["RUSTSEC-2019-0001", ...]

.github/workflows/security_audit.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
name: Security Audit
22
on:
33
pull_request:
4-
paths: Cargo.lock
4+
paths:
5+
- Cargo.lock
6+
- .cargo/audit.toml
57
push:
68
branches: main
7-
paths: Cargo.lock
9+
paths:
10+
- Cargo.lock
811
schedule:
912
- cron: "0 0 * * *"
1013

0 commit comments

Comments
 (0)