#![no_std] #![allow(dead_code)] #![feature(trait_alias)] #[cfg(feature = "std")] extern crate std; extern crate alloc; extern crate rand; extern crate rsa; extern crate serde; extern crate core_error; mod crypto; mod ironforce; mod message; mod transport; mod interface; mod interfaces; mod res; mod tunnel; #[cfg(std)] use crate::interfaces::ip; #[cfg(not(feature = "std"))] use aboba; #[cfg(test)] mod tests { }