actix-web/awc
asonix 1e3c82344b Merge branch 'master' into asonix/awc-rustls-0.23 2024-05-18 13:26:33 -05:00
..
examples chore: remove allow(uninlined_format_args) 2023-12-16 10:33:00 +00:00
src Merge branch 'master' into asonix/awc-rustls-0.23 2024-05-18 13:26:33 -05:00
tests awc: Add base rustls-0_23 feature without roots to better enable custom config 2024-05-12 18:14:27 -05:00
CHANGES.md Merge branch 'master' into asonix/awc-rustls-0.23 2024-05-18 13:26:33 -05:00
Cargo.toml Merge branch 'master' into asonix/awc-rustls-0.23 2024-05-18 13:26:33 -05: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 perf: remove unnecessary allocation when writing http dates (#3261) 2024-02-07 03:47:30 +00:00

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

Examples

Example project using TLS-enabled client →

Basic usage:

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