1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-08-06 02:59:09 +00:00

Enable socks feature for reqwest

This allowed HTTP_PROXY be set with a socks5 proxy
This commit is contained in:
Jake Howard 2021-04-07 19:25:02 +01:00
commit f7056bcaa5
No known key found for this signature in database
GPG key ID: 57AFB45680EDD477
2 changed files with 40 additions and 1 deletions

View file

@ -32,7 +32,7 @@ rocket = { version = "0.5.0-dev", features = ["tls"], default-features = false }
rocket_contrib = "0.5.0-dev"
# HTTP client
reqwest = { version = "0.11.2", features = ["blocking", "json", "gzip", "brotli"] }
reqwest = { version = "0.11.2", features = ["blocking", "json", "gzip", "brotli", "socks"] }
# multipart/form-data support
multipart = { version = "0.17.1", features = ["server"], default-features = false }