async-std 是 Rust 标准库的异步版本。
首先在Cargo.toml添加如下内容:
Cargo.toml
[dependencies] async-std = "0.99"
或者使用 cargo add :
$ cargo add async-std
#![feature(async_await)] use async_std::task; fn main() { task::block_on(async { println!("Hello, world!"); }) }