Skip to content

Commit 7ce016d

Browse files
committed
chore(examples): pin chain-src crates for wallet examples
1 parent 853dda4 commit 7ce016d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

example-crates/example_wallet_electrum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ edition = "2021"
55

66
[dependencies]
77
bdk_wallet = { path = "../../crates/wallet", features = ["file_store"] }
8-
bdk_electrum = { path = "../../crates/electrum" }
8+
bdk_electrum = { version = "0.21" }
99
anyhow = "1"

example-crates/example_wallet_esplora_async/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ edition = "2021"
77

88
[dependencies]
99
bdk_wallet = { path = "../../crates/wallet", features = ["rusqlite"] }
10-
bdk_esplora = { path = "../../crates/esplora", features = ["async-https", "tokio"] }
10+
bdk_esplora = { version = "0.20", features = ["async-https", "tokio"] }
1111
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
1212
anyhow = "1"

example-crates/example_wallet_esplora_blocking/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ publish = false
88

99
[dependencies]
1010
bdk_wallet = { path = "../../crates/wallet", features = ["file_store"] }
11-
bdk_esplora = { path = "../../crates/esplora", features = ["blocking"] }
11+
bdk_esplora = { version = "0.20", features = ["blocking"] }
1212
anyhow = "1"

example-crates/example_wallet_rpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77

88
[dependencies]
99
bdk_wallet = { path = "../../crates/wallet", features = ["file_store"] }
10-
bdk_bitcoind_rpc = { path = "../../crates/bitcoind_rpc" }
10+
bdk_bitcoind_rpc = { version = "0.18" }
1111

1212
anyhow = "1"
1313
clap = { version = "4.5.17", features = ["derive", "env"] }

0 commit comments

Comments
 (0)