Merge bitcoindevkit/bdk#1146: fix: Remove dependency on unnecessary bdk_chain features

5e79b81a6a3f7012153fea469720fab153266479 fix: Remove dependency on unnecessary bdk_chain features (LLFourn)

Pull request description:

ACKs for top commit:
  danielabrozzoni:
    utACK 5e79b81a6a3f7012153fea469720fab153266479

Tree-SHA512: 02259c2c87b46a3b16a89648ce87b36fc88a2816074de7e4dd012231c07bb5e1c2f833b6c8cab7f469c84ed0a0bc254276a6c145763daf187b2e589493892cd8
This commit is contained in:
Daniela Brozzoni 2023-10-04 16:53:47 +02:00
commit a7dbc22df1
No known key found for this signature in database
GPG Key ID: 7DE4F1FDCED0AB87
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 }