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
2020-07-22 00:28:33 +01:00
..
src Check format and tweak CI config (#1619) 2020-07-22 00:28:33 +01:00
tests Check format and tweak CI config (#1619) 2020-07-22 00:28:33 +01:00
Cargo.toml Merge pull request #1603 from JohnTitor/license 2020-07-14 15:25:48 +09:00
CHANGES.md prepare awc v2.0.0-beta.1 release 2020-07-14 03:16: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 bump msrv in ci and readme 2020-05-13 01:57:37 +01:00

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