forked from aaif-goose/goose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
19 lines (16 loc) · 688 Bytes
/
Copy pathdeny.toml
File metadata and controls
19 lines (16 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[advisories]
# Deny yanked crates to catch supply chain issues early.
yanked = "deny"
# Emulate cargo-audit which only checks vulnerabilities and yanked crates, not unmaintained/unsound.
unmaintained = "none"
unsound = "none"
ignore = [
# rsa: Marvin Attack timing sidechannel. No safe upgrade is available, and
# the reachable path is through jsonwebtoken.
"RUSTSEC-2023-0071",
# quick-xml: duplicate-attribute and namespace-declaration allocation issues.
# Current paths are through docx-rs, umya-spreadsheet, and bat/plist, and their
# latest releases do not yet expose a quick-xml >= 0.41.0 upgrade path.
"RUSTSEC-2026-0194",
"RUSTSEC-2026-0195",
]