awc 2.0.1

Async HTTP and WebSocket client library built on the Actix ecosystem
Documentation

awc (Actix Web Client)

Async HTTP and WebSocket client library.

crates.io Documentation Apache 2.0 or MIT licensed Dependency Status Join the chat at https://gitter.im/actix/actix-web

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