microasync_rt/
lib.rs

1#![no_std]
2
3#[cfg(not(feature = "no_std"))]
4pub mod io;
5mod queued_runtime;
6#[cfg(not(feature = "no_std"))]
7mod timer;
8
9pub use queued_runtime::*;
10#[cfg(not(feature = "no_std"))]
11pub use timer::*;
12
13pub use async_core::*;