@@ -22,11 +22,11 @@ Both the higher-level `Client` and `Server` types have stability concerns.
2222
2323For the ` hyper::Server ` :
2424
25- - The ` Accept ` trait is complex, and too easy to get wrong. If used with TLS, a
26- slow TLS handshake can affect all other new connections waiting for it to
27- finish. - The ` MakeService<&IO> ` is confusing. The bounds are an assault on
28- the eyes. - The ` MakeService ` API doesn't allow to easily annotate the HTTP
29- connection with ` tracing ` . - Graceful shutdown doesn't give enough control.
25+ - The ` Accept ` trait is complex, and too easy to get wrong. If used with TLS, a slow TLS handshake
26+ can affect all other new connections waiting for it to finish.
27+ - The ` MakeService<&IO> ` is confusing. The bounds are an assault on the eyes.
28+ - The ` MakeService ` API doesn't allow to easily annotate the HTTP connection with ` tracing ` .
29+ - Graceful shutdown doesn't give enough control.
3030
3131
3232It's more common for people to simply use ` hyper::server::conn ` at this point,
@@ -36,7 +36,7 @@ While the `hyper::Client` is much easier to use, problems still exist:
3636
3737- The whole ` Connect ` design isn't stable.
3838 - ALPN and proxies can provide surprising extra configuration of connections.
39- - Some ` Connect ` implementations may wish to view the path, in addition to the scheme, host, and port.
39+ - Some ` Connect ` implementations may wish to view the path, in addition to the scheme, host, and port.
4040 - Wants ` runtime ` feature
4141- The Pool could be made more general or composable. At the same time, more customization is
4242 desired, and it's not clear
@@ -186,7 +186,7 @@ will be moved to `hyper-util`.
186186
187187The ` Body ` struct is removed. Its internal "variants" are [ separated into
188188distinct types] ( https://github.com/hyperium/hyper/issues/2345 ) , and can start
189- in either ` hyper-utils ` or ` http-body-utils ` .
189+ in either ` hyper-util ` or ` http-body-util ` .
190190
191191The exported trait ` HttpBody ` is renamed to ` Body ` .
192192
0 commit comments