Releases: seanmonstar/httparse
Releases · seanmonstar/httparse
v1.2.4
- FIX: look for invalid version even if less than 8 bytes long, instead of returning
Status::Partial
v1.2.3
- PERF: switch header parsing to use lookup tables
- PERF: remove unused field when debug assertions aren't enabled
v1.2.2
- PERF Reduce EOF checks in internal
parse_version
v1.2.1
- FIXED: overflow when parsing chunked size hex digit that was too big
- FIXED: allow parsing of response that do not include a reason-phrase
v1.2.0
- NEW: added
std
cargo feature, on by default. Disable to use inno_std
environments. - NEW: implement
fmt::Display
andstd::error::Error
forhttparse::Error
. - NEW: Relicense under dual license of MIT or Apache-2.0.
v1.1.2
- FIX: skip empty lines before the start of a request or response
v1.1.1
- FIX: Correctly return
Error
when method or path have illegal values
v1.1.0
- NEW:
httparse::parse_chunk_size
function added
v1.0.0
- NEW:
httparse::Request
andhttparse::Response