454cddb8c220ae0fa7fd252c47b772b7f94a8b36
[ldk-sample] / Cargo.lock
1 # This file is automatically @generated by Cargo.
2 # It is not intended for manual editing.
3 version = 3
4
5 [[package]]
6 name = "android_system_properties"
7 version = "0.1.5"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
10 dependencies = [
11  "libc",
12 ]
13
14 [[package]]
15 name = "autocfg"
16 version = "1.1.0"
17 source = "registry+https://github.com/rust-lang/crates.io-index"
18 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
19
20 [[package]]
21 name = "base64"
22 version = "0.13.1"
23 source = "registry+https://github.com/rust-lang/crates.io-index"
24 checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
25
26 [[package]]
27 name = "bech32"
28 version = "0.8.1"
29 source = "registry+https://github.com/rust-lang/crates.io-index"
30 checksum = "cf9ff0bbfd639f15c74af777d81383cf53efb7c93613f6cab67c6c11e05bbf8b"
31
32 [[package]]
33 name = "bech32"
34 version = "0.9.1"
35 source = "registry+https://github.com/rust-lang/crates.io-index"
36 checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445"
37
38 [[package]]
39 name = "bitcoin"
40 version = "0.29.2"
41 source = "registry+https://github.com/rust-lang/crates.io-index"
42 checksum = "0694ea59225b0c5f3cb405ff3f670e4828358ed26aec49dc352f730f0cb1a8a3"
43 dependencies = [
44  "bech32 0.9.1",
45  "bitcoin_hashes",
46  "secp256k1",
47 ]
48
49 [[package]]
50 name = "bitcoin-bech32"
51 version = "0.12.1"
52 source = "registry+https://github.com/rust-lang/crates.io-index"
53 checksum = "754eb4c7f35c031f33c95cc257b4c4192a5c9d3de637d3ee78ab052a3f35da57"
54 dependencies = [
55  "bech32 0.8.1",
56 ]
57
58 [[package]]
59 name = "bitcoin_hashes"
60 version = "0.11.0"
61 source = "registry+https://github.com/rust-lang/crates.io-index"
62 checksum = "90064b8dee6815a6470d60bad07bbbaee885c0e12d04177138fa3291a01b7bc4"
63
64 [[package]]
65 name = "bumpalo"
66 version = "3.11.1"
67 source = "registry+https://github.com/rust-lang/crates.io-index"
68 checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
69
70 [[package]]
71 name = "bytes"
72 version = "1.3.0"
73 source = "registry+https://github.com/rust-lang/crates.io-index"
74 checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c"
75
76 [[package]]
77 name = "cc"
78 version = "1.0.78"
79 source = "registry+https://github.com/rust-lang/crates.io-index"
80 checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d"
81
82 [[package]]
83 name = "cfg-if"
84 version = "1.0.0"
85 source = "registry+https://github.com/rust-lang/crates.io-index"
86 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
87
88 [[package]]
89 name = "chrono"
90 version = "0.4.23"
91 source = "registry+https://github.com/rust-lang/crates.io-index"
92 checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
93 dependencies = [
94  "iana-time-zone",
95  "js-sys",
96  "num-integer",
97  "num-traits",
98  "time",
99  "wasm-bindgen",
100  "winapi",
101 ]
102
103 [[package]]
104 name = "chunked_transfer"
105 version = "1.4.1"
106 source = "registry+https://github.com/rust-lang/crates.io-index"
107 checksum = "cca491388666e04d7248af3f60f0c40cfb0991c72205595d7c396e3510207d1a"
108
109 [[package]]
110 name = "codespan-reporting"
111 version = "0.11.1"
112 source = "registry+https://github.com/rust-lang/crates.io-index"
113 checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
114 dependencies = [
115  "termcolor",
116  "unicode-width",
117 ]
118
119 [[package]]
120 name = "core-foundation-sys"
121 version = "0.8.3"
122 source = "registry+https://github.com/rust-lang/crates.io-index"
123 checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
124
125 [[package]]
126 name = "cxx"
127 version = "1.0.86"
128 source = "registry+https://github.com/rust-lang/crates.io-index"
129 checksum = "51d1075c37807dcf850c379432f0df05ba52cc30f279c5cfc43cc221ce7f8579"
130 dependencies = [
131  "cc",
132  "cxxbridge-flags",
133  "cxxbridge-macro",
134  "link-cplusplus",
135 ]
136
137 [[package]]
138 name = "cxx-build"
139 version = "1.0.86"
140 source = "registry+https://github.com/rust-lang/crates.io-index"
141 checksum = "5044281f61b27bc598f2f6647d480aed48d2bf52d6eb0b627d84c0361b17aa70"
142 dependencies = [
143  "cc",
144  "codespan-reporting",
145  "once_cell",
146  "proc-macro2",
147  "quote",
148  "scratch",
149  "syn",
150 ]
151
152 [[package]]
153 name = "cxxbridge-flags"
154 version = "1.0.86"
155 source = "registry+https://github.com/rust-lang/crates.io-index"
156 checksum = "61b50bc93ba22c27b0d31128d2d130a0a6b3d267ae27ef7e4fae2167dfe8781c"
157
158 [[package]]
159 name = "cxxbridge-macro"
160 version = "1.0.86"
161 source = "registry+https://github.com/rust-lang/crates.io-index"
162 checksum = "39e61fda7e62115119469c7b3591fd913ecca96fb766cfd3f2e2502ab7bc87a5"
163 dependencies = [
164  "proc-macro2",
165  "quote",
166  "syn",
167 ]
168
169 [[package]]
170 name = "fuchsia-cprng"
171 version = "0.1.1"
172 source = "registry+https://github.com/rust-lang/crates.io-index"
173 checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
174
175 [[package]]
176 name = "hermit-abi"
177 version = "0.2.6"
178 source = "registry+https://github.com/rust-lang/crates.io-index"
179 checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
180 dependencies = [
181  "libc",
182 ]
183
184 [[package]]
185 name = "iana-time-zone"
186 version = "0.1.53"
187 source = "registry+https://github.com/rust-lang/crates.io-index"
188 checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
189 dependencies = [
190  "android_system_properties",
191  "core-foundation-sys",
192  "iana-time-zone-haiku",
193  "js-sys",
194  "wasm-bindgen",
195  "winapi",
196 ]
197
198 [[package]]
199 name = "iana-time-zone-haiku"
200 version = "0.1.1"
201 source = "registry+https://github.com/rust-lang/crates.io-index"
202 checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
203 dependencies = [
204  "cxx",
205  "cxx-build",
206 ]
207
208 [[package]]
209 name = "itoa"
210 version = "1.0.5"
211 source = "registry+https://github.com/rust-lang/crates.io-index"
212 checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
213
214 [[package]]
215 name = "js-sys"
216 version = "0.3.60"
217 source = "registry+https://github.com/rust-lang/crates.io-index"
218 checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
219 dependencies = [
220  "wasm-bindgen",
221 ]
222
223 [[package]]
224 name = "ldk-sample"
225 version = "0.1.0"
226 dependencies = [
227  "base64",
228  "bech32 0.8.1",
229  "bitcoin",
230  "bitcoin-bech32",
231  "chrono",
232  "libc",
233  "lightning",
234  "lightning-background-processor",
235  "lightning-block-sync",
236  "lightning-invoice",
237  "lightning-net-tokio",
238  "lightning-persister",
239  "lightning-rapid-gossip-sync",
240  "rand",
241  "serde_json",
242  "tokio",
243 ]
244
245 [[package]]
246 name = "libc"
247 version = "0.2.139"
248 source = "registry+https://github.com/rust-lang/crates.io-index"
249 checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
250
251 [[package]]
252 name = "lightning"
253 version = "0.0.116"
254 source = "registry+https://github.com/rust-lang/crates.io-index"
255 checksum = "90a0f2155316f1570446a0447c993480673f840748c8ed25bbc59dfc442ac770"
256 dependencies = [
257  "bitcoin",
258 ]
259
260 [[package]]
261 name = "lightning-background-processor"
262 version = "0.0.116"
263 source = "registry+https://github.com/rust-lang/crates.io-index"
264 checksum = "398b68a96cceb3c1227504bd5faeb74f26c3233447bc10cc1cb2c67e01b51556"
265 dependencies = [
266  "bitcoin",
267  "lightning",
268  "lightning-rapid-gossip-sync",
269 ]
270
271 [[package]]
272 name = "lightning-block-sync"
273 version = "0.0.116"
274 source = "registry+https://github.com/rust-lang/crates.io-index"
275 checksum = "d94c276dbe2a777d58ed6ececca96006247a4717c00ac4cdfff62d76852be783"
276 dependencies = [
277  "bitcoin",
278  "chunked_transfer",
279  "lightning",
280  "serde_json",
281 ]
282
283 [[package]]
284 name = "lightning-invoice"
285 version = "0.24.0"
286 source = "registry+https://github.com/rust-lang/crates.io-index"
287 checksum = "1788c0158526ec27a502043c2911ea6ea58fdc656bdf8749484942c07b790d23"
288 dependencies = [
289  "bech32 0.9.1",
290  "bitcoin",
291  "bitcoin_hashes",
292  "lightning",
293  "num-traits",
294  "secp256k1",
295 ]
296
297 [[package]]
298 name = "lightning-net-tokio"
299 version = "0.0.116"
300 source = "registry+https://github.com/rust-lang/crates.io-index"
301 checksum = "366c0ae225736cbc03555bd5fb4b44b2e8fe2ca3c868ec53a4b325c38b2ab2bd"
302 dependencies = [
303  "bitcoin",
304  "lightning",
305  "tokio",
306 ]
307
308 [[package]]
309 name = "lightning-persister"
310 version = "0.0.116"
311 source = "registry+https://github.com/rust-lang/crates.io-index"
312 checksum = "93caaafeb42115b70119619c2420e362cce776670427fc4ced3e6df77b41c0b6"
313 dependencies = [
314  "bitcoin",
315  "libc",
316  "lightning",
317  "winapi",
318 ]
319
320 [[package]]
321 name = "lightning-rapid-gossip-sync"
322 version = "0.0.116"
323 source = "registry+https://github.com/rust-lang/crates.io-index"
324 checksum = "8a07af5814234924e623bca499e003fca1864024d5bd984e752230f73a131584"
325 dependencies = [
326  "bitcoin",
327  "lightning",
328 ]
329
330 [[package]]
331 name = "link-cplusplus"
332 version = "1.0.8"
333 source = "registry+https://github.com/rust-lang/crates.io-index"
334 checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
335 dependencies = [
336  "cc",
337 ]
338
339 [[package]]
340 name = "log"
341 version = "0.4.17"
342 source = "registry+https://github.com/rust-lang/crates.io-index"
343 checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
344 dependencies = [
345  "cfg-if",
346 ]
347
348 [[package]]
349 name = "memchr"
350 version = "2.5.0"
351 source = "registry+https://github.com/rust-lang/crates.io-index"
352 checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
353
354 [[package]]
355 name = "mio"
356 version = "0.7.14"
357 source = "registry+https://github.com/rust-lang/crates.io-index"
358 checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
359 dependencies = [
360  "libc",
361  "log",
362  "miow",
363  "ntapi",
364  "winapi",
365 ]
366
367 [[package]]
368 name = "miow"
369 version = "0.3.7"
370 source = "registry+https://github.com/rust-lang/crates.io-index"
371 checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
372 dependencies = [
373  "winapi",
374 ]
375
376 [[package]]
377 name = "ntapi"
378 version = "0.3.7"
379 source = "registry+https://github.com/rust-lang/crates.io-index"
380 checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
381 dependencies = [
382  "winapi",
383 ]
384
385 [[package]]
386 name = "num-integer"
387 version = "0.1.45"
388 source = "registry+https://github.com/rust-lang/crates.io-index"
389 checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
390 dependencies = [
391  "autocfg",
392  "num-traits",
393 ]
394
395 [[package]]
396 name = "num-traits"
397 version = "0.2.15"
398 source = "registry+https://github.com/rust-lang/crates.io-index"
399 checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
400 dependencies = [
401  "autocfg",
402 ]
403
404 [[package]]
405 name = "num_cpus"
406 version = "1.15.0"
407 source = "registry+https://github.com/rust-lang/crates.io-index"
408 checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
409 dependencies = [
410  "hermit-abi",
411  "libc",
412 ]
413
414 [[package]]
415 name = "once_cell"
416 version = "1.17.0"
417 source = "registry+https://github.com/rust-lang/crates.io-index"
418 checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
419
420 [[package]]
421 name = "pin-project-lite"
422 version = "0.2.9"
423 source = "registry+https://github.com/rust-lang/crates.io-index"
424 checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
425
426 [[package]]
427 name = "proc-macro2"
428 version = "1.0.49"
429 source = "registry+https://github.com/rust-lang/crates.io-index"
430 checksum = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5"
431 dependencies = [
432  "unicode-ident",
433 ]
434
435 [[package]]
436 name = "quote"
437 version = "1.0.23"
438 source = "registry+https://github.com/rust-lang/crates.io-index"
439 checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
440 dependencies = [
441  "proc-macro2",
442 ]
443
444 [[package]]
445 name = "rand"
446 version = "0.4.6"
447 source = "registry+https://github.com/rust-lang/crates.io-index"
448 checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
449 dependencies = [
450  "fuchsia-cprng",
451  "libc",
452  "rand_core 0.3.1",
453  "rdrand",
454  "winapi",
455 ]
456
457 [[package]]
458 name = "rand_core"
459 version = "0.3.1"
460 source = "registry+https://github.com/rust-lang/crates.io-index"
461 checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
462 dependencies = [
463  "rand_core 0.4.2",
464 ]
465
466 [[package]]
467 name = "rand_core"
468 version = "0.4.2"
469 source = "registry+https://github.com/rust-lang/crates.io-index"
470 checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
471
472 [[package]]
473 name = "rdrand"
474 version = "0.4.0"
475 source = "registry+https://github.com/rust-lang/crates.io-index"
476 checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
477 dependencies = [
478  "rand_core 0.3.1",
479 ]
480
481 [[package]]
482 name = "ryu"
483 version = "1.0.12"
484 source = "registry+https://github.com/rust-lang/crates.io-index"
485 checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
486
487 [[package]]
488 name = "scratch"
489 version = "1.0.3"
490 source = "registry+https://github.com/rust-lang/crates.io-index"
491 checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2"
492
493 [[package]]
494 name = "secp256k1"
495 version = "0.24.2"
496 source = "registry+https://github.com/rust-lang/crates.io-index"
497 checksum = "d9512ffd81e3a3503ed401f79c33168b9148c75038956039166cd750eaa037c3"
498 dependencies = [
499  "bitcoin_hashes",
500  "secp256k1-sys",
501 ]
502
503 [[package]]
504 name = "secp256k1-sys"
505 version = "0.6.1"
506 source = "registry+https://github.com/rust-lang/crates.io-index"
507 checksum = "83080e2c2fc1006e625be82e5d1eb6a43b7fd9578b617fcc55814daf286bba4b"
508 dependencies = [
509  "cc",
510 ]
511
512 [[package]]
513 name = "serde"
514 version = "1.0.152"
515 source = "registry+https://github.com/rust-lang/crates.io-index"
516 checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
517
518 [[package]]
519 name = "serde_json"
520 version = "1.0.91"
521 source = "registry+https://github.com/rust-lang/crates.io-index"
522 checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883"
523 dependencies = [
524  "itoa",
525  "ryu",
526  "serde",
527 ]
528
529 [[package]]
530 name = "syn"
531 version = "1.0.107"
532 source = "registry+https://github.com/rust-lang/crates.io-index"
533 checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
534 dependencies = [
535  "proc-macro2",
536  "quote",
537  "unicode-ident",
538 ]
539
540 [[package]]
541 name = "termcolor"
542 version = "1.1.3"
543 source = "registry+https://github.com/rust-lang/crates.io-index"
544 checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
545 dependencies = [
546  "winapi-util",
547 ]
548
549 [[package]]
550 name = "time"
551 version = "0.1.45"
552 source = "registry+https://github.com/rust-lang/crates.io-index"
553 checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
554 dependencies = [
555  "libc",
556  "wasi",
557  "winapi",
558 ]
559
560 [[package]]
561 name = "tokio"
562 version = "1.14.1"
563 source = "registry+https://github.com/rust-lang/crates.io-index"
564 checksum = "b9d0183f6f6001549ab68f8c7585093bb732beefbcf6d23a10b9b95c73a1dd49"
565 dependencies = [
566  "autocfg",
567  "bytes",
568  "libc",
569  "memchr",
570  "mio",
571  "num_cpus",
572  "pin-project-lite",
573  "tokio-macros",
574  "winapi",
575 ]
576
577 [[package]]
578 name = "tokio-macros"
579 version = "1.8.2"
580 source = "registry+https://github.com/rust-lang/crates.io-index"
581 checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8"
582 dependencies = [
583  "proc-macro2",
584  "quote",
585  "syn",
586 ]
587
588 [[package]]
589 name = "unicode-ident"
590 version = "1.0.6"
591 source = "registry+https://github.com/rust-lang/crates.io-index"
592 checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
593
594 [[package]]
595 name = "unicode-width"
596 version = "0.1.10"
597 source = "registry+https://github.com/rust-lang/crates.io-index"
598 checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
599
600 [[package]]
601 name = "wasi"
602 version = "0.10.0+wasi-snapshot-preview1"
603 source = "registry+https://github.com/rust-lang/crates.io-index"
604 checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
605
606 [[package]]
607 name = "wasm-bindgen"
608 version = "0.2.83"
609 source = "registry+https://github.com/rust-lang/crates.io-index"
610 checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
611 dependencies = [
612  "cfg-if",
613  "wasm-bindgen-macro",
614 ]
615
616 [[package]]
617 name = "wasm-bindgen-backend"
618 version = "0.2.83"
619 source = "registry+https://github.com/rust-lang/crates.io-index"
620 checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
621 dependencies = [
622  "bumpalo",
623  "log",
624  "once_cell",
625  "proc-macro2",
626  "quote",
627  "syn",
628  "wasm-bindgen-shared",
629 ]
630
631 [[package]]
632 name = "wasm-bindgen-macro"
633 version = "0.2.83"
634 source = "registry+https://github.com/rust-lang/crates.io-index"
635 checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
636 dependencies = [
637  "quote",
638  "wasm-bindgen-macro-support",
639 ]
640
641 [[package]]
642 name = "wasm-bindgen-macro-support"
643 version = "0.2.83"
644 source = "registry+https://github.com/rust-lang/crates.io-index"
645 checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
646 dependencies = [
647  "proc-macro2",
648  "quote",
649  "syn",
650  "wasm-bindgen-backend",
651  "wasm-bindgen-shared",
652 ]
653
654 [[package]]
655 name = "wasm-bindgen-shared"
656 version = "0.2.83"
657 source = "registry+https://github.com/rust-lang/crates.io-index"
658 checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
659
660 [[package]]
661 name = "winapi"
662 version = "0.3.9"
663 source = "registry+https://github.com/rust-lang/crates.io-index"
664 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
665 dependencies = [
666  "winapi-i686-pc-windows-gnu",
667  "winapi-x86_64-pc-windows-gnu",
668 ]
669
670 [[package]]
671 name = "winapi-i686-pc-windows-gnu"
672 version = "0.4.0"
673 source = "registry+https://github.com/rust-lang/crates.io-index"
674 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
675
676 [[package]]
677 name = "winapi-util"
678 version = "0.1.5"
679 source = "registry+https://github.com/rust-lang/crates.io-index"
680 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
681 dependencies = [
682  "winapi",
683 ]
684
685 [[package]]
686 name = "winapi-x86_64-pc-windows-gnu"
687 version = "0.4.0"
688 source = "registry+https://github.com/rust-lang/crates.io-index"
689 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"