liblzma-sys

Crates.ioliblzma-sys
lib.rsliblzma-sys
version
sourcesrc
created_at2023-09-24 02:08:35.824437
updated_at2024-12-12 02:10:43.900499
descriptionRaw bindings to liblzma which contains an implementation of LZMA and xz stream encoding/decoding. High level Rust bindings are available in the `liblzma` crate.
homepagehttps://github.com/portable-network-archive/liblzma-rs
repositoryhttps://github.com/portable-network-archive/liblzma-rs
max_upload_size
id981653
Cargo.toml error:TOML parse error at line 26, column 1 | 26 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
(ChanTsune)

documentation

README

liblzma-sys

CI Crates.io

Documentation

Raw bindings to liblzma which contains an implementation of LZMA and xz stream encoding/decoding.

High level Rust bindings are available in the liblzma crate.

This crate is forked from lzma-sys and liblzma-sys = "0.1.x" is fully compatible with lzma-sys = "0.1.20", so you can migrate simply.

Migrate from lzma-sys

# Cargo.toml
[dependencies]
-lzma-sys = "0.1.20"
+liblzma-sys = "0.1.20"
// *.rs
-use lzma_sys;
+use liblzma_sys;

Version 0.2.x breaking changes

  • XZ upgraded to 5.4
  • Multithreading is disabled by default. This feature is available by enabling the parallel feature
  • Support compile to webassembly

Version 0.3.x breaking changes

  • XZ upgraded to 5.6

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in liblzma-sys by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 245

cargo fmt