libraw_sys/lib.rs
1#![doc(html_root_url = "https://docs.rs/libraw-rs-sys/0.0.4")]
2#![allow(
3 non_camel_case_types,
4 non_upper_case_globals,
5 clippy::approx_constant,
6 clippy::redundant_static_lifetimes,
7 non_snake_case
8)]
9#![no_std]
10
11#[cfg(feature = "bindgen")]
12include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
13#[cfg(not(feature = "bindgen"))]
14mod bindings;
15#[cfg(not(feature = "bindgen"))]
16pub use bindings::*;