-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test the latest bitcoin release candidate. Includes bumping the version numbers so we can use this branch to test crates further up the stack. Requires the `rc-fixes` branch. Introduces a new TODO because are currently manually handling the script code but there is a new API in `rust-bitcoin` that expects to handle the script code for us. The fix is quite invasive so for now just use `SighashCache::p2wsh_signature_hash`.
- Loading branch information
Showing
19 changed files
with
180 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "miniscript" | ||
version = "11.0.0" | ||
version = "12.0.0" | ||
authors = ["Andrew Poelstra <[email protected]>, Sanket Kanjalkar <[email protected]>"] | ||
license = "CC0-1.0" | ||
homepage = "https://github.com/rust-bitcoin/rust-miniscript/" | ||
|
@@ -13,7 +13,7 @@ edition = "2018" | |
[features] | ||
default = ["std"] | ||
std = ["bitcoin/std", "bitcoin/secp-recovery", "bech32/std"] | ||
no-std = ["bitcoin/no-std", "bech32/alloc"] | ||
no-std = ["bech32/alloc"] | ||
compiler = [] | ||
trace = [] | ||
|
||
|
@@ -23,15 +23,15 @@ base64 = ["bitcoin/base64"] | |
|
||
[dependencies] | ||
bech32 = { version = "0.11.0", default-features = false } | ||
bitcoin = { version = "0.31.0", default-features = false } | ||
bitcoin = { version = "0.32.0-rc1", default-features = false } | ||
|
||
# Do NOT use this as a feature! Use the `serde` feature instead. | ||
actual-serde = { package = "serde", version = "1.0.103", optional = true } | ||
|
||
[dev-dependencies] | ||
serde_test = "1.0.147" | ||
bitcoin = { version = "0.31.0", features = ["base64"] } | ||
secp256k1 = {version = "0.28.0", features = ["rand-std"]} | ||
bitcoin = { version = "0.32.0-rc1", features = ["base64"] } | ||
secp256k1 = {version = "0.29.0", features = ["rand-std"]} | ||
|
||
[[example]] | ||
name = "htlc" | ||
|
@@ -68,3 +68,35 @@ required-features = ["std", "base64", "compiler"] | |
[workspace] | ||
members = ["bitcoind-tests", "fuzz"] | ||
exclude = ["embedded"] | ||
|
||
[patch.crates-io.bitcoind] | ||
git = "https://github.com/tcharding/bitcoind/" | ||
branch = "test-bitcoin" | ||
|
||
[patch.crates-io.bitcoincore-rpc] | ||
git = "https://github.com/tcharding/rust-bitcoincore-rpc" | ||
branch = "test-bitcoin" | ||
|
||
[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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.