Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 1.97 KB

README.md

File metadata and controls

55 lines (38 loc) · 1.97 KB

bzip2-rs

crates.io Documentation dependency status Rustc Version 1.34.2+ CI

Pure Rust 100% safe bzip2 decompressor.

Features

  • rayon: enable using the rayon global threadpool for parallel decoding. NOTE: this feature is not subject to a MSRV. At the time of writing the MSRV for rayon is 1.56.0

  • Default features: Rust >= 1.34.2 is supported

  • rustc_1_37: bump MSRV to 1.37, enable more optimizations

  • rustc_1_55: bump MSRV to 1.55, enable more optimizations

  • rustc_1_63: bump MSRV to 1.63, enable more optimizations

  • nightly: require Rust Nightly, enable more optimizations

Usage

use std::fs::File;
use std::io;
use bzip2_rs::DecoderReader;

let mut compressed_file = File::open("input.bz2")?;
let mut decompressed_output = File::create("output")?;

let mut reader = DecoderReader::new(compressed_file);
io::copy(&mut reader, &mut decompressed_output)?;

Upcoming features

  • bzip2 encoding support
  • no_std support (is anybody interested with this?)

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.