Skip to content

Commit 258839b

Browse files
committed
ignore pyo3 rustsec
Signed-off-by: Connor Tsui <connor.tsui20@gmail.com>
1 parent 009b119 commit 258839b

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ proc-macro2 = "1.0.95"
209209
prost = "0.14"
210210
prost-build = "0.14"
211211
prost-types = "0.14"
212-
pyo3 = { version = "0.29.0" }
212+
pyo3 = { version = "0.28.0" }
213213
pyo3-bytes = "0.6"
214214
pyo3-log = "0.13.0"
215215
pyo3-object_store = "0.9.0"

deny.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ ignore = [
1616
# Paste is no longer maintained because its essentially "finished".
1717
"RUSTSEC-2024-0436",
1818
# proc-macro-error-2 is unmaintained, only used by the `test_with` test dependency
19-
"RUSTSEC-2026-0173"
19+
"RUSTSEC-2026-0173",
20+
# Out-of-bounds read in `nth`/`nth_back` on pyo3 list/tuple iterators, fixed only in pyo3
21+
# 0.29.0. We cannot bump until pyo3-bytes, pyo3-log, and pyo3-object_store support 0.29 (all
22+
# pin pyo3 to <0.29, and pyo3-ffi `links = "python"` forbids two pyo3 versions in the graph).
23+
# Not exploitable here: `vortex-python` never calls `nth`/`nth_back` on these iterators.
24+
"RUSTSEC-2026-0176"
2025
]
2126

2227
[licenses]

0 commit comments

Comments
 (0)