Skip to content

Commit 7306d0d

Browse files
Merge branch 'develop' into claude/awesome-turing-1eKcy
2 parents ba20d74 + 739b745 commit 7306d0d

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/rust-instrumented.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,8 @@ jobs:
221221
- name: Run tests
222222
run: |
223223
set -o pipefail
224-
./vortex-ffi/build/test/vortex_ffi_test 2>&1 | rustfilt
224+
# re-enable once we can fix this hang
225+
# ./vortex-ffi/build/test/vortex_ffi_test 2>&1 | rustfilt
225226
- name: Run examples
226227
run: |
227228
set -o pipefail

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)