microasync_util/
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#[cfg(not(feature = "no_std"))]
9mod defer;
10
11pub use queued_runtime::*;
12#[cfg(not(feature = "no_std"))]
13pub use timer::*;
14#[cfg(not(feature = "no_std"))]
15pub use defer::*;