Getting ready for mnemonic/key generation

This commit is contained in:
Dave Hrycyszyn
2024-06-21 17:45:37 +01:00
parent ac6473bb1b
commit d0f75d443b
2 changed files with 2 additions and 1 deletions

1
Cargo.lock generated
View File

@@ -362,6 +362,7 @@ checksum = "2fc1fc1a92e0943bfbcd6eb7d32c1b2a79f2f1357eb1e2eee9d7f36d6d7ca44a"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"bdk-macros", "bdk-macros",
"bip39",
"bitcoin 0.30.2", "bitcoin 0.30.2",
"electrum-client", "electrum-client",
"getrandom 0.2.15", "getrandom 0.2.15",

View File

@@ -8,7 +8,7 @@ edition = "2021"
[dependencies] [dependencies]
anyhow = "1.0.86" anyhow = "1.0.86"
async-trait = "0.1.52" async-trait = "0.1.52"
bdk = "0.29.0" bdk = { version = "0.29.0", default-feature = false, features = ["all-keys"] }
bdk_esplora = "0.15.0" bdk_esplora = "0.15.0"
bdk_sqlite = "0.2.0" bdk_sqlite = "0.2.0"
bdk_wallet = { version = "1.0.0-alpha.13", features = ["all-keys"] } bdk_wallet = { version = "1.0.0-alpha.13", features = ["all-keys"] }