znippy-decompress 0.2.5

decompress logic for Znippy, a parallel chunked compression system.
Documentation
1
2
3
4
5
6
7
use anyhow::{Context, Result};
use std::path::{Path, PathBuf};
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)
}