- impl
fmt::Display
forHeaderName
(#249) - Fix
uri::Authority
parsing when there is no host after an@
(#248) - Fix
Uri
parsing to allow more characters in query strings (#247)
- Fix
HeaderValue
parsing to allow HTABs (#244)
- Add
From<&Self>
forHeaderValue
,Method
, andStatusCode
(#238) - Add
Uri::from_static
(#240)
- impl HttpTryFrom for HeaderValue (#236)
- Fix double percent encoding (#233)
- Add additional HttpTryFrom impls (#234)
- Add fuller set of
PartialEq
forMethod
(#221) - Reduce size of
HeaderMap
by usingBox<[Entry]>
instea ofVec
(#224) - Reduce size of
Extensions
by storing asOption<Box<AnyMap>>
(#227) - Implement
Iterator::size_hint
for most iterators inheader
(#226)
- Add
From<uN> for HeaderValue
for most integer types (#218). - Add
Uri::into_parts()
inherent method (same asParts::from(uri)
) (#214). - Fix converting
Uri
s in authority-form toParts
and then back intoUri
(#216). - Fix
Authority
parsing to reject multiple port sections (#215). - Fix parsing 1 character authority-form
Uri
s into illegal forms (#220).
- Add
HeaderName::from_static()
constructor (#195). - Add
Authority::from_static()
constructor (#186). - Implement
From<HeaderName>
forHeaderValue
(#184). - Fix duplicate keys when iterating over
header::Keys
(#201).
- Add websocket handshake related header constants (#162).
- Parsing
Authority
with an empty string now returns an error (#164). - Implement
PartialEq<u16>
forStatusCode
(#153). - Implement
HttpTryFrom<&Uri>
forUri
(#165). - Implement
FromStr
forMethod
(#167). - Implement
HttpTryFrom<String>
forUri
(#171). - Add
into_body
fns toRequest
andResponse
(#172). - Fix
Request::options
(#177).
- Add PathAndQuery::from_static (#148).
- Impl PartialOrd / PartialEq for Authority and PathAndQuery (#150).
- Add
map
fn toRequest
andResponse
(#151).
- Add
Scheme
associated consts for common protos.
- Add Uri accessor for scheme part.
- Fix Uri parsing bug (#134)
- Provide Uri accessors for parts (#129)
- Add Request builder helpers. (#123)
- Misc performance improvements (#126)
- Initial release.