unarchive

Crates.iounarchive
lib.rsunarchive
version0.0.2
created_at2025-04-22 23:46:49.582844+00
updated_at2025-04-22 23:59:18.345512+00
descriptionA crate to unarchive common archive formats
homepage
repositoryhttps://github.com/GuillemCastro/unarchive
max_upload_size
id1644823
size55,259
Guillem Castro (GuillemCastro)

documentation

README

unarchive

Simple crate to unarchive some common archive file formats

use std::path::PathBuf;

use unarchive::{Archive, Error};

#[tokio::main]
pub async fn main() -> Result<(), Error> {
    Archive::from_path("example.tar.gz")?.unarchive("unarchived").await
}

License

This project is licensed under the Apache 2.0 license

Commit count: 4

cargo fmt