actix-web/awc
Maksym Vorobiov de187c0d16 max_http_version to accept http::Version 2020-03-05 15:39:49 +02:00
..
src max_http_version to accept http::Version 2020-03-05 15:39:49 +02:00
tests add test for H2 window size settings 2020-03-04 20:21:32 +02:00
CHANGES.md add H2 window size configuration and max_http_version to awc::ClientBuilder 2020-03-04 17:28:07 +02:00
Cargo.toml Update `rustls` to 0.17 2020-03-04 15:11:31 +09: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 update readme 2019-04-16 10:50:37 -07:00

README.md

Actix http client Build Status codecov crates.io Join the chat at https://gitter.im/actix/actix

An HTTP Client

Documentation & community resources

Example

use actix_rt::System;
use awc::Client;
use futures::future::{Future, lazy};

fn main() {
    System::new("test").block_on(lazy(|| {
       let mut client = Client::default();

       client.get("http://www.rust-lang.org") // <- Create request builder
          .header("User-Agent", "Actix-web")
          .send()                             // <- Send http request
          .and_then(|response| {              // <- server http response
               println!("Response: {:?}", response);
               Ok(())
          })
    }));
}