reqwest v0.10.0-alpha.1 Release Notes

Release Date: 2019-10-08 // over 4 years ago
    • โž• Add std::future::Future support.
    • โž• Add wasm32-unknown-unknown support (with fewer features).
    • โž• Add ability to pass async Response as the body of another Request.
    • ๐Ÿ”„ Change default Client API to async. The previous blocking client API is avaialble at reqwest::blocking.
    • ๐Ÿ”„ Change default feature set to reduce unnecessary dependencies. Most features are disabled by default:
      • blocking: The reqwest::blocking (synchronous) client API.
      • cookies: Cookie store support.
      • gzip: Automatic response body decompression.
      • json: Request and response JSON body methods.
    • ๐Ÿ”„ Change futures::Stream support to a disabled-by-default unstable-stream feature.
    • ๐Ÿ”„ Change Error internal design, removing several Error::is_* inspector methods.
    • โšก๏ธ Update url to v2.0.