1 //! Executors
2 //!
3 //! This module contains tools for managing the raw execution of futures,
4 //! which is needed when building *executors* (places where futures can run).
5 //!
6 //! More information about executors can be [found online at tokio.rs][online].
7 //!
8 //! [online]: https://tokio.rs/docs/going-deeper-futures/tasks/
9 
10 #[allow(deprecated)]
11 #[cfg(feature = "use_std")]
12 pub use task_impl::{Unpark, Executor, Run};
13 
14 pub use task_impl::{Spawn, spawn, Notify, with_notify};
15 
16 pub use task_impl::{UnsafeNotify, NotifyHandle};
17