microsandbox-utils 0.3.14

Shared constants and utilities for the microsandbox project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Sidecar index for layer acceleration.
//!
//! Provides wire format types, a zero-copy mmap reader, and a builder/writer
//! for the binary per-layer index generated at OCI extraction time.

mod reader;
mod types;
mod writer;

//--------------------------------------------------------------------------------------------------
// Re-Exports
//--------------------------------------------------------------------------------------------------

pub use reader::*;
pub use types::*;
pub use writer::*;