diff --git a/prototypes/quic_demo/Cargo.toml b/prototypes/quic_demo/Cargo.toml index 98e2072..2ad6ff2 100644 --- a/prototypes/quic_demo/Cargo.toml +++ b/prototypes/quic_demo/Cargo.toml @@ -17,9 +17,13 @@ hyper = { version = "0.14.4", features = ["http1", "server", "stream", "tcp"] } quinn = "0.7.2" rand = "0.8.4" 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.10" +default-features = false +features = ["stream", "rustls-tls", "hyper-rustls"]