rar

Crates.iorar
lib.rsrar
version0.2.0
sourcesrc
created_at2018-08-31 14:07:46.86974
updated_at2018-08-31 14:07:46.86974
descriptionRust native RAR extractor based upon nom
homepagehttps://github.com/Roba1993/RAR
repositoryhttps://github.com/Roba1993/RAR
max_upload_size
id82360
size67,989
Robert Schütte (Roba1993)

documentation

README

RAR Rust

This crate provides a Rust native functionality to list and extract RAR files (Right now with limited functionality!)

Please have a look in the test section of the file src/lib.rs to see in detail which features are supported right now and how to use this crate.

A basic example to extract the complete archive:

extern crate rar;

// Get the archive information and extract everything
let archive = rar::Archive::extract_all(
    "assets/rar5-save-32mb-txt.rar",
    "target/rar-test/rar5-save-32mb-txt/",
    "").unwrap();

// Print out the archive structure information
println!("Result: {:?}", archive);

Features

RAR 5

  • Extract archive with single File
  • Extract archive with multible Files
  • Extract splittet archive with multible files
  • Extract encrypted archive
  • Extract compression SAVE
  • Extract compression FASTEST
  • Extract compression FAST
  • Extract compression NORMAL
  • Extract compression GOOD
  • Extract compression BEST

RAR 4

  • Extract archive with single File
  • Extract archive with multible Files
  • Extract splittet archive with multible files
  • Extract encrypted archive
  • Extract compression SAVE
  • Extract compression FASTEST
  • Extract compression FAST
  • Extract compression NORMAL
  • Extract compression GOOD
  • Extract compression BEST

Contributing

Please contribute!

The goal is to make this crate feature complete :)

If you need any kind of help, open an issue or write me an mail. Pull requests are welcome!

License

Copyright © 2018 Robert Schütte

Distributed under the MIT License.

Commit count: 32

cargo fmt