@@ -37,16 +37,16 @@ dependencies = [
3737 "base64",
3838 "bitcoin",
3939 "hex",
40- "miniscript",
4140 "pretty_assertions",
41+ "rand",
4242 "snafu",
4343]
4444
4545[[package]]
4646name = "bitcoin"
47- version = "0.32.3 "
47+ version = "0.32.4 "
4848source = "registry+https://github.com/rust-lang/crates.io-index"
49- checksum = "0032b0e8ead7074cda7fc4f034409607e3f03a6f71d66ade8a307f79b4d99e73 "
49+ checksum = "788902099d47c8682efe6a7afb01c8d58b9794ba66c06affd81c3d6b560743eb "
5050dependencies = [
5151 "base58ck",
5252 "bech32",
@@ -90,6 +90,12 @@ dependencies = [
9090 "hex-conservative",
9191]
9292
93+ [[package]]
94+ name = "byteorder"
95+ version = "1.5.0"
96+ source = "registry+https://github.com/rust-lang/crates.io-index"
97+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
98+
9399[[package]]
94100name = "cc"
95101version = "1.1.18"
@@ -99,12 +105,29 @@ dependencies = [
99105 "shlex",
100106]
101107
108+ [[package]]
109+ name = "cfg-if"
110+ version = "1.0.0"
111+ source = "registry+https://github.com/rust-lang/crates.io-index"
112+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
113+
102114[[package]]
103115name = "diff"
104116version = "0.1.13"
105117source = "registry+https://github.com/rust-lang/crates.io-index"
106118checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
107119
120+ [[package]]
121+ name = "getrandom"
122+ version = "0.2.15"
123+ source = "registry+https://github.com/rust-lang/crates.io-index"
124+ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
125+ dependencies = [
126+ "cfg-if",
127+ "libc",
128+ "wasi",
129+ ]
130+
108131[[package]]
109132name = "heck"
110133version = "0.5.0"
@@ -133,13 +156,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
133156checksum = "3011d1213f159867b13cfd6ac92d2cd5f1345762c63be3554e84092d85a50bbd"
134157
135158[[package]]
136- name = "miniscript"
137- version = "12.2.0"
159+ name = "libc"
160+ version = "0.2.161"
161+ source = "registry+https://github.com/rust-lang/crates.io-index"
162+ checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
163+
164+ [[package]]
165+ name = "ppv-lite86"
166+ version = "0.2.20"
138167source = "registry+https://github.com/rust-lang/crates.io-index"
139- checksum = "add2d4aee30e4291ce5cffa3a322e441ff4d4bc57b38c8d9bf0e94faa50ab626 "
168+ checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04 "
140169dependencies = [
141- "bech32",
142- "bitcoin",
170+ "zerocopy",
143171]
144172
145173[[package]]
@@ -170,6 +198,36 @@ dependencies = [
170198 "proc-macro2",
171199]
172200
201+ [[package]]
202+ name = "rand"
203+ version = "0.8.5"
204+ source = "registry+https://github.com/rust-lang/crates.io-index"
205+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
206+ dependencies = [
207+ "libc",
208+ "rand_chacha",
209+ "rand_core",
210+ ]
211+
212+ [[package]]
213+ name = "rand_chacha"
214+ version = "0.3.1"
215+ source = "registry+https://github.com/rust-lang/crates.io-index"
216+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
217+ dependencies = [
218+ "ppv-lite86",
219+ "rand_core",
220+ ]
221+
222+ [[package]]
223+ name = "rand_core"
224+ version = "0.6.4"
225+ source = "registry+https://github.com/rust-lang/crates.io-index"
226+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
227+ dependencies = [
228+ "getrandom",
229+ ]
230+
173231[[package]]
174232name = "secp256k1"
175233version = "0.29.1"
@@ -233,8 +291,35 @@ version = "1.0.13"
233291source = "registry+https://github.com/rust-lang/crates.io-index"
234292checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
235293
294+ [[package]]
295+ name = "wasi"
296+ version = "0.11.0+wasi-snapshot-preview1"
297+ source = "registry+https://github.com/rust-lang/crates.io-index"
298+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
299+
236300[[package]]
237301name = "yansi"
238302version = "1.0.1"
239303source = "registry+https://github.com/rust-lang/crates.io-index"
240304checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
305+
306+ [[package]]
307+ name = "zerocopy"
308+ version = "0.7.35"
309+ source = "registry+https://github.com/rust-lang/crates.io-index"
310+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
311+ dependencies = [
312+ "byteorder",
313+ "zerocopy-derive",
314+ ]
315+
316+ [[package]]
317+ name = "zerocopy-derive"
318+ version = "0.7.35"
319+ source = "registry+https://github.com/rust-lang/crates.io-index"
320+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
321+ dependencies = [
322+ "proc-macro2",
323+ "quote",
324+ "syn",
325+ ]
0 commit comments