You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
419 B
30 lines
419 B
#![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 { |
|
}
|
|
|