1
1
[package ]
2
2
name = " miniscript"
3
- version = " 12 .0.0"
3
+ version = " 13 .0.0"
4
4
authors = [" Andrew Poelstra <apoelstra@wpsoftware.net>, Sanket Kanjalkar <sanket1729@gmail.com>" ]
5
5
license = " CC0-1.0"
6
6
homepage = " https://github.com/rust-bitcoin/rust-miniscript/"
@@ -12,25 +12,29 @@ edition = "2018"
12
12
13
13
[features ]
14
14
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 " ]
16
16
no-std = [" bech32/alloc" ]
17
17
compiler = []
18
18
trace = []
19
19
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" ]
23
23
24
24
[dependencies ]
25
25
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" ] }
27
30
28
31
# Do NOT use this as a feature! Use the `serde` feature instead.
29
32
actual-serde = { package = " serde" , version = " 1.0.103" , optional = true }
30
33
31
34
[dev-dependencies ]
32
35
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" ] }
34
38
secp256k1 = {version = " 0.29.0" , features = [" rand-std" ]}
35
39
36
40
[[example ]]
@@ -69,17 +73,47 @@ required-features = ["std", "base64", "compiler"]
69
73
members = [" fuzz" ]
70
74
exclude = [" embedded" ]
71
75
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
+
72
86
[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"
74
90
75
91
[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"
77
95
78
96
[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"
80
100
81
101
[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"
83
115
84
116
[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"
0 commit comments