libsodium_sys/
lib.rs

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