1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-05 17:52:14 +00:00
actix-web/awc
fakeshadow 9704beddf8
Relax MessageBody limit to 2048kb (#2110)
* relax MessageBody limit to 2048kb

* fix clippy

* Update awc/src/response.rs

Co-authored-by: Rob Ede <robjtede@icloud.com>

* fix default body limit

Co-authored-by: Rob Ede <robjtede@icloud.com>
2021-03-24 04:44:03 -07:00
..
src Relax MessageBody limit to 2048kb (#2110) 2021-03-24 04:44:03 -07:00
tests use iota for more content-length insertions (#2050) 2021-03-07 19:29:02 +00:00
Cargo.toml unvendor openssl 2021-03-17 00:38:54 +00:00
CHANGES.md refactor actix_http connection types and connector services (#2081) 2021-03-18 17:53:22 +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 fix awc readme example (#2076) 2021-03-15 10:59:42 +00:00

awc (Actix Web Client)

Async HTTP and WebSocket client library.

crates.io Documentation MIT or Apache 2.0 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().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
    });
}