From 5e79b81a6a3f7012153fea469720fab153266479 Mon Sep 17 00:00:00 2001 From: LLFourn Date: Wed, 4 Oct 2023 10:52:12 +1100 Subject: [PATCH] fix: Remove dependency on unnecessary bdk_chain features --- crates/electrum/Cargo.toml | 2 +- crates/esplora/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/electrum/Cargo.toml b/crates/electrum/Cargo.toml index dffd7c08..5223b84d 100644 --- a/crates/electrum/Cargo.toml +++ b/crates/electrum/Cargo.toml @@ -12,6 +12,6 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bdk_chain = { path = "../chain", version = "0.5.0", features = ["serde", "miniscript"] } +bdk_chain = { path = "../chain", version = "0.5.0", default-features = false } electrum-client = { version = "0.18" } #rustls = { version = "=0.21.1", optional = true, features = ["dangerous_configuration"] } diff --git a/crates/esplora/Cargo.toml b/crates/esplora/Cargo.toml index 0fffeda6..3ee1575f 100644 --- a/crates/esplora/Cargo.toml +++ b/crates/esplora/Cargo.toml @@ -12,7 +12,7 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bdk_chain = { path = "../chain", version = "0.5.0", default-features = false, features = ["serde", "miniscript"] } +bdk_chain = { path = "../chain", version = "0.5.0", default-features = false } esplora-client = { version = "0.6.0", default-features = false } async-trait = { version = "0.1.66", optional = true } futures = { version = "0.3.26", optional = true }