iowkit_sys/lib.rs
1/*!
2[bindgen]: https://github.com/rust-lang/rust-bindgen
3[libloading]: https://github.com/nagisa/rust_libloading
4*/
5
6// bindgen generates code that triggers these lints
7#![allow(clippy::missing_safety_doc)]
8#![allow(clippy::redundant_static_lifetimes)]
9
10// Generate bindings: ./gen_bindings.sh
11//
12// We avoid generating layout tests because they cause a large number of
13// warnings and according to commentary are not useful. See
14// https://github.com/rust-lang/rust-bindgen/issues/1651 for more.
15mod bindings;
16pub use self::bindings::*;