Crate Documentation

This project is a 7z compressor/decompressor written in pure rust.
And it's very much inspired by the apache commons-compress project.

Only support lzma and lzma2 method currentlly

BCJ filter support is in progress

Usage

Decompress source file "data/sample.7z" to dest path "data/sample"

rust sevenz_rust::decompress_file("data/sample.7z", "data/sample").expect("complete");

Dependencies