1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#![no_std] #![cfg_attr(feature = "unstable", feature(test))] #[cfg(test)] #[macro_use] extern crate std; #[cfg(test)] #[cfg(feature = "unstable")] extern crate test; mod bind; pub mod chacha20poly1305; pub mod x25519;