File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22# See: https://github.com/rustsec/rustsec/blob/main/cargo-audit/audit.toml.example
33
44[advisories ]
5- # Advisories to ignore (transitive dependencies we can't fix)
6- ignore = []
5+ # Advisories to ignore (transitive dependencies we can't fix in the current
6+ # embedded and CLI dependency graph). These are tracked upstream and have no
7+ # viable replacement in the workspace today.
8+ ignore = [
9+ " RUSTSEC-2023-0071" , # rsa timing sidechannel via embedded-tls; no fixed upgrade available
10+ " RUSTSEC-2026-0110" , # bare-metal deprecated via cortex-m (embedded-only transitive)
11+ " RUSTSEC-2026-0173" , # proc-macro-error2 unmaintained (transitive via defmt/tabled_derive)
12+ ]
Original file line number Diff line number Diff line change @@ -22,9 +22,10 @@ wildcards = "allow"
2222[advisories ]
2323version = 2
2424yanked = " warn"
25- # bare-metal is archived/deprecated and pulled transitively by cortex-m in the
26- # embedded stack; there is currently no drop-in replacement at this depth .
25+ # These transitive advisories are accepted for the current workspace because the
26+ # upstream dependency chain has no viable replacement path at the moment .
2727ignore = [
28+ " RUSTSEC-2023-0071" , # rsa timing sidechannel via embedded-tls; no fixed upgrade available
2829 " RUSTSEC-2026-0110" , # bare-metal deprecated via cortex-m (embedded-only transitive)
2930 " RUSTSEC-2026-0173" , # TEMP: proc-macro-error2 unmaintained (transitive via defmt-macros/tabled_derive)
3031]
You can’t perform that action at this time.
0 commit comments