mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-06 14:37:40 +03:00
Update dependencies (Hyper v1.x) (#39)
* Cargo update * Update major non-breaking changes * Add deprecation feature-flags to hyper v0.14 * Semi-upgrade hyper-rustls * Revert deprecated warnings
This commit is contained in:
parent
35927287f1
commit
3bb5dc5f3e
3 changed files with 116 additions and 109 deletions
|
@ -21,7 +21,12 @@ use crate::utils::format_url;
|
|||
const REDDIT_URL_BASE: &str = "https://oauth.reddit.com";
|
||||
|
||||
pub static CLIENT: Lazy<Client<HttpsConnector<HttpConnector>>> = Lazy::new(|| {
|
||||
let https = hyper_rustls::HttpsConnectorBuilder::new().with_native_roots().https_only().enable_http1().build();
|
||||
let https = hyper_rustls::HttpsConnectorBuilder::new()
|
||||
.with_native_roots()
|
||||
.expect("No native root certificates found")
|
||||
.https_only()
|
||||
.enable_http1()
|
||||
.build();
|
||||
client::Client::builder().build(https)
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue