actix-web/awc
Rob Ede 324eba7e0b
tighten tokio version range to prevent RUSTSEC-2021-0124
2021-12-22 08:41:44 +00:00
..
examples
src
tests
CHANGES.md
Cargo.toml tighten tokio version range to prevent RUSTSEC-2021-0124 2021-12-22 08:41:44 +00:00
LICENSE-APACHE
LICENSE-MIT
README.md

README.md

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
    });
}