actix-web/awc
fakeshadow 4d688ae921 fix feature flag 2021-01-19 12:24:47 +08:00
..
src fix feature flag 2021-01-19 12:24:47 +08:00
tests fix feature flag 2021-01-19 12:24:47 +08:00
CHANGES.md rework awc dns resolver 2021-01-19 12:00:18 +08:00
Cargo.toml rework awc dns resolver 2021-01-19 12:00:18 +08:00
LICENSE-APACHE add license files 2019-06-01 17:25:29 +06:00
LICENSE-MIT add license files 2019-06-01 17:25:29 +06:00
README.md bump msrv to 1.46 (#1858) 2020-12-28 00:44:15 +00:00

README.md

awc (Actix Web Client)

Async HTTP and WebSocket client library.

crates.io Documentation Apache 2.0 or MIT licensed Dependency Status Join the chat at https://gitter.im/actix/actix-web

Documentation & Resources

Example

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

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

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

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