All notable changes to the ehttp
crate will be documented in this file.
- Support multipart and JSON (#47, #49)
- Added CORS
Mode
property toRequest
on web (#52) - Don't add
web-sys
in native builds (#48)
- Allow duplicated headers in requests and responses (#46)
- Support HEAD requests (#45)
- Add missing web-sys feature (#42)
- Update MSRV to 1.72.0 (#44)
- Improve opaque network error message on web (#33).
- Add
ehttp::streaming
, for streaming HTTP requests (#28). - Add cross-platform
fetch_async
(#25). - Nicer formatted error messages on web.
- Implement
Clone
andDebug
forRequest
(#17).
Response::text
andResponse::content_type
no longer allocates.- Rename
ehttp::Request::create_headers_map
toehttp::headers
. Request::post
now expectsVec<u8>
.