- None at the moment.
- Add Kani proofs for winnow view helpers.
- Add test covering freezing an empty section to guard against flush errors on macOS.
- Explore how to model
ByteAreafor Kani or fuzzing without depending on OS-backed memory maps.
Bytes::from_sourcewithBox<T>triggers a Stacked Borrows violation because moving the Box invalidates prior tags on its heap allocation. This is a known limitation of Stacked Borrows with Box; Tree Borrows handles it correctly. The Miri tests use Tree Borrows (-Zmiri-tree-borrows) accordingly.- The
test_winnow_view_parsertest fails under Miri because it assumes theVec<u8>allocation is 2-byte aligned for au16-containing struct; Miri doesn't guarantee this alignment.