···11[package]
22name = "repo-stream"
33-version = "0.5.0-alpha.4"
33+version = "0.5.0-alpha.5"
44edition = "2024"
55license = "MIT OR Apache-2.0"
66description = "Fast and robust atproto CAR file processing"
+7
src/mem.rs
···181181}
182182183183impl MemCar {
184184+ /// The total mst height
185185+ ///
186186+ /// Defined by to the root node's layer, computed from its entry keys
187187+ pub fn height(&self) -> u32 {
188188+ self.walker.height()
189189+ }
190190+184191 /// Seek forward to the first record at or after `target`.
185192 ///
186193 /// Uses the MST structure to skip entire subtrees efficiently.
+1-4
src/walk.rs
···151151 }
152152 }
153153154154- /// The total mst height
155155- ///
156156- /// Defined by to the root node's layer, computed from its entry keys
157157- pub fn height(&self) -> u32 {
154154+ pub(crate) fn height(&self) -> u32 {
158155 self.root_layer
159156 }
160157