Skip to content

Commit f34f4f8

Browse files
author
Senior Engineer
committed
fix(ci): ignore transitive unmaintained audit warnings
cargo audit --deny warnings flags unmaintained crates pulled in via soroban (derivative, paste). Ignore the specific RUSTSEC notices until upstream bumps land. Made-with: Cursor
1 parent a8e90e1 commit f34f4f8

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/rust-security.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ jobs:
3636
id: audit
3737
run: |
3838
cargo audit --deny warnings \
39-
--ignore RUSTSEC-2026-0097
39+
--ignore RUSTSEC-2026-0097 \
40+
--ignore RUSTSEC-2024-0388 \
41+
--ignore RUSTSEC-2024-0436
4042
4143
- name: Run cargo-clippy (linting)
4244
run: cargo clippy --all-targets --all-features -- -D warnings

0 commit comments

Comments
 (0)