1 个不稳定版本

0.1.0 2023年6月12日

#333WebSocket


pi_async_wsc 中使用

MIT/Apache

225KB
5.5K SLoC

awc (Actix Web 客户端)

异步 HTTP 和 WebSocket 客户端库。

crates.io Documentation MIT or Apache 2.0 licensed Dependency Status Chat on Discord

文档与资源

示例

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