liblzma_sys/lib.rs
1#![doc(html_root_url = "https://docs.rs/liblzma-sys/0.4.4")]
2#![allow(bad_style)]
3
4#[cfg(feature = "bindgen")]
5mod bindgen;
6#[cfg(feature = "bindgen")]
7mod bindgen_wrap;
8#[cfg(not(feature = "bindgen"))]
9mod manual;
10
11#[cfg(target_arch = "wasm32")]
12mod wasm_shim;
13
14#[cfg(feature = "bindgen")]
15pub use bindgen_wrap::*;
16#[cfg(not(feature = "bindgen"))]
17pub use manual::*;