From 4f47d1b02a11fea3bc12e3542fc57a02c12b8947 Mon Sep 17 00:00:00 2001 From: kevinheavey Date: Mon, 4 Nov 2024 15:24:51 +0400 Subject: [PATCH] remove unnecessary reqwest features from rpc-client-api --- rpc-client-api/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc-client-api/Cargo.toml b/rpc-client-api/Cargo.toml index e1eee85110178e..349f06040ee9cd 100644 --- a/rpc-client-api/Cargo.toml +++ b/rpc-client-api/Cargo.toml @@ -14,7 +14,7 @@ anyhow = { workspace = true } base64 = { workspace = true } bs58 = { workspace = true, features = ["std"] } jsonrpc-core = { workspace = true } -reqwest = { workspace = true, features = ["blocking", "brotli", "deflate", "gzip", "rustls-tls", "json"] } +reqwest = { workspace = true, default-features = false, features = ["rustls-tls"] } reqwest-middleware = { workspace = true } semver = { workspace = true } serde = { workspace = true }