From 14e7a5c4b40fcedc694742fe4f24cdf281c294f9 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.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bdk-ffi/Cargo.toml b/bdk-ffi/Cargo.toml index fdb03e97..17d8ba87 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", 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" }