1 2 3 4 5 6 7 8 9 10 11 12
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))] #![doc = include_str!("../README.md")] pub mod coroutines; mod entry; mod io; pub mod runtimes; #[cfg(feature = "serde")] pub mod serde; #[doc(inline)] pub use self::{entry::Entry, io::Io};