bzip2-rs

crates.io Documentation dependency status Rustc Version 1.39.0+ CI

Pure Rust 100% safe bzip2 decompressor.

Features

Usage

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

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

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

Upcoming features

License

Licensed under either of * Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) * MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)

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.