1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 21:39:26 +00:00
actix-web/awc
2022-01-21 21:16:23 +00:00
..
src prepare awc release 2.0.1 2020-10-30 02:50:53 +00:00
tests migrate to brotli crate 2022-01-21 21:16:23 +00:00
Cargo.toml migrate to brotli crate 2022-01-21 21:16:23 +00:00
CHANGES.md prepare web 3.3.2 release 2020-12-01 22:22:46 +00: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 prepare web and awc releases 2020-11-29 16:33:45 +00:00

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