1 2 3 4 5 6 7 8 9 10
#![no_std] #![doc = include_str!("../README.md")] pub mod error; pub mod executor; mod runtime; pub use crate::executor::Executor; #[allow(deprecated)] pub use crate::executor::FutureBox;