mod byte_reader;
mod options;
mod parser;
mod types;
pub use byte_reader::{read_u32_le, read_u32_le_at, read_u64_le, read_u64_le_at};
pub use options::{InvalidUtf8, ParseOptions};
pub use parser::{
parse, parse_appinfo, parse_appinfo_with, parse_packageinfo, parse_packageinfo_with,
parse_shortcuts, parse_shortcuts_with, parse_with,
};
pub use types::{APPINFO_MAGIC_40, APPINFO_MAGIC_41, BinaryType};