Releases: hyperium/h2
Releases · hyperium/h2
v0.2.1
- Relax
Unpin
bounds on the sendBuf
generic.
v0.2.0
- Add server support for
PUSH_PROMISE
s (#327). - Add
server::Connection::set_initial_window_size
andclient::Connection::set_initial_window_size
which can adjust theINITIAL_WINDOW_SIZE
setting on an existing connection (#421). - Update to
http
v0.2. - Update to
tokio
v0.2. - Update from
futures
0.1 tostd::future::Future
. - Change
unstable-stream
feature tostream
. - Change
ReserveCapacity
toFlowControl
(#423). - Change
Stream
implementations to the optionalstream
cargo feature, default disabled. Specific async and poll functions are now inherent, andStream
can be re-enabled with thestream
cargo feature. - Remove
From<io::Error>
forError
.