1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-13 02:39:32 +00:00
actix-web/awc
Ali MJ Al-Nasrawy 3c0d059d92
MessageBody::boxed (#2520)
Co-authored-by: Rob Ede <robjtede@icloud.com>
2021-12-17 00:43:40 +00:00
..
examples tweak compress feature docs 2021-06-19 20:23:06 +01:00
src MessageBody::boxed (#2520) 2021-12-17 00:43:40 +00:00
tests remove actix_http::http module (#2488) 2021-12-05 14:37:20 +00:00
Cargo.toml minimize futures-util dep in actix-http 2021-12-16 22:26:45 +00:00
CHANGES.md align remaining header map terminology (#2510) 2021-12-13 16:08:08 +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 awc release 3.0.0-beta.13 2021-12-11 00:28:38 +00:00

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