14 lines
399 B
TOML
14 lines
399 B
TOML
[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 proc-macro-error unmaintained warning
|
|
# See: https://github.com/block/goose/issues/7008
|
|
ignore = [
|
|
"RUSTSEC-2024-0370", # proc-macro-error is unmaintained
|
|
]
|