chore: disable default-features on bdk_electrum dependency

This commit is contained in:
thunderbiscuit 2024-06-27 14:57:38 -04:00
parent ffe0c8c1a4
commit 7e5897bd1c
No known key found for this signature in database
GPG Key ID: 88253696EB836462
2 changed files with 2 additions and 3 deletions

2
bdk-ffi/Cargo.lock generated
View File

@ -205,7 +205,7 @@ dependencies = [
[[package]]
name = "bdk_electrum"
version = "0.15.0"
source = "git+https://github.com/thunderbiscuit/bdk/?branch=feature/electrum-client-ring#1367d5c7c939ffd1190c08ef3fba4f8cc2b3622f"
source = "git+https://github.com/thunderbiscuit/bdk/?branch=feature/electrum-client-ring-ffi-alpha13#1d745e492d53937c6c405e5564798dbd8ef1c1ed"
dependencies = [
"bdk_chain",
"electrum-client",

View File

@ -22,8 +22,7 @@ bdk_wallet = { version = "1.0.0-alpha.13", features = ["all-keys", "keys-bip39"]
bdk_esplora = { version = "0.15.0", default-features = false, features = ["std", "blocking", "blocking-https-rustls"] }
# NOTE: This is a temporary workaround to use the electrum-client with the use-rustls-ring feature. It points to a fork
# of bdk in which the bdk_electrum library uses the electrum-client with the use-rustls-ring feature.
#bdk_electrum = { git = "https://github.com/thunderbiscuit/bdk/", package = "bdk_electrum", rev = "1367d5c7c939ffd1190c08ef3fba4f8cc2b3622f", features = ["use-rustls-ring"] }
bdk_electrum = { git = "https://github.com/thunderbiscuit/bdk/", package = "bdk_electrum", branch = "feature/electrum-client-ring", features = ["use-rustls-ring"] }
bdk_electrum = { git = "https://github.com/thunderbiscuit/bdk/", package = "bdk_electrum", branch = "feature/electrum-client-ring-ffi-alpha13", default-features = false, features = ["use-rustls-ring"] }
# bdk_electrum = { version = "0.15.0" }
bdk_sqlite = { version = "0.2.0" }
bdk_bitcoind_rpc = { version = "0.12.0" }