1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-09 03:43:54 +02:00

Use rustls

In particular, this enables HTTP/2 support in reqwest, which is a lot
more efficient.
This commit is contained in:
Eelco Dolstra 2019-09-12 18:22:48 +02:00
parent dd5d76e2ed
commit d832a355ea
3 changed files with 243 additions and 222 deletions

View file

@ -13,6 +13,6 @@ tar = "0.4"
libc = "0.2"
futures-preview = { version = "=0.3.0-alpha.18", features = ["compat"] }
#hyper = "0.12"
reqwest = "0.9"
reqwest = { version = "0.9", default-features = false, features = ["rustls-tls"] }
http = "0.1"
tokio = "0.1"