chronicles

Crates.iochronicles
lib.rschronicles
version0.0.1
sourcesrc
created_at2022-06-15 07:05:43.811162
updated_at2022-06-15 07:05:43.811162
descriptionA simple crate to handle extraction of various types of archives with universal API.
homepagehttps://github.com/spa5k/chronicles
repository
max_upload_size
id606364
size15,187
Spark (spa5k)

documentation

README

Chronicles - A crate for extracting various types of Archive files.

Currently supporting the following formats:

How to use -

use chronicles::extract;

let file = path::Path::new("someZip.zip");
// Path to extract to
let to = path::Path::new("./extracted");
let res = extract(file, to);

Supported extensions -

  • .zip
  • .tar.gz
  • .tar.xz

Todo -

  • Support conversion between files.
  • Support async operations.
  • More formats.
Commit count: 0

cargo fmt