You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
client:
drop in-use connections when they finish if Client is dropped (b1765dd1)
don't read extra bytes on idle connections (7c4b814e)
server: GET requests with no body have None instead of Empty (8bf79648, closes #1373)
Features
client:
skip dns resolution when host is a valid ip addr (b1785c66)
allow custom executors for HttpConnector (ed497bf5)