fix: use ring flag on rustls dependency for electrum client

This commit is contained in:
thunderbiscuit 2024-06-26 11:30:02 -04:00
parent 3b89af5a6e
commit 92d40a9f46
No known key found for this signature in database
GPG Key ID: 88253696EB836462
2 changed files with 6 additions and 5 deletions

8
bdk-ffi/Cargo.lock generated
View File

@ -205,7 +205,7 @@ dependencies = [
[[package]] [[package]]
name = "bdk_electrum" name = "bdk_electrum"
version = "0.15.0" version = "0.15.0"
source = "git+https://github.com/thunderbiscuit/bdk/?branch=feature/electrum-client-ring-feature#31ddf1b4b600e9bf10e622cb0dee7ff158439b48" source = "git+https://github.com/thunderbiscuit/bdk/?branch=feature/electrum-client-ring#1367d5c7c939ffd1190c08ef3fba4f8cc2b3622f"
dependencies = [ dependencies = [
"bdk_chain", "bdk_chain",
"electrum-client", "electrum-client",
@ -485,7 +485,7 @@ checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
[[package]] [[package]]
name = "electrum-client" name = "electrum-client"
version = "0.20.0" version = "0.20.0"
source = "git+https://github.com/thunderbiscuit/rust-electrum-client/?branch=feature/ring-feature#7576e1b6d1f298d270526d740b8508923f3fb790" source = "git+https://github.com/thunderbiscuit/rust-electrum-client/?branch=feature/rustls-ring#c7a96f7264348537f4b57dd149fd114f22844b16"
dependencies = [ dependencies = [
"bitcoin", "bitcoin",
"byteorder", "byteorder",
@ -1016,9 +1016,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
[[package]] [[package]]
name = "subtle" name = "subtle"
version = "2.6.0" version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d0208408ba0c3df17ed26eb06992cb1a1268d41b2c0e12e65203fbe3972cee5" checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
[[package]] [[package]]
name = "syn" name = "syn"

View File

@ -22,7 +22,8 @@ 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"] } 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 # 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. # 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", branch = "feature/electrum-client-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 = { version = "0.15.0" } # bdk_electrum = { version = "0.15.0" }
bdk_sqlite = { version = "0.2.0" } bdk_sqlite = { version = "0.2.0" }
bdk_bitcoind_rpc = { version = "0.12.0" } bdk_bitcoind_rpc = { version = "0.12.0" }