From 7e5897bd1cac82f46deea72d6ef69cf1f24cbe1e Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Thu, 27 Jun 2024 14:57:38 -0400 Subject: [PATCH] chore: disable default-features on bdk_electrum dependency --- bdk-ffi/Cargo.lock | 2 +- bdk-ffi/Cargo.toml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/bdk-ffi/Cargo.lock b/bdk-ffi/Cargo.lock index c08df9ed..a789c7c3 100644 --- a/bdk-ffi/Cargo.lock +++ b/bdk-ffi/Cargo.lock @@ -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", diff --git a/bdk-ffi/Cargo.toml b/bdk-ffi/Cargo.toml index fdb03e97..a15accba 100644 --- a/bdk-ffi/Cargo.toml +++ b/bdk-ffi/Cargo.toml @@ -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" }