2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-16 10:49:55 +00:00
No description
Find a file
2019-08-12 22:04:58 +02:00
async-task Initial commit 2019-08-08 14:44:48 +02:00
benches Initial commit 2019-08-08 14:44:48 +02:00
docs Begin Glossary 2019-08-12 22:04:58 +02:00
examples Initial commit 2019-08-08 14:44:48 +02:00
src Initial commit 2019-08-08 14:44:48 +02:00
tests Initial commit 2019-08-08 14:44:48 +02:00
.gitignore Initial commit 2019-08-08 14:44:48 +02:00
.travis.yml Initial commit 2019-08-08 14:44:48 +02:00
Cargo.toml Initial commit 2019-08-08 14:44:48 +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 Initial commit 2019-08-08 14:44:48 +02:00

Async version of Rust's standard library

chat

This crate is an async version of std.

Quickstart

Clone the repo:

git clone git@github.com:stjepang/async-std.git && cd async-std

Read the docs:

cargo doc --features docs.rs --open

Check out the examples. To run an example:

cargo run --example hello-world

Hello world

#![feature(async_await)]

use async_std::task;

fn main() {
    task::block_on(async {
        println!("Hello, world!");
    })
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.