Files
goose/deny.toml
Alex Hancock 0a1f773e7d feat(tui): tab expand tool calls cleanly (#8136)
Co-authored-by: Douwe Osinga <douwe@squareup.com>
2026-03-26 21:04:57 -04:00

14 lines
450 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-2023-0071", # rsa: Marvin Attack timing sidechannel (no safe upgrade available, via jsonwebtoken)
]