From f0932a7b55ac444702a6bb83906bf7dd8a77021d Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 3 Apr 2023 10:16:35 +0200 Subject: [PATCH] Upgrade hyper-rustls to 0.24 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 11849e3..e13e7bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ rust-version = "1.60.0" [dependencies] base64 = "0.21.0" hyper = { version = "0.14.18", features = ["client", "http1", "http2"] } -hyper-rustls = { version = "0.23.0", default-features = false, features = ["http1", "http2", "native-tokio", "tls12"] } +hyper-rustls = { version = "0.24", default-features = false, features = ["http1", "http2", "native-tokio", "tls12"] } ring = { version = "0.16.20", features = ["std"] } serde = { version = "1.0.104", features = ["derive"] } serde_json = "1.0.78"