summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-01-03 14:15:19 +0100
committerGitHub <noreply@github.com>2020-01-03 14:15:19 +0100
commit5e61af744789d068f4caf313a4e980c63a6c97fe (patch)
tree0922de78c9dacccbaf41a42383dba8df8c81ceb4 /cli
parent6dbf1c0eed6a77791cfc41308fab3bb3aa5ffc07 (diff)
chore: disable default reqwest features (#3586)
Diffstat (limited to 'cli')
-rw-r--r--cli/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 38eff58ac..14731e0a0 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -44,7 +44,7 @@ log = "0.4.8"
rand = "0.7.2"
regex = "1.3.1"
remove_dir_all = "0.5.2"
-reqwest = { version = "0.10.0", features = ["rustls-tls", "stream"] }
+reqwest = { version = "0.10.0", default-features = false, features = ["rustls-tls", "stream"] }
ring = "0.16.9"
rustyline = "5.0.4"
serde = { version = "1.0.102", features = ["derive"] }