Skip to content

Commit d5b4631

Browse files
authored
chore(security): ignore known RustSec advisories pending upstream fixes (#97)
1 parent 56bf29b commit d5b4631

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

.github/workflows/security.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ jobs:
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

audit.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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+
]

0 commit comments

Comments
 (0)