This release sees some progress towards hyper without tokio-proto. hyper now contains an internal dispatcher that should eventually replace the one from tokio-proto. It is currently not on by default, but can be enabled with Client::configure().no_proto()
and Server::no_proto()
. The new dispatcher already fixes some bugs list below, so please try it out. It will likely be enabled by default in the next release, and the tokio-proto exposed pieces deprecated at that time.
Bug Fixes
Features
- client:
- header: implement
ByteRangeSpec::to_satisfiable_range
(bb54e36c) - lib: add support to disable tokio-proto internals (f7532b71)
- server: