1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-12 18:29:34 +00:00
actix-web/awc
Rob Ede 2253eae2bb
update msrv to 1.56 (#2777)
* update msrv to 1.56

* remove transitive dashmap dependency

closes #2747
2022-06-11 04:03:26 +01:00
..
examples use tokio::main in client example 2022-01-19 21:36:14 +00:00
src fix some typos (#2744) 2022-04-24 22:01:20 +00:00
tests simplify macros feature 2022-02-01 14:39:49 +00:00
Cargo.toml Bump zstd to 0.11 (#2694) 2022-03-22 15:30:06 +00:00
CHANGES.md update msrv to 1.56 (#2777) 2022-06-11 04:03:26 +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.0 (#2684) 2022-03-08 16:51:40 +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
    });
}