From e03ddc2539c092a6f37f148dfdb2c4ad465808fa Mon Sep 17 00:00:00 2001 From: _ <_@_> Date: Wed, 25 May 2022 14:17:02 -0500 Subject: [PATCH] :bug: bug: fix TLS issue in ptth_multi_call_server PTTH is supposed to pack its own PKI roots. We did this for ptth_server but a discrepancy in the Cargo.toml files for the PTTH_QUIC server caused Cargo to accidentally turn off that feature in reqwest --- crates/ptth_server/Cargo.toml | 2 +- prototypes/quic_demo/Cargo.toml | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/crates/ptth_server/Cargo.toml b/crates/ptth_server/Cargo.toml index 7506a76..1a3124a 100644 --- a/crates/ptth_server/Cargo.toml +++ b/crates/ptth_server/Cargo.toml @@ -45,7 +45,7 @@ always_equal = { path = "../always_equal", version = "1.0.0" } ptth_core = { path = "../ptth_core", version = "2.0.0" } [dependencies.reqwest] -version = "0.11.1" +version = "0.11.4" default-features = false features = ["stream", "rustls-tls", "hyper-rustls"] diff --git a/prototypes/quic_demo/Cargo.toml b/prototypes/quic_demo/Cargo.toml index d10125b..f4ae957 100644 --- a/prototypes/quic_demo/Cargo.toml +++ b/prototypes/quic_demo/Cargo.toml @@ -15,9 +15,13 @@ futures-util = "0.3.9" hyper = { version = "0.14.4", features = ["http1", "server", "stream", "tcp"] } quinn = "0.7.2" rcgen = "0.8.11" -reqwest = "0.11.4" rmp-serde = "0.15.5" 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"]