1 个不稳定版本
0.1.0 | 2023年6月12日 |
---|
#333 在 WebSocket
在 pi_async_wsc 中使用
225KB
5.5K SLoC
awc (Actix Web 客户端)
异步 HTTP 和 WebSocket 客户端库。
文档与资源
示例
use actix_rt::System;
use awc::Client;
fn main() {
System::new().block_on(async {
let client = Client::default();
let res = client
.get("https://rust-lang.net.cn") // <- Create request builder
.insert_header(("User-Agent", "Actix-web"))
.send() // <- Send http request
.await;
println!("Response: {:?}", res); // <- server http response
});
}
依赖项
~13–29MB
~544K SLoC