- 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()
); - Change
Request::send_json
to take a reference todata
instead of ownership. See #737