- Make
AgentBuilder::timeout
be a truly global timeout, including forconnect
. - Replace
impl From<http::request::Builder> for Request
withTryFrom
because the conversion is fallible (implement in terms ofFrom<http::request::Parts>
:builder.body(())?.into_parts().0.into()
);