File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed
Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 3434 run : cargo install cargo-audit --force --locked
3535
3636 - name : Check for audit warnings
37- run : cargo audit -D warnings
37+ run : cargo audit -D warnings --file audit.toml
3838 continue-on-error : true
3939
4040 - name : Check for vulnerabilities
41- run : cargo audit
41+ run : cargo audit --file audit.toml
Original file line number Diff line number Diff line change 1+ [advisories ]
2+ ignore = [
3+ # RUSTSEC-2023-0071 (rsa 0.9.8)
4+ # Pulled in via risc0 / rzup.
5+ # No fixed upgrade available as of now.
6+ # Revisit when risc0 updates its crypto dependencies.
7+ " RUSTSEC-2023-0071" ,
8+
9+ # RUSTSEC-2025-0055 (tracing-subscriber 0.2.25)
10+ # Pulled in via ark-relations.
11+ # Upgrade blocked until upstream bumps tracing-subscriber >= 0.3.20.
12+ # Low risk: affects ANSI escape sequences in logs only.
13+ " RUSTSEC-2025-0055" ,
14+ ]
You can’t perform that action at this time.
0 commit comments