2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-04-27 18:56:49 +00:00
async-std/docs/src/overview/async-std.md
2019-10-21 19:47:14 -03:00

811 B

Welcome to async-std

async-std, along with its supporting libraries, is a library making your life in async programming easier. It provides fundamental implementations for downstream libraries and applications alike. The name reflects the approach of this library: it is as closely modeled to the Rust main standard library as possible, replacing all components by async counterparts.

async-std provides an interface to all important primitives: filesystem operations, network operations and concurrency basics like timers. It also exposes a task in a model similar to the thread module found in the Rust standard lib. But it does not only include I/O primitives, but also async/await compatible versions of primitives like Mutex.