返回 CodeWhale
audit.toml
根目录 / .cargo / audit.toml
1 # cargo-audit configuration (read by `cargo audit`).
2 #
3 # The advisories below are all "unmaintained" warnings — NOT security
4 # vulnerabilities. Each crate is pulled in transitively only by the `starlark`
5 # 0.13.0 family (starlark / starlark_syntax / starlark_map), which crates/tui
6 # depends on directly for Starlark execpolicy files.
7 # `cargo tree -i <crate>` confirms starlark is the sole path for each.
8 #
9 # There is no fix available without an upstream `starlark` release that drops
10 # these deps, and none is exploitable here. They are accepted for now and
11 # tracked in this file so `cargo audit` stays clean for genuinely new advisories.
12 # Remove an entry once a starlark upgrade/removal drops the transitive dep
13 # (re-check with `cargo tree -i derivative` and `cargo audit`).
14 #
15 # Audit #11, scratchpad/bug-audit-2026-06-24.md.
16 [advisories]
17 ignore = [
18 "RUSTSEC-2024-0388", # derivative 2.2.0 unmaintained — transitive via starlark 0.13.0
19 "RUSTSEC-2025-0057", # fxhash 0.2.1 unmaintained — transitive via starlark_map 0.13.0
20 "RUSTSEC-2024-0436", # paste 1.0.15 unmaintained — transitive via starlark 0.13.0
21 ]
22
22 lines TOML