2 releases (1 stable)

1.0.1 Jan 18, 2020

#372 in HTTP client

Download history 11/week @ 2023-12-18 4/week @ 2023-12-25 12/week @ 2024-01-08 3/week @ 2024-01-15 6/week @ 2024-01-22 6/week @ 2024-02-05 28/week @ 2024-02-12 10/week @ 2024-02-19 54/week @ 2024-02-26 28/week @ 2024-03-04 17/week @ 2024-03-11 19/week @ 2024-03-18 36/week @ 2024-03-25 70/week @ 2024-04-01

149 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
~625K SLoC