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

An HTTP Client

Documentation & community resources

Example

```rust use actori_rt::System; use actoriwc::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", "Actori-web")
      .send()                             // <- Send http request
      .and_then(|response| {              // <- server http response
           println!("Response: {:?}", response);
           Ok(())
      })
}));

} ```