Thin convenience library to manupulate compressed archive of vairous types through a single interface.
rust
fn main() -> Result<()> {
let archive = arkiv::Archive::open("/path/to/archive.tar.xz")?;
archive.unpack("/tmp/")?;
Ok(())
}
This is a work in progress and is not publishes on crates.io yet...