znippy-decompress 0.2.4

decompress logic for Znippy, a parallel chunked compression system.
Documentation
1
2
3
4
5
6
7
use std::path::{Path, PathBuf};
use anyhow::{Result, Context};
use znippy_common::VerifyReport;

pub fn decompress_archive(archive_path: &Path,output_dir: &Path) -> Result<VerifyReport> {
     znippy_common::decompress_archive(archive_path, true,output_dir)
}