xar 0.1.1

A utility and library to create, inspect and extract XAR archives.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(test)]
mod tests;

mod error {
    use error_chain::error_chain;
    error_chain! {}
}

pub mod archive;
pub mod header;
pub mod toc;
pub use archive::Archive;
pub use header::Header;
pub use toc::Toc;