From a8fe576fb0f62692413d87f677b661f0b700b30b Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Fri, 22 Mar 2024 14:01:23 +1100 Subject: [PATCH] Depend on bitcoin v0.32.0-rc1 Test the latest bitcoin release candidate. Includes bumping the version numbers so we can use this branch to test crates further up the stack. --- Cargo.toml | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 81b0b80..0e756cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "electrum-client" -version = "0.19.0" +version = "0.20.0" authors = ["Alekos Filini "] license = "MIT" homepage = "https://github.com/MagicalBitcoin/rust-electrum-client" @@ -18,7 +18,7 @@ path = "src/lib.rs" [dependencies] log = "^0.4" -bitcoin = { version = "0.31.0", features = ["serde"] } +bitcoin = { version = "0.32.0-rc1", features = ["serde"] } serde = { version = "^1.0", features = ["derive"] } serde_json = { version = "^1.0" } @@ -42,3 +42,27 @@ debug-calls = [] proxy = ["byteorder", "winapi", "libc"] use-rustls = ["webpki-roots", "rustls"] use-openssl = ["openssl"] + +[patch.crates-io.base58ck] +git = "https://github.com/rust-bitcoin/rust-bitcoin" +branch = "rc1-fixes" + +[patch.crates-io.bitcoin] +git = "https://github.com/rust-bitcoin/rust-bitcoin" +branch = "rc1-fixes" + +[patch.crates-io.bitcoin_hashes] +git = "https://github.com/rust-bitcoin/rust-bitcoin" +branch = "rc1-fixes" + +[patch.crates-io.bitcoin-internals] +git = "https://github.com/rust-bitcoin/rust-bitcoin" +branch = "rc1-fixes" + +[patch.crates-io.bitcoin-io] +git = "https://github.com/rust-bitcoin/rust-bitcoin" +branch = "rc1-fixes" + +[patch.crates-io.bitcoin-units] +git = "https://github.com/rust-bitcoin/rust-bitcoin" +branch = "rc1-fixes"