Merge #845: Cargo: use the published bdk_coin_select

36700c47596c396fe9b6cde432bd6c33961aceed Cargo: use the published bdk_coin_select (Antoine Poinsot)

Pull request description:

  Draft until https://github.com/bitcoindevkit/coin-select/pull/9 is published on crates.io.

ACKs for top commit:
  jp1ac4:
    ACK 36700c4759.

Tree-SHA512: 52caf8e79641e6f2bb0a58a75480866d5e99d9a6d9e220cd92b3de1c7f612166ee220c49f49c766271dac67c317c7b50a09763c4451988e2cfff517234833af7
This commit is contained in:
Antoine Poinsot 2023-12-07 10:04:00 +01:00
commit 870d4899b1
No known key found for this signature in database
GPG Key ID: E13FC145CD3F4304
2 changed files with 5 additions and 3 deletions

5
Cargo.lock generated
View File

@ -51,8 +51,9 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
[[package]]
name = "bdk_coin_select"
version = "0.1.0"
source = "git+https://github.com/evanlinjin/bdk?branch=new_bdk_coin_select#2a06d73ac7a5dca933b19b51078f5279691364ed"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0320167c3655e83f0415d52f39618902e449186ffc7dfb090f922f79675c316"
[[package]]
name = "bech32"

View File

@ -28,7 +28,8 @@ nonblocking_shutdown = []
# For managing transactions (it re-exports the bitcoin crate)
miniscript = { version = "10.0", features = ["serde", "compiler", "base64"] }
bdk_coin_select = { git = "https://github.com/evanlinjin/bdk", branch = "new_bdk_coin_select" }
# Coin selection algorithms for spend transaction creation.
bdk_coin_select = { version = "0.1.0" }
# Don't reinvent the wheel
dirs = "5.0"