From c0d7d01ac30c866b01eb2bb1b63b1ede62492600 Mon Sep 17 00:00:00 2001 From: Nicola Busanello Date: Thu, 7 Mar 2024 17:28:29 +0100 Subject: [PATCH] depend on bp-wallet w/electrum support --- Cargo.lock | 11 +++++++++-- Cargo.toml | 4 ++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 613d946..559e5fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -458,16 +458,19 @@ dependencies = [ [[package]] name = "bp-util" version = "0.11.0-beta.4" -source = "git+https://github.com/BP-WG/bp-wallet?branch=master#54c39fb8d794b7e3a02348433b5cdce2f107528e" +source = "git+https://github.com/nicbus/bp-wallet?branch=electrum#8503b7bc4008014346392ef72b6839da8d2ed253" dependencies = [ "amplify", "base64", + "bitcoin", "bp-esplora", "bp-std", "bp-wallet", "clap", "descriptors", + "electrum-client", "env_logger", + "hex", "log", "psbt", "serde", @@ -480,15 +483,19 @@ dependencies = [ [[package]] name = "bp-wallet" version = "0.11.0-beta.4" -source = "git+https://github.com/BP-WG/bp-wallet?branch=master#54c39fb8d794b7e3a02348433b5cdce2f107528e" +source = "git+https://github.com/nicbus/bp-wallet?branch=electrum#8503b7bc4008014346392ef72b6839da8d2ed253" dependencies = [ "amplify", + "bitcoin", "bp-esplora", "bp-std", "cfg_eval", "descriptors", + "electrum-client", + "hex", "psbt", "serde", + "serde_json", "serde_with", "serde_yaml", "toml", diff --git a/Cargo.toml b/Cargo.toml index da44b85..37fd121 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -98,8 +98,8 @@ serde = ["serde_crate", "serde_with", "serde_yaml", "bp-std/serde", "bp-wallet/s features = ["all"] [patch.crates-io] -bp-util = { git = "https://github.com/BP-WG/bp-wallet", branch = "master" } -bp-wallet = { git = "https://github.com/BP-WG/bp-wallet", branch = "master" } +bp-util = { git = "https://github.com/nicbus/bp-wallet", branch = "electrum" } +bp-wallet = { git = "https://github.com/nicbus/bp-wallet", branch = "electrum" } rgb-core = { git = "https://github.com/RGB-WG/rgb-core", branch = "serde_fix" } rgb-std = { git = "https://github.com/RGB-WG/rgb-std", branch = "serde" } aluvm = { git = "https://github.com/AluVM/rust-aluvm", branch = "master" }