No description
Find a file
2020-01-28 15:58:46 +09:00
.github Enable doc test on ci 2019-11-28 20:54:07 +09:00
benches Optimization: a slot for the next task to run (#529) 2019-11-13 20:32:37 +01:00
ci Restore Version Sort (#121) 2019-08-28 17:16:02 +02:00
docs fix syntax problem for task::sleep 2020-01-25 22:13:26 +00:00
examples remove throttle example 2019-11-14 21:27:20 +01:00
src feat: Make the utils module no_std 2020-01-28 15:58:46 +09:00
tests fix open_file test code 2019-11-28 19:52:46 +09:00
.gitignore Initial commit 2019-08-08 14:44:48 +02:00
bors.toml Remove travis from requirements 2019-10-08 00:58:26 +09:00
Cargo.toml feat: Add no-std feature 2020-01-28 15:58:46 +09:00
CHANGELOG.md 1.4.0 2019-12-20 11:58:32 +01:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2019-08-12 20:02:31 +02:00
LICENSE-APACHE Initial commit 2019-08-08 14:44:48 +02:00
LICENSE-MIT Initial commit 2019-08-08 14:44:48 +02:00
README.md Add a section on the async ecosystem to showcase crates that use async-std 2020-01-06 23:17:13 -08:00
rustfmt.toml Remove usage of unstable format_code_in_doc_comments option (#685) 2020-01-20 21:41:48 +01:00

async-std

Async version of the Rust standard library


This crate provides an async version of std. It provides all the interfaces you are used to, but in an async version and ready for Rust's async/await syntax.

Features

  • Modern: Built from the ground up for std::future and async/await with blazing fast compilation time.
  • Fast: Our robust allocator and threadpool designs provide ultra-high throughput with predictably low latency.
  • Intuitive: Complete parity with the stdlib means you only need to learn APIs once.
  • Clear: Detailed documentation and accessible guides mean using async Rust was never easier.

Examples

use async_std::task;

async fn say_hello() {
    println!("Hello, world!");
}

fn main() {
    task::block_on(say_hello())
}

More examples, including networking and file access, can be found in our examples directory and in our documentation.

Philosophy

We believe Async Rust should be as easy to pick up as Sync Rust. We also believe that the best API is the one you already know. And finally, we believe that providing an asynchronous counterpart to the standard library is the best way stdlib provides a reliable basis for both performance and productivity.

Async-std is the embodiment of that vision. It combines single-allocation task creation, with an adaptive lock-free executor, threadpool and network driver to create a smooth system that processes work at a high pace with low latency, using Rust's familiar stdlib API.

Installation

With cargo add installed run:

$ cargo add async-std

We also provide a set of "unstable" features with async-std. See the features documentation on how to enable them.

Ecosystem

  • async-tls — Async TLS/SSL streams using Rustls.

  • async-native-tlsNative TLS for Async. Native TLS for futures and async-std.

  • async-tungstenite — Asynchronous WebSockets for async-std, tokio, gio and any std Futures runtime.

  • Tide — Serve the web. A modular web framework built around async/await.

  • SQLx — The Rust SQL Toolkit. SQLx is a 100% safe Rust library for Postgres and MySQL with compile-time checked queries.

  • Surf — Surf the web. Surf is a friendly HTTP client built for casual Rustaceans and veterans alike.

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.