fut_compat/lib.rs
1#![doc = include_str!("./lib.md")]
2
3#![cfg_attr(docsrs, feature(doc_cfg))]
4
5
6
7/// Async abstractions over [`std::io`] and the implementations for the different runtimes.
8pub mod io;
9
10/// Async abstractions over [`std::fs`] and the implementations for the different runtimes.
11pub mod fs;
12
13/// Implementations for the different runtimes of the abstractions in [`futures::task`].
14pub mod task;
15
16/// Async abstractions over [`std::net`] and the implementations for the different runtimes.
17pub mod net;