pi_awc

Crates.iopi_awc
lib.rspi_awc
version0.1.0
sourcesrc
created_at2023-06-12 09:43:38.884834
updated_at2023-06-12 09:43:38.884834
descriptionAsync HTTP and WebSocket client library
homepagehttps://actix.rs
repositoryhttps://github.com/GaiaWorld/pi_net.git
max_upload_size
id888032
size311,343
dev (github:gaiaworld:dev)

documentation

README

awc (Actix Web Client)

Async HTTP and WebSocket client library.

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

Documentation & Resources

Example

use actix_rt::System;
use awc::Client;

fn main() {
    System::new().block_on(async {
        let client = Client::default();

        let res = client
            .get("http://www.rust-lang.org")    // <- Create request builder
            .insert_header(("User-Agent", "Actix-web"))
            .send()                             // <- Send http request
            .await;

        println!("Response: {:?}", res);        // <- server http response
    });
}
Commit count: 516

cargo fmt