bale 0.1.0

A mmap-first, fixed-stride zip-like pack format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Central Directory structures and parsing.

/// Central Directory entry with parsed header and path.
mod entry;
/// Bale extra field for entry IDs.
mod extra;
/// Central Directory File Header.
mod header;
/// Central Directory parsing.
mod parse;

pub(crate) use entry::CdEntry;
pub(crate) use extra::BaleExtra;
pub use header::CentralDirectoryHeader;
pub(crate) use parse::parse_cd_entries;