1
2
3
4
5
6
7
8
9
10
11
12
#![doc = include_str!("../README.md")]
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]

#[cfg(all(feature = "use-bindgen", not(docs_rs)))]
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));

#[cfg(any(not(feature = "use-bindgen"), docs_rs))]
mod bindings;
#[cfg(any(not(feature = "use-bindgen"), docs_rs))]
pub use bindings::*;