2 releases (1 stable)

1.0.1 Jan 18, 2020

#383 in HTTP client

Download history 20/week @ 2024-03-17 28/week @ 2024-03-24 70/week @ 2024-03-31 14/week @ 2024-04-07 17/week @ 2024-04-14 20/week @ 2024-04-21 14/week @ 2024-04-28 15/week @ 2024-05-05 28/week @ 2024-05-12 22/week @ 2024-05-19 24/week @ 2024-05-26 23/week @ 2024-06-02 13/week @ 2024-06-09 15/week @ 2024-06-16 21/week @ 2024-06-23 10/week @ 2024-06-30

61 downloads per month
Used in 8 crates (2 directly)

MIT/Apache

1MB
20K SLoC

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

An HTTP Client

Documentation & community resources

Example

use requiem_rt::System;
use requiem_wc::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(())
          })
    }));
}

Dependencies

~29MB
~618K SLoC