klu_core 0.2.1

Klu file format core package
Documentation
1
2
3
4
5
6
7
8
extern crate klu_core;
fn main() {
    let archive = klu_core::write::Archive::from_path("./test/archive").expect("Archive error");
    archive
        .write_to_path("./test/archive.klu")
        .expect("Archive write error");
    println!("'test/in' has been archive in 'test/archive.klu'")
}