fix: Remove dependency on unnecessary bdk_chain features

This commit is contained in:
LLFourn 2023-10-04 10:52:12 +11:00
parent 9bd528607a
commit 5e79b81a6a
No known key found for this signature in database
GPG Key ID: A27093B54DA11F65
2 changed files with 2 additions and 2 deletions

View File

@ -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"] }

View File

@ -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 }