Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 80cf6c1

Browse files
committedJun 21, 2024
Depend on crate-smashing branch
Depend on the `crate-smashing` branch, which introduces the new `primitives`, `bip32`, and `psbt-v0` crates. The point of this patch is to try to show we have all the re-exports correct in `rust-bitcoin` after introducing the new crates. Apart from the manifest changes this patch changes a single line, BOOM!
1 parent 5d342eb commit 80cf6c1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+785
-658
lines changed
 

‎Cargo.toml

+46-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "miniscript"
3-
version = "12.0.0"
3+
version = "13.0.0"
44
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>, Sanket Kanjalkar <sanket1729@gmail.com>"]
55
license = "CC0-1.0"
66
homepage = "https://github.com/rust-bitcoin/rust-miniscript/"
@@ -12,25 +12,29 @@ edition = "2018"
1212

1313
[features]
1414
default = ["std"]
15-
std = ["bitcoin/std", "bitcoin/secp-recovery", "bech32/std"]
15+
std = ["bech32/std", "bip32/std", "bitcoin-primitives/crypto-std", "psbt-v0/std", "secp256k1/std", "secp256k1/recovery"]
1616
no-std = ["bech32/alloc"]
1717
compiler = []
1818
trace = []
1919

20-
serde = ["actual-serde", "bitcoin/serde"]
21-
rand = ["bitcoin/rand"]
22-
base64 = ["bitcoin/base64"]
20+
serde = ["actual-serde", "bip32/serde", "bitcoin-primitives/crypto-serde", "psbt-v0/serde", "secp256k1/serde"]
21+
rand = ["secp256k1/rand"]
22+
base64 = ["psbt-v0/base64"]
2323

2424
[dependencies]
2525
bech32 = { version = "0.11.0", default-features = false }
26-
bitcoin = { version = "0.32.0-rc1", default-features = false }
26+
bip32 = { version = "0.1.0", default-features = false }
27+
bitcoin-primitives = { version = "0.1.0", default-features = false, features = ["crypto"] }
28+
psbt-v0 = { version = "0.1.0", default-features = false, features = [] }
29+
secp256k1 = { version = "0.29.0", default-features = false, features = ["hashes", "alloc"] }
2730

2831
# Do NOT use this as a feature! Use the `serde` feature instead.
2932
actual-serde = { package = "serde", version = "1.0.103", optional = true }
3033

3134
[dev-dependencies]
3235
serde_test = "1.0.147"
33-
bitcoin = { version = "0.32.0-rc1", features = ["base64"] }
36+
bitcoin-primitives = { version = "0.1.0", features = ["crypto-std"] }
37+
psbt-v0 = { version = "0.1.0", features = ["base64"] }
3438
secp256k1 = {version = "0.29.0", features = ["rand-std"]}
3539

3640
[[example]]
@@ -69,17 +73,47 @@ required-features = ["std", "base64", "compiler"]
6973
members = ["fuzz"]
7074
exclude = ["embedded"]
7175

76+
[patch.crates-io.base58ck]
77+
path = "/home/tobin/build/github.com/tcharding/rust-bitcoin/crate-smashing/base58"
78+
# git = "https://github.com/tcharding/rust-bitcoin"
79+
# branch = "crate-smashing"
80+
81+
[patch.crates-io.bip32]
82+
path = "/home/tobin/build/github.com/tcharding/rust-bitcoin/crate-smashing/bip32"
83+
# git = "https://github.com/tcharding/rust-bitcoin"
84+
# branch = "crate-smashing"
85+
7286
[patch.crates-io.bitcoin]
73-
git = "https://github.com/rust-bitcoin/rust-bitcoin"
87+
path = "/home/tobin/build/github.com/tcharding/rust-bitcoin/crate-smashing/bitcoin"
88+
# git = "https://github.com/tcharding/rust-bitcoin"
89+
# branch = "crate-smashing"
7490

7591
[patch.crates-io.bitcoin_hashes]
76-
git = "https://github.com/rust-bitcoin/rust-bitcoin"
92+
path = "/home/tobin/build/github.com/tcharding/rust-bitcoin/crate-smashing/hashes"
93+
# git = "https://github.com/tcharding/rust-bitcoin"
94+
# branch = "crate-smashing"
7795

7896
[patch.crates-io.bitcoin-internals]
79-
git = "https://github.com/rust-bitcoin/rust-bitcoin"
97+
path = "/home/tobin/build/github.com/tcharding/rust-bitcoin/crate-smashing/internals"
98+
# git = "https://github.com/tcharding/rust-bitcoin"
99+
# branch = "crate-smashing"
80100

81101
[patch.crates-io.bitcoin-io]
82-
git = "https://github.com/rust-bitcoin/rust-bitcoin"
102+
path = "/home/tobin/build/github.com/tcharding/rust-bitcoin/crate-smashing/io"
103+
# git = "https://github.com/tcharding/rust-bitcoin"
104+
# branch = "crate-smashing"
105+
106+
[patch.crates-io.bitcoin-primitives]
107+
path = "/home/tobin/build/github.com/tcharding/rust-bitcoin/crate-smashing/primitives"
108+
# git = "https://github.com/tcharding/rust-bitcoin"
109+
# branch = "crate-smashing"
110+
111+
[patch.crates-io.psbt-v0]
112+
path = "/home/tobin/build/github.com/tcharding/rust-bitcoin/crate-smashing/psbt"
113+
# git = "https://github.com/tcharding/rust-bitcoin"
114+
# branch = "crate-smashing"
83115

84116
[patch.crates-io.bitcoin-units]
85-
git = "https://github.com/rust-bitcoin/rust-bitcoin"
117+
path = "/home/tobin/build/github.com/tcharding/rust-bitcoin/crate-smashing/units"
118+
# git = "https://github.com/tcharding/rust-bitcoin"
119+
# branch = "crate-smashing"

‎embedded/src/main.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ fn main() -> ! {
3434
)))";
3535
hprintln!("descriptor {}", descriptor).unwrap();
3636
let desc =
37-
miniscript::Descriptor::<miniscript::bitcoin::PublicKey>::from_str(descriptor).unwrap();
37+
miniscript::Descriptor::<miniscript::bitcoin_primitives::PublicKey>::from_str(descriptor).unwrap();
3838

3939
// Derive the P2SH address
4040
let p2sh_addr = desc
41-
.address(miniscript::bitcoin::Network::Bitcoin)
41+
.address(miniscript::bitcoin_primitives::Network::Bitcoin)
4242
.unwrap()
4343
.to_string();
4444
hprintln!("p2sh address {}", p2sh_addr).unwrap();

0 commit comments

Comments
 (0)
Please sign in to comment.