Skip to content

Releases: trifectatechfoundation/libbzip2-rs

Version 0.1.1

11 Dec 14:30
v0.1.1
Compare
Choose a tag to compare

Changelog

  • ensure that the rust-allocator can be used without std (it just needs alloc)
  • in no_std mode, still panic instead of calling bz_internal_error. The cdylib crate still calls bz_internal_error in its panic handler to remain compatible, but for rust users an actual panic is desirable and plays nicer with building/linking.

Version 0.1.0

04 Dec 14:58
v0.1.0
05a52ff
Compare
Choose a tag to compare

An initial release, consisting of 2 crates

  • libbz2-rs-sys is a rust crate that exposes the full bzip2 API, defined in 100% rust (no FFI is used)
  • libbz2-rs-sys-cdylib can be used to build a dynamic or static C library that is 100% compatible with stock bzip2