1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-07-06 04:25:00 +00:00

Updated reqwest to the latest version.

- Use the blocking client (no async).
- Disabled gzip.
- use_sys_proxy is now default.
This commit is contained in:
BlackDex 2020-03-14 23:12:45 +01:00
parent afd9f4e278
commit 1b4b40c95d
5 changed files with 392 additions and 33 deletions

View file

@ -26,7 +26,8 @@ rocket = { version = "0.5.0-dev", features = ["tls"], default-features = false }
rocket_contrib = "0.5.0-dev"
# HTTP client
reqwest = "0.9.24"
# reqwest = "0.9.24"
reqwest = { version = "0.10.4", features = ["blocking", "json"] }
# multipart/form-data support
multipart = { version = "0.16.1", features = ["server"], default-features = false }