From c99d154d591195625d1f227450edbd233ed9514c Mon Sep 17 00:00:00 2001 From: threema-donat <129288638+threema-donat@users.noreply.github.com> Date: Mon, 10 Jun 2024 17:03:33 +0200 Subject: [PATCH] Enable required features in hyper-rustls --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ec95998b5..0a53bc071 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ http = "1" http-body-util = "0.1" hyper = "1" hyper-util = { version = "0.1.5", features = ["client-legacy", "server-auto", "http1", "http2", "server-graceful"] } -hyper-rustls = { version = "0.27", optional = true, default-features = false, features = ["http2"] } +hyper-rustls = { version = "0.27", optional = true, default-features = false, features = ["http1", "http2", "rustls-native-certs", "ring"] } hyper-tls = { version = "0.6.0", optional = true } itertools = "0.13" log = "0.4"