| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| error-stack@0.8.0 source code.tar.gz | 2026-07-03 | 15.1 MB | |
| error-stack@0.8.0 source code.zip | 2026-07-03 | 19.9 MB | |
| README.md | 2026-07-03 | 1.3 kB | |
| Totals: 3 Items | 35.1 MB | 0 | |
What changed
Breaking Changes
- Fix a soundness hole in
Report::frames_mut: the returned iterator handed out&mut Frames with independent lifetimes, so a frame and one of its sources (viaFrame::sources_mut) could be borrowed mutably at the same time — undefined behavior triggerable from safe code, up to segfaults.frames_mutnow takes a visitor closure (FnMut(&mut Frame) -> ControlFlow<()>) instead of returning an iterator, and theFramesMuttype has been removed.Report::downcast_mutis unaffected. (#8946)