raspberrypi_utils_sys/
lib.rs

1#![allow(non_upper_case_globals)]
2#![allow(non_camel_case_types)]
3#![allow(non_snake_case)]
4// Suppress warnings from code generated by bindgen
5#![allow(unnecessary_transmutes)]
6
7// Include the generated bindings
8include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
9
10mod ws2812;
11
12pub use ws2812::*;