1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-20 01:08:10 +00:00
actix-web/awc
citreae535 b00fe72cf6
Update base64 to 0.21 (#2966)
Co-authored-by: Rob Ede <robjtede@icloud.com>
2023-01-21 01:36:08 +00:00
..
examples address clippy lints 2023-01-01 20:56:34 +00:00
src Update base64 to 0.21 (#2966) 2023-01-21 01:36:08 +00:00
tests Update base64 to 0.21 (#2966) 2023-01-21 01:36:08 +00:00
Cargo.toml Update base64 to 0.21 (#2966) 2023-01-21 01:36:08 +00:00
CHANGES.md bump msrv to 1.59 2022-08-27 13:14:16 +01: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.1 2022-08-25 03:13:31 +01: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
    });
}