microsandbox_utils/index/mod.rs
1//! Sidecar index for layer acceleration.
2//!
3//! Provides wire format types, a zero-copy mmap reader, and a builder/writer
4//! for the binary per-layer index generated at OCI extraction time.
5
6mod reader;
7mod types;
8mod writer;
9
10//--------------------------------------------------------------------------------------------------
11// Re-Exports
12//--------------------------------------------------------------------------------------------------
13
14pub use reader::*;
15pub use types::*;
16pub use writer::*;