From d3a14d411d2a1a37f07e42c28eae3a1836aec14d Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Thu, 18 Apr 2024 15:07:48 -0400 Subject: [PATCH] fix: enable blocking-https-rustls feature on esplora client --- crates/esplora/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/esplora/Cargo.toml b/crates/esplora/Cargo.toml index 822090ad..6ad3d884 100644 --- a/crates/esplora/Cargo.toml +++ b/crates/esplora/Cargo.toml @@ -27,9 +27,10 @@ electrsd = { version= "0.27.1", features = ["bitcoind_25_0", "esplora_a33e97e1", tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] } [features] -default = ["std", "async-https", "blocking"] +default = ["std", "async-https", "blocking-https-rustls"] std = ["bdk_chain/std"] async = ["async-trait", "futures", "esplora-client/async"] async-https = ["async", "esplora-client/async-https"] async-https-rustls = ["async", "esplora-client/async-https-rustls"] blocking = ["esplora-client/blocking"] +blocking-https-rustls = ["esplora-client/blocking-https-rustls"]