async_rs/util/
mod.rs

1//! A collection of utilities to deal with IO, futures and runtimes
2
3mod addr;
4pub use addr::*;
5
6mod future;
7pub use future::*;
8
9#[cfg(feature = "async-io")]
10mod io;
11#[cfg(feature = "async-io")]
12pub use io::*;
13
14mod runtime;
15pub use runtime::*;
16
17#[cfg(feature = "tokio")]
18mod tokio;
19#[cfg(feature = "tokio")]
20pub use tokio::*;
21
22#[cfg(test)]
23pub(crate) mod test;