30 lines
949 B
Diff
30 lines
949 B
Diff
From 44cf21036646e4849e9f8566db7decb7da917394 Mon Sep 17 00:00:00 2001
|
|
From: Johan Anderholm <johan.anderholm@gmail.com>
|
|
Date: Sun, 27 Jan 2019 10:19:00 +0100
|
|
Subject: [PATCH] Disable http2
|
|
|
|
http2 requires that curl is build with nghttp2 which in turn depends on
|
|
many dependencies and ultimately a dependency loop in the case of
|
|
curl-native. As long as multiplexing is disabled in cargo this should
|
|
be fine.
|
|
|
|
Upstream-Status: Inappropriate
|
|
|
|
---
|
|
Cargo.toml | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Cargo.toml b/Cargo.toml
|
|
index 8238380861d9..ced1defea459 100644
|
|
--- a/Cargo.toml
|
|
+++ b/Cargo.toml
|
|
@@ -24,7 +24,7 @@ bytesize = "1.0"
|
|
crates-io = { path = "src/crates-io", version = "0.23" }
|
|
crossbeam-utils = "0.6"
|
|
crypto-hash = "0.3.1"
|
|
-curl = { version = "0.4.19", features = ['http2'] }
|
|
+curl = { version = "0.4.19" }
|
|
curl-sys = "0.4.15"
|
|
env_logger = "0.6.0"
|
|
pretty_env_logger = { version = "0.3", optional = true }
|