onelf-format 0.3.1

Binary format definitions for onelf
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 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, is_safe_component, symlink_target_within_root,
};