From: LLFourn Date: Tue, 3 Oct 2023 23:52:12 +0000 (+1100) Subject: fix: Remove dependency on unnecessary bdk_chain features X-Git-Tag: v1.0.0-alpha.2~7^2 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/enum.EncodeError.html?a=commitdiff_plain;h=5e79b81a6a3f7012153fea469720fab153266479;p=bdk fix: Remove dependency on unnecessary bdk_chain features --- 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 }