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"]