From dfc6885b8c4d097b6fa4306441dbda6e6d204f70 Mon Sep 17 00:00:00 2001 From: _ <_@_> Date: Thu, 31 Aug 2023 18:47:41 -0500 Subject: [PATCH] :arrow_up: deps: make reqwest use rustls instead of libcrypto Fixes a bug that a user had. --- crates/ptth_quic_client_gui/Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/crates/ptth_quic_client_gui/Cargo.toml b/crates/ptth_quic_client_gui/Cargo.toml index f891e97..09bd1fe 100644 --- a/crates/ptth_quic_client_gui/Cargo.toml +++ b/crates/ptth_quic_client_gui/Cargo.toml @@ -17,10 +17,14 @@ ptth_quic = { path = "../ptth_quic" } quinn = "0.9.3" rand = "0.8.4" rand_chacha = "0.3.1" -reqwest = "0.11.4" rmp-serde = "0.15.5" serde = "1.0.130" structopt = "0.3.20" tokio = { version = "1.8.1", features = ["full"] } tracing-subscriber = "0.2.16" tracing = "0.1.25" + +[dependencies.reqwest] +version = "0.11.4" +default-features = false +features = ["stream", "rustls-tls", "hyper-rustls"]