arkiv 0.2.0

library providing convenience function to manipulate various kind of archive (zip, tar.gz, tar.xz, ... )
Documentation

Arkiv

Build Build Clippy

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

Usage

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