Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(iroh-bytes): update bao-tree dependency (#2119)
## Description chore(iroh-bytes): update bao-tree dependency to fix a bug with validation when the last chunk group is a leaf for the tree. The bugfix was supposed to be in 0.11.0, but I screwed up publishing. Some indication that this fixes the problem: main: ``` ❯ cargo run -p iroh-cli doctor blob-validate $APP_HOME/iroh/blobs | grep expected Finished dev [unoptimized + debuginfo] target(s) in 0.18s Running `target/debug/iroh doctor blob-validate '/Users/rklaehn/Library/Application Support//iroh/blobs'` EntryDone { id: 32, error: Some("expected chunk ranges RangeSet{0..1387}, got chunk ranges RangeSet{0..1376}") } EntryDone { id: 9, error: Some("expected chunk ranges RangeSet{0..18856}, got chunk ranges RangeSet{0..18848}") } ``` this branch: ``` ❯ cargo run -p iroh-cli doctor blob-validate $APP_HOME/iroh/blobs | grep expected Finished dev [unoptimized + debuginfo] target(s) in 0.18s Running `target/debug/iroh doctor blob-validate '/Users/rklaehn/Library/Application Support//iroh/blobs'` ``` ## Notes & open questions <!-- Any notes, remarks or open questions you have to make about the PR. --> ## Change checklist - [ ] Self-review. - [ ] Documentation updates if relevant. - [ ] Tests if relevant.
- Loading branch information