From 25f598ce6c0bce1809b242413ec1b27d25ffed50 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Mon, 27 May 2024 08:43:05 +0000 Subject: [PATCH] enable http2 feature for reqwest. Signed-off-by: Jason Volk --- Cargo.lock | 1 + Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 3f5b7f7e..5f3d045f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2688,6 +2688,7 @@ dependencies = [ "futures-channel", "futures-core", "futures-util", + "h2 0.4.5", "hickory-resolver", "http 1.1.0", "http-body 1.0.0", diff --git a/Cargo.toml b/Cargo.toml index 0c85b80a..303633cd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -107,6 +107,7 @@ features = [ "rustls-tls-native-roots", "socks", "hickory-dns", + "http2", ] [workspace.dependencies.serde]