From 98514413fc8b8453f19a12d75cc3496b4d367397 Mon Sep 17 00:00:00 2001 From: Alex Koshelev Date: Thu, 8 Jun 2023 21:41:40 -0700 Subject: [PATCH] Upgrade hyper dependency 0.14.20 has a bug https://github.com/hyperium/hyper/issues/2419 that affects IPA --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index bdf20197e..f4c171bb1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,7 @@ generic-array = "0.14.6" hex = { version = "0.4", optional = true, features = ["serde"] } hkdf = "0.12.3" hpke = { version = "0.10.0", default-features = false, features = ["x25519-dalek"] } -hyper = { version = "0.14.20", optional = true, features = ["client", "h2", "stream"] } +hyper = { version = "0.14.26", optional = true, features = ["client", "h2", "stream"] } hyper-tls = { version = "0.5.0", optional = true } iai = { version = "0.1.1", optional = true } metrics = "0.20.1"