Chronicles - A crate for extracting various types of Archive files.
Currently supporting the following formats:
How to use -
```rust
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 -
Todo -
- Support conversion between files.
- Support async operations.
- More formats.