From adde75f1417701ca49f4068c20baf0f17713b2d0 Mon Sep 17 00:00:00 2001 From: Leo Nash Date: Tue, 19 May 2026 02:36:51 +0000 Subject: [PATCH] electrsd: set default features for bitreq If and only if the download feature is set, bitreq is required. In that case the bitreq std feature is needed, so we enable default-features for bitreq to set the std feature. No other bitreq feature is enabled. --- electrsd/Cargo.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/electrsd/Cargo.toml b/electrsd/Cargo.toml index 52f103dc..b2bebee8 100644 --- a/electrsd/Cargo.toml +++ b/electrsd/Cargo.toml @@ -29,9 +29,7 @@ zip = { version = "0.6", default-features = false, optional = true, features = [ "bzip2", "deflate", ] } -bitreq = { version = "0.3.5", path = "../bitreq", default-features = false, optional = true, features = [ - "https", -] } +bitreq = { version = "0.3.5", path = "../bitreq", optional = true, features = ["https"] } [features] legacy = []