From f9d367a3fb2a5940df2d6dab062057870371e2f0 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Fri, 6 Nov 2020 14:50:40 -0800 Subject: [PATCH] use the same h2 version has hyper does this fixes error types not downcasting since different versions of h2 are in tree Signed-off-by: Eliza Weisman --- linkerd/proxy/http/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linkerd/proxy/http/Cargo.toml b/linkerd/proxy/http/Cargo.toml index de76235d56..7a37b55501 100644 --- a/linkerd/proxy/http/Cargo.toml +++ b/linkerd/proxy/http/Cargo.toml @@ -13,7 +13,7 @@ This should probably be decomposed into smaller, decoupled crates. [dependencies] bytes = "0.6" futures = { package = "futures", version = "0.3" } -h2 = "0.2.6" +h2 = { git = "https://github.com/hyperium/h2" } http = "0.2" http-body = "0.3" httparse = "1.2"