Closed
Description
The public client API for 1.0 will be the version-specific types at client::conn::{http1, http2}
. The combined version may exist in hyper-util
, but at least it should be removed from hyper proper. Doing so isn't particularly complex, but it will mean fixing up all the tests.
- Delete
hyper::client::conn::{SendRequest, Connection}
types. - Update
examples/*
to use thehyper::client::conn::http1
types (orhttp2
if appropriate). - Update
tests/*
to useconn::http1
in most places, andconn::http2
when specifically testing for HTTP/2.