Async version of the Rust standard library.
async-std is a foundation of portable Rust software, a set of minimal and battle-tested shared abstractions for the broader Rust ecosystem. It offers std types, like Future and Stream, library-defined operations on language primitives, standard macros, I/O and multithreading, among many other things.
async-std is available from crates.io. Once included, async-std can be accessed in use statements through the path async_std
, as in use async_std::future
.