2 releases (1 stable)
1.0.1 | Jan 18, 2020 |
---|
#383 in HTTP client
61 downloads per month
Used in 8 crates
(2 directly)
1MB
20K
SLoC
Actix http client
An HTTP Client
Documentation & community resources
- User Guide
- API Documentation
- Chat on gitter
- Cargo package: awc
- Minimum supported Rust version: 1.33 or later
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