async-std是Rust标准库的异步版本。
入门首先在Cargo.toml添加如下内容:
[dependencies]async-std="0.99"或者使用 cargoadd :
$cargoaddasync-stdHelloworld#![feature(async_await)]useasync_std::task;fnmain(){task::block_on(async{println!("Hello,world!");})}async-std是Rust标准库的异步版本。
入门首先在Cargo.toml添加如下内容:
[dependencies]async-std="0.99"或者使用 cargoadd :
$cargoaddasync-stdHelloworld#![feature(async_await)]useasync_std::task;fnmain(){task::block_on(async{println!("Hello,world!");})}
评论