Skip to content

Commit c1c2103

Browse files
committed
Set bdk dependency to a custom dev branch
This branch includes: - bitcoindevkit/bdk#1855 - bitcoindevkit/bdk#1839 - the patch for esplora-client
1 parent 7e5984c commit c1c2103

File tree

2 files changed

+30
-11
lines changed

2 files changed

+30
-11
lines changed

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ futures = {version = "0.3.30"}
5858
bip39 = { version = "2.0.0", features = [ "rand", "serde" ] }
5959
miniscript = "12.2"
6060
rand = { version = "0.8.5", features = [ "std", "std_rng" ] }
61-
bdk_wallet = { package = "bdk_wallet", version = "1.0.0", git = "https://github.com/acidbunny21/bdk.git", rev = "7bfde8de554b260214a380fb301f5cfa9966d95e" }
62-
bdk_esplora = { package = "bdk_esplora", version = "0.20.1", features = [ "std", "async-https-rustls", "tokio" ], default-features = false, git = "https://github.com/acidbunny21/bdk.git", rev = "7bfde8de554b260214a380fb301f5cfa9966d95e" }
63-
bdk_bitcoind_rpc = { package = "bdk_bitcoind_rpc", version = "0.18.0", git = "https://github.com/acidbunny21/bdk.git", rev = "7bfde8de554b260214a380fb301f5cfa9966d95e" }
61+
bdk_wallet = { package = "bdk_wallet", version = "1.0.0" }
62+
bdk_esplora = { package = "bdk_esplora", version = "0.20.1", features = [ "std", "async-https-rustls", "tokio" ], default-features = false }
63+
bdk_bitcoind_rpc = { package = "bdk_bitcoind_rpc", version = "0.17.1" }
6464
# tracing and monitoring
6565
opentelemetry = "0.27.1"
6666
opentelemetry_sdk = { version = "0.27.0", features = ["tracing", "rt-tokio"] }
@@ -69,3 +69,22 @@ opentelemetry-semantic-conventions = { version = "0.27.0", features = ["semconv_
6969
tracing = { version = "0.1.41", features = ["std", "attributes"] }
7070
tracing-opentelemetry = "0.28.0"
7171
tracing-subscriber = { version = "0.3.19", features = ["std", "registry", "ansi", "fmt", "env-filter"] }
72+
73+
# bdk dep overrides (should be replaced under # bitcoin category later)
74+
[patch.crates-io.bdk_wallet]
75+
package = "bdk_wallet"
76+
version = "1.0.0"
77+
git = "https://github.com/stevenroose/bdk.git"
78+
rev = "fa11b2763b50a41f11217caf52ffa322ccb018a3"
79+
[patch.crates-io.bdk_esplora]
80+
package = "bdk_esplora"
81+
version = "0.20.1"
82+
features = [ "std", "async-https-rustls", "tokio" ]
83+
default-features = false
84+
git = "https://github.com/stevenroose/bdk.git"
85+
rev = "fa11b2763b50a41f11217caf52ffa322ccb018a3"
86+
[patch.crates-io.bdk_bitcoind_rpc]
87+
package = "bdk_bitcoind_rpc"
88+
version = "0.17.1"
89+
git = "https://github.com/stevenroose/bdk.git"
90+
rev = "fa11b2763b50a41f11217caf52ffa322ccb018a3"

0 commit comments

Comments
 (0)