onelf-format 0.2.8

Binary format definitions for onelf
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! ONELF format definitions

#[macro_use]
mod macros;

pub mod entry;
pub mod footer;
pub mod manifest;

pub use entry::{Block, Entry, EntryKind, EntryPoint, EntryPointFlags, WorkingDir};
pub use footer::{END_MAGIC, FOOTER_SIZE, Flags, Footer, MAGIC};
pub use manifest::{Manifest, ManifestHeader, StringTableBuilder};