[go: up one dir, main page]

liblzma-sys 0.1.24

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.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(bad_style)]

#[cfg(feature = "bindgen")]
mod bindgen;
#[cfg(feature = "bindgen")]
mod bindgen_wrap;
#[cfg(not(feature = "bindgen"))]
mod manual;

#[cfg(feature = "bindgen")]
pub use bindgen_wrap::*;
#[cfg(not(feature = "bindgen"))]
pub use manual::*;