reqwest is a higher-level HTTP client for Rust. Let me introduce you the v0.10 release that adds async
/await
support!
Some headline features are:
- Add
std::future::Future
support (helloasync
/await
). - Add experimental WASM support.
- Change the default client API to async, moving the previous synchronous API to
reqwest::blocking
. - Make many "extra" features optional to reduce unnecessary dependencies (
blocking
,cookies
,gzip
,json
, etc). - Enable automatic "system" proxy detection.
More at reqwest v0.10 - seanmonstar