Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .cargo/audit.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,19 @@ ignore = [
"RUSTSEC-2025-0141", # bincode: transitive, widely used
"RUSTSEC-2026-0002", # lru 0.12.5: transitive via ratatui

# wasmtime 27.0.0 — test-only dep (aprender-test-lib), not in production path
# atty 0.2.14 — transitive via aprender-test-cli, unmaintained
"RUSTSEC-2021-0145",

# wasmtime 27.0.0 — test-only dep (aprender-test-lib), not in production path.
# Upgrade to wasmtime >=43 tracked but requires API migration.
"RUSTSEC-2025-0046",
"RUSTSEC-2025-0118",
"RUSTSEC-2026-0020",
"RUSTSEC-2026-0021",
"RUSTSEC-2026-0087",
"RUSTSEC-2026-0088",
"RUSTSEC-2026-0089",
"RUSTSEC-2026-0092",
"RUSTSEC-2026-0095",
"RUSTSEC-2026-0096",
]
7 changes: 7 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ ignore = [
{ id = "RUSTSEC-2025-0046", reason = "wasmtime: test-only dep (aprender-test-lib), not production" },
{ id = "RUSTSEC-2026-0020", reason = "wasmtime: test-only dep (aprender-test-lib), not production" },
{ id = "RUSTSEC-2026-0087", reason = "wasmtime: test-only dep (aprender-test-lib), not production" },
{ id = "RUSTSEC-2026-0088", reason = "wasmtime: test-only dep (aprender-test-lib), not production" },
{ id = "RUSTSEC-2026-0089", reason = "wasmtime: test-only dep (aprender-test-lib), not production" },
{ id = "RUSTSEC-2026-0092", reason = "wasmtime: test-only dep (aprender-test-lib), not production" },
{ id = "RUSTSEC-2026-0095", reason = "wasmtime: test-only dep (aprender-test-lib), not production" },
{ id = "RUSTSEC-2026-0096", reason = "wasmtime: test-only dep (aprender-test-lib), not production" },
# atty 0.2.14 — unmaintained, transitive via aprender-test-cli
{ id = "RUSTSEC-2021-0145", reason = "atty: unmaintained transitive dep (aprender-test-cli)" },
]

[licenses]
Expand Down
Loading