Hi there, I'm just looking around and I see #947
That's pretty dated and those functions aren't available in the recent versions of hyper. Where would I go from here:
//using the open ssl crate
let mut context_builder = SslContextBuilder::new(SslMethod::tls())?;
context_builder.set_verify(SslVerifyMode::NONE);
let ssl_context = context_builder.build();
How would I set that context to my hyper::client::Client? I don't see anything I can work with in the Client docs
Hi there, I'm just looking around and I see #947
That's pretty dated and those functions aren't available in the recent versions of hyper. Where would I go from here:
How would I set that context to my
hyper::client::Client? I don't see anything I can work with in theClientdocs