switched 7z unpack crate

This commit is contained in:
2026-03-17 19:32:28 +01:00
parent 132f784d58
commit 22c27a2491
3 changed files with 279 additions and 111 deletions

View File

@@ -23,6 +23,6 @@ pub fn unpack(
}
fn unpack_7z_file(path: impl AsRef<Path>, to: impl AsRef<Path>) -> anyhow::Result<()> {
sevenz_rust::decompress_file(path, to)?;
sevenz_rust2::decompress_file(path, to)?;
Ok(())
}