Skip to content
Merged
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
8 changes: 8 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ db-urls = ["https://github.com/rustsec/advisory-db"]
ignore = [
"RUSTSEC-2024-0436", # paste unmaintained (dev-only: xcap -> image -> rav1e)
"RUSTSEC-2026-0192", # ttf-parser unmaintained (transitive: cosmic-text/fontdb/rustybuzz + winit sctk-adwaita); no replacement adopted upstream
# quick-xml < 0.41.0 DoS advisories (quadratic attribute check + unbounded NsReader
# namespace allocation). Only reachable when parsing untrusted XML; both paths here
# parse trusted, crate-bundled protocol definitions at build time: wayland-scanner
# (^0.39, pinned via winit 0.30.x) generates code from Wayland protocol XML, and xcb
# (dev-only build-dep via xcap) parses the X11 protocol XML. No untrusted runtime
# input, and no upgrade is available without replacing the winit-pinned wayland stack.
"RUSTSEC-2026-0194", # quick-xml quadratic attribute-check DoS (build-time codegen: wayland-scanner + dev-only xcb)
"RUSTSEC-2026-0195", # quick-xml NsReader memory-exhaustion DoS (build-time codegen: wayland-scanner + dev-only xcb)
]

[licenses]
Expand Down
Loading