3 releases
0.1.2 | Feb 16, 2021 |
---|---|
0.1.1 | Jan 31, 2021 |
0.1.0 | Jan 30, 2021 |
#161 in Compression
3,466 downloads per month
Used in 13 crates
(11 directly)
255KB
1K
SLoC
bzip2-rs
Pure Rust 100% safe bzip2 decompressor.
Features
- Default features: Rust >= 1.34.2 is supported
rustc_1_37
: bump MSRV to 1.37, enable more optimizationsnightly
: 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
- parallel decoding support (similar to pbzip2)
- bzip2 encoding support
- no_std support (is anybody interested with this?)
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.