⬆️ deps: make reqwest use rustls instead of libcrypto

Fixes a bug that a user had.
main
_ 2023-08-31 18:47:41 -05:00
parent 43fe373847
commit dfc6885b8c
1 changed files with 5 additions and 1 deletions

View File

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