Skip to content
Open
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
7 changes: 6 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ ignore = [
# Paste is no longer maintained because its essentially "finished".
"RUSTSEC-2024-0436",
# proc-macro-error-2 is unmaintained, only used by the `test_with` test dependency
"RUSTSEC-2026-0173"
"RUSTSEC-2026-0173",
# Out-of-bounds read in `nth`/`nth_back` on pyo3 list/tuple iterators, fixed only in pyo3
# 0.29.0. We cannot bump until pyo3-bytes, pyo3-log, and pyo3-object_store support 0.29 (all
# pin pyo3 to <0.29, and pyo3-ffi `links = "python"` forbids two pyo3 versions in the graph).
# Not exploitable here: `vortex-python` never calls `nth`/`nth_back` on these iterators.
"RUSTSEC-2026-0176"
]

[licenses]
Expand Down
Loading