1
2
3
4
5
6
7
8
9
10
11
#![no_std]

#[cfg(not(feature = "no_std"))]
pub mod io;
mod queued_runtime;
#[cfg(not(feature = "no_std"))]
mod timer;

pub use queued_runtime::*;
#[cfg(not(feature = "no_std"))]
pub use timer::*;