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
67extern crate libc;
89mod sodium_bindings;
10pub use sodium_bindings::*;