packdir 0.1.0

Easily embed directories of binary file data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12

extern crate self as packdir;

mod pack;
mod packer;
mod unpack;
pub use pack::{pack, pack_gz, pack_raw, pack_xz};
pub use packer::{Gzip, Packer, Raw, Xz};
pub use unpack::{LazyDir, PackedDir};

#[cfg(test)]
mod tests;