arkiv 0.1.0

library providing convenience function to manipulate various kind of archive (zip, tar.gz, tar.xz, ... )
Documentation
arkiv-0.1.0 has been yanked.

Arkiv

Build Build Clippy

Thin convenience library to manupulate compressed archive of vairous types through a single interface.

fn main() -> Result<()> {
    let archive = arkiv::Archive::open("/path/to/archive.tar.xz")?;
    archive.unpack("/tmp/")?;
    Ok(())
}

Disclaimer

This is a work in progress and is not publishes on crates.io yet...