v0.10.0-alpha.1
Pre-release
Pre-release
seanmonstar
released this
08 Oct 21:06
·
541 commits
to master
since this release
- Add
std::future::Future
support. - Add
wasm32-unknown-unknown
support (with fewer features). - Add ability to pass async
Response
as thebody
of anotherRequest
. - Change default
Client
API to async. The previous blocking client API is avaialble atreqwest::blocking
. - Change default feature set to reduce unnecessary dependencies. Most features are disabled by default:
blocking
: Thereqwest::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-defaultunstable-stream
feature. - Change
Error
internal design, removing severalError::is_*
inspector methods. - Update
url
to v2.0.