add ignore for another CVE

This commit is contained in:
extrawurst 2026-01-10 12:28:23 -05:00
parent 68ca5701f1
commit 450caed840
2 changed files with 4 additions and 2 deletions

View file

@ -94,7 +94,7 @@ clippy:
clippy-nightly:
cargo +nightly clippy --workspace --all-features
check: fmt clippy test sort
check: fmt clippy test sort deny
check-nightly:
cargo +nightly c

View file

@ -20,7 +20,9 @@ ignore = [
# Crate paste is unmaintained. The dependency is already removed in
# ratatui:master. Until a new release is available, ignore this in
# order to pass CI. (https://github.com/gitui-org/gitui/issues/2554)
{ id = "RUSTSEC-2024-0436", reason = "The paste dependency is already removed from ratatui." }
{ id = "RUSTSEC-2024-0436", reason = "The paste dependency is already removed from ratatui." },
# See https://github.com/trishume/syntect/issues/606
{ id = "RUSTSEC-2025-0141", reason = "Only brought in via syntect" },
]
[bans]