smol_hyper/rt/
mod.rs

1// MIT/Apache2 License
2
3//! Integrations with the [`hyper::rt`] module.
4
5mod futures;
6pub use futures::FuturesIo;
7
8#[cfg(feature = "smol")]
9mod smol;
10#[cfg(feature = "smol")]
11pub use smol::{SmolExecutor, SmolTimer};