Skip to content

Commit

Permalink
fix: use set version of bdk_chain for ffi builds
Browse files Browse the repository at this point in the history
  • Loading branch information
thunderbiscuit committed Jul 31, 2024
1 parent f7266d8 commit 513ea22
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/electrum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
# Keeping the path here breaks the build when using the fork as a dependency; remove once #135 is merged
# and #1491 is ready to go in
bdk_chain = { path = "../chain", version = "0.17.0" }
# bdk_chain = { version = "0.17.0" }
# Keeping the path here breaks the build when using the fork as a dependency #135 has the first line instead but for building
# the bindings we need the second line
bdk_chain = { path = "../chain", version = "0.17.0" }
#bdk_chain = { version = "0.17.0" }
# Switch the lines below once https://github.com/bitcoindevkit/rust-electrum-client/pull/135 is merged and a new version is released
# electrum-client = { version = "0.21", default-features = false }
electrum-client = { git = "https://github.com/thunderbiscuit/rust-electrum-client/", branch = "feature/rustls-ring", default-features = false }
Expand Down

0 comments on commit 513ea22

Please sign in to comment.