1 #![no_std]
2 #![allow(non_upper_case_globals)]
3 #![allow(non_camel_case_types)]
4 #![allow(non_snake_case)]
5 #![allow(clippy::all)] // we can't control bindgen output to make clippy happy
6 
7 extern crate libc;
8 
9 mod sodium_bindings;
10 pub use sodium_bindings::*;
11