Crates.io | bzip2-os |
lib.rs | bzip2-os |
version | 0.5.0 |
source | src |
created_at | 2024-06-13 18:28:10.007225 |
updated_at | 2024-06-13 18:28:10.007225 |
description | A pure-Rust multi-threaded implementation of bzip2 compression. |
homepage | |
repository | https://github.com/ohsnyt/bzip2 |
max_upload_size | |
id | 1270897 |
size | 204,663 |
Rust implementation of Bzip2 library. This is late alpha / early beta stage. Use at your own risk. This may be used under either the Apache or MIT license.
Block specific decoding modes are not yet implemented.
The goal of the executable is to allow for near 100% compatibility with the existing C version of the Bzip2 executable. However the internal algorithms differ.
The largest internal differences are that this version implements
The C version of Bzip2 was very memory efficient - a key factor for that era. This version tries to be careful with memory usage, but does not prioritize memory usage over speed.
The C version of Bzip2 contains a library and several stand-alone tools to work with files (including damaged, compressed files). I do not attempt to reproduce those tools.
David Snyder, June 2024.