xref: /cloud-hypervisor/fuzz/Cargo.lock (revision 9af2968a7dc47b89bf07ea9dc5e735084efcfa3a)
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 3
4
5[[package]]
6name = "acpi_tables"
7version = "0.1.0"
8dependencies = [
9 "vm-memory",
10]
11
12[[package]]
13name = "ansi_term"
14version = "0.11.0"
15source = "registry+https://github.com/rust-lang/crates.io-index"
16checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
17dependencies = [
18 "winapi",
19]
20
21[[package]]
22name = "anyhow"
23version = "1.0.42"
24source = "registry+https://github.com/rust-lang/crates.io-index"
25checksum = "595d3cfa7a60d4555cb5067b99f07142a08ea778de5cf993f7b75c7d8fabc486"
26
27[[package]]
28name = "api_client"
29version = "0.1.0"
30
31[[package]]
32name = "arbitrary"
33version = "1.0.1"
34source = "registry+https://github.com/rust-lang/crates.io-index"
35checksum = "237430fd6ed3740afe94eefcc278ae21e050285be882804e0d6e8695f0c94691"
36
37[[package]]
38name = "arc-swap"
39version = "1.3.0"
40source = "registry+https://github.com/rust-lang/crates.io-index"
41checksum = "e906254e445520903e7fc9da4f709886c84ae4bc4ddaf0e093188d66df4dc820"
42
43[[package]]
44name = "arch"
45version = "0.1.0"
46dependencies = [
47 "acpi_tables",
48 "anyhow",
49 "byteorder",
50 "fdt",
51 "hypervisor",
52 "libc",
53 "linux-loader",
54 "log",
55 "serde",
56 "thiserror",
57 "versionize",
58 "versionize_derive",
59 "vm-fdt",
60 "vm-memory",
61 "vm-migration",
62]
63
64[[package]]
65name = "atty"
66version = "0.2.14"
67source = "registry+https://github.com/rust-lang/crates.io-index"
68checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
69dependencies = [
70 "hermit-abi",
71 "libc",
72 "winapi",
73]
74
75[[package]]
76name = "bincode"
77version = "1.3.3"
78source = "registry+https://github.com/rust-lang/crates.io-index"
79checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
80dependencies = [
81 "serde",
82]
83
84[[package]]
85name = "bitflags"
86version = "1.2.1"
87source = "registry+https://github.com/rust-lang/crates.io-index"
88checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
89
90[[package]]
91name = "block_util"
92version = "0.1.0"
93dependencies = [
94 "io-uring",
95 "libc",
96 "log",
97 "qcow",
98 "thiserror",
99 "versionize",
100 "versionize_derive",
101 "virtio-bindings",
102 "vm-memory",
103 "vm-virtio",
104 "vmm-sys-util",
105]
106
107[[package]]
108name = "byteorder"
109version = "1.4.3"
110source = "registry+https://github.com/rust-lang/crates.io-index"
111checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
112
113[[package]]
114name = "cc"
115version = "1.0.69"
116source = "registry+https://github.com/rust-lang/crates.io-index"
117checksum = "e70cc2f62c6ce1868963827bd677764c62d07c3d9a3e1fb1177ee1a9ab199eb2"
118
119[[package]]
120name = "cfg-if"
121version = "1.0.0"
122source = "registry+https://github.com/rust-lang/crates.io-index"
123checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
124
125[[package]]
126name = "clap"
127version = "2.33.3"
128source = "registry+https://github.com/rust-lang/crates.io-index"
129checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
130dependencies = [
131 "ansi_term",
132 "atty",
133 "bitflags",
134 "strsim",
135 "term_size",
136 "textwrap",
137 "unicode-width",
138 "vec_map",
139]
140
141[[package]]
142name = "cloud-hypervisor"
143version = "16.0.0"
144dependencies = [
145 "anyhow",
146 "api_client",
147 "clap",
148 "epoll",
149 "event_monitor",
150 "hypervisor",
151 "libc",
152 "log",
153 "option_parser",
154 "seccomp",
155 "serde_json",
156 "signal-hook",
157 "thiserror",
158 "vm-memory",
159 "vmm",
160 "vmm-sys-util",
161]
162
163[[package]]
164name = "cloud-hypervisor-fuzz"
165version = "0.0.0"
166dependencies = [
167 "block_util",
168 "cloud-hypervisor",
169 "libc",
170 "libfuzzer-sys",
171 "qcow",
172 "seccomp",
173 "virtio-devices",
174 "vm-memory",
175 "vm-virtio",
176 "vmm-sys-util",
177]
178
179[[package]]
180name = "crc64"
181version = "1.0.0"
182source = "registry+https://github.com/rust-lang/crates.io-index"
183checksum = "55626594feae15d266d52440b26ff77de0e22230cf0c113abe619084c1ddc910"
184
185[[package]]
186name = "devices"
187version = "0.1.0"
188dependencies = [
189 "acpi_tables",
190 "anyhow",
191 "arch",
192 "bitflags",
193 "byteorder",
194 "epoll",
195 "libc",
196 "log",
197 "versionize",
198 "versionize_derive",
199 "vm-device",
200 "vm-memory",
201 "vm-migration",
202 "vmm-sys-util",
203]
204
205[[package]]
206name = "epoll"
207version = "4.3.1"
208source = "registry+https://github.com/rust-lang/crates.io-index"
209checksum = "20df693c700404f7e19d4d6fae6b15215d2913c27955d2b9d6f2c0f537511cd0"
210dependencies = [
211 "bitflags",
212 "libc",
213]
214
215[[package]]
216name = "event_monitor"
217version = "0.1.0"
218dependencies = [
219 "libc",
220 "serde",
221 "serde_derive",
222 "serde_json",
223]
224
225[[package]]
226name = "fdt"
227version = "0.1.3"
228source = "registry+https://github.com/rust-lang/crates.io-index"
229checksum = "b643857cf70949306b81d7e92cb9d47add673868edac9863c4a49c42feaf3f1e"
230
231[[package]]
232name = "hermit-abi"
233version = "0.1.19"
234source = "registry+https://github.com/rust-lang/crates.io-index"
235checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
236dependencies = [
237 "libc",
238]
239
240[[package]]
241name = "hypervisor"
242version = "0.1.0"
243dependencies = [
244 "anyhow",
245 "epoll",
246 "iced-x86",
247 "kvm-bindings",
248 "kvm-ioctls",
249 "libc",
250 "log",
251 "serde",
252 "serde_derive",
253 "serde_json",
254 "thiserror",
255 "vm-memory",
256 "vmm-sys-util",
257]
258
259[[package]]
260name = "iced-x86"
261version = "1.13.0"
262source = "registry+https://github.com/rust-lang/crates.io-index"
263checksum = "94ef7eabb0e712d4f12aea976b2deb876739dc70fd787df3876c75c9b7bcf0be"
264dependencies = [
265 "lazy_static",
266 "static_assertions",
267]
268
269[[package]]
270name = "io-uring"
271version = "0.5.1"
272source = "registry+https://github.com/rust-lang/crates.io-index"
273checksum = "fb82832e05cc4ca298f198a8db108837b4f7b7b1248e3cba8e48f151aece80cf"
274dependencies = [
275 "bitflags",
276 "libc",
277]
278
279[[package]]
280name = "itoa"
281version = "0.4.7"
282source = "registry+https://github.com/rust-lang/crates.io-index"
283checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
284
285[[package]]
286name = "kvm-bindings"
287version = "0.4.0"
288source = "git+https://github.com/cloud-hypervisor/kvm-bindings?branch=ch-v0.4.0#1a68725639283e622f4bb64584885b30bfe8be44"
289dependencies = [
290 "serde",
291 "serde_derive",
292 "vmm-sys-util",
293]
294
295[[package]]
296name = "kvm-ioctls"
297version = "0.9.0"
298source = "registry+https://github.com/rust-lang/crates.io-index"
299checksum = "f2924454e22895c738e43331ae310459c74a11ded9c97dc250129ee10d2f9ca2"
300dependencies = [
301 "kvm-bindings",
302 "libc",
303 "vmm-sys-util",
304]
305
306[[package]]
307name = "lazy_static"
308version = "1.4.0"
309source = "registry+https://github.com/rust-lang/crates.io-index"
310checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
311
312[[package]]
313name = "libc"
314version = "0.2.98"
315source = "registry+https://github.com/rust-lang/crates.io-index"
316checksum = "320cfe77175da3a483efed4bc0adc1968ca050b098ce4f2f1c13a56626128790"
317
318[[package]]
319name = "libfuzzer-sys"
320version = "0.4.2"
321source = "registry+https://github.com/rust-lang/crates.io-index"
322checksum = "36a9a84a6e8b55dfefb04235e55edb2b9a2a18488fcae777a6bdaa6f06f1deb3"
323dependencies = [
324 "arbitrary",
325 "cc",
326 "once_cell",
327]
328
329[[package]]
330name = "linux-loader"
331version = "0.3.0"
332source = "registry+https://github.com/rust-lang/crates.io-index"
333checksum = "c819cc8275b0f2c1ed9feec455ca288b45d82932384a6a5f7a86812ee3427459"
334dependencies = [
335 "vm-memory",
336]
337
338[[package]]
339name = "log"
340version = "0.4.14"
341source = "registry+https://github.com/rust-lang/crates.io-index"
342checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
343dependencies = [
344 "cfg-if",
345]
346
347[[package]]
348name = "micro_http"
349version = "0.1.0"
350source = "git+https://github.com/firecracker-microvm/micro-http?branch=main#9b605a8b61df602cda62076d30d9f70307ea336f"
351dependencies = [
352 "libc",
353 "vmm-sys-util",
354]
355
356[[package]]
357name = "net_gen"
358version = "0.1.0"
359dependencies = [
360 "vmm-sys-util",
361]
362
363[[package]]
364name = "net_util"
365version = "0.1.0"
366dependencies = [
367 "epoll",
368 "libc",
369 "log",
370 "net_gen",
371 "rate_limiter",
372 "serde",
373 "versionize",
374 "versionize_derive",
375 "virtio-bindings",
376 "vm-memory",
377 "vm-virtio",
378 "vmm-sys-util",
379]
380
381[[package]]
382name = "once_cell"
383version = "1.8.0"
384source = "registry+https://github.com/rust-lang/crates.io-index"
385checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
386
387[[package]]
388name = "option_parser"
389version = "0.1.0"
390
391[[package]]
392name = "pci"
393version = "0.1.0"
394dependencies = [
395 "anyhow",
396 "byteorder",
397 "hypervisor",
398 "libc",
399 "log",
400 "versionize",
401 "versionize_derive",
402 "vfio-bindings",
403 "vfio-ioctls",
404 "vm-allocator",
405 "vm-device",
406 "vm-memory",
407 "vm-migration",
408 "vmm-sys-util",
409]
410
411[[package]]
412name = "proc-macro2"
413version = "1.0.27"
414source = "registry+https://github.com/rust-lang/crates.io-index"
415checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038"
416dependencies = [
417 "unicode-xid",
418]
419
420[[package]]
421name = "qcow"
422version = "0.1.0"
423dependencies = [
424 "byteorder",
425 "libc",
426 "log",
427 "remain",
428 "vmm-sys-util",
429]
430
431[[package]]
432name = "quote"
433version = "1.0.9"
434source = "registry+https://github.com/rust-lang/crates.io-index"
435checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
436dependencies = [
437 "proc-macro2",
438]
439
440[[package]]
441name = "rate_limiter"
442version = "0.1.0"
443dependencies = [
444 "libc",
445 "log",
446 "vmm-sys-util",
447]
448
449[[package]]
450name = "remain"
451version = "0.2.2"
452source = "registry+https://github.com/rust-lang/crates.io-index"
453checksum = "70ba1e78fa68412cb93ef642fd4d20b9a941be49ee9333875ebaf13112673ea7"
454dependencies = [
455 "proc-macro2",
456 "quote",
457 "syn",
458]
459
460[[package]]
461name = "ryu"
462version = "1.0.5"
463source = "registry+https://github.com/rust-lang/crates.io-index"
464checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
465
466[[package]]
467name = "seccomp"
468version = "0.1.0"
469source = "git+https://github.com/firecracker-microvm/firecracker?tag=v0.24.4#8f44986a0e956a77f2b2324c12f73bec16130c82"
470dependencies = [
471 "libc",
472]
473
474[[package]]
475name = "serde"
476version = "1.0.126"
477source = "registry+https://github.com/rust-lang/crates.io-index"
478checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03"
479
480[[package]]
481name = "serde_derive"
482version = "1.0.126"
483source = "registry+https://github.com/rust-lang/crates.io-index"
484checksum = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43"
485dependencies = [
486 "proc-macro2",
487 "quote",
488 "syn",
489]
490
491[[package]]
492name = "serde_json"
493version = "1.0.64"
494source = "registry+https://github.com/rust-lang/crates.io-index"
495checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
496dependencies = [
497 "itoa",
498 "ryu",
499 "serde",
500]
501
502[[package]]
503name = "signal-hook"
504version = "0.3.9"
505source = "registry+https://github.com/rust-lang/crates.io-index"
506checksum = "470c5a6397076fae0094aaf06a08e6ba6f37acb77d3b1b91ea92b4d6c8650c39"
507dependencies = [
508 "libc",
509 "signal-hook-registry",
510]
511
512[[package]]
513name = "signal-hook-registry"
514version = "1.4.0"
515source = "registry+https://github.com/rust-lang/crates.io-index"
516checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
517dependencies = [
518 "libc",
519]
520
521[[package]]
522name = "static_assertions"
523version = "1.1.0"
524source = "registry+https://github.com/rust-lang/crates.io-index"
525checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
526
527[[package]]
528name = "strsim"
529version = "0.8.0"
530source = "registry+https://github.com/rust-lang/crates.io-index"
531checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
532
533[[package]]
534name = "syn"
535version = "1.0.73"
536source = "registry+https://github.com/rust-lang/crates.io-index"
537checksum = "f71489ff30030d2ae598524f61326b902466f72a0fb1a8564c001cc63425bcc7"
538dependencies = [
539 "proc-macro2",
540 "quote",
541 "unicode-xid",
542]
543
544[[package]]
545name = "term_size"
546version = "0.3.2"
547source = "registry+https://github.com/rust-lang/crates.io-index"
548checksum = "1e4129646ca0ed8f45d09b929036bafad5377103edd06e50bf574b353d2b08d9"
549dependencies = [
550 "libc",
551 "winapi",
552]
553
554[[package]]
555name = "textwrap"
556version = "0.11.0"
557source = "registry+https://github.com/rust-lang/crates.io-index"
558checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
559dependencies = [
560 "term_size",
561 "unicode-width",
562]
563
564[[package]]
565name = "thiserror"
566version = "1.0.26"
567source = "registry+https://github.com/rust-lang/crates.io-index"
568checksum = "93119e4feac1cbe6c798c34d3a53ea0026b0b1de6a120deef895137c0529bfe2"
569dependencies = [
570 "thiserror-impl",
571]
572
573[[package]]
574name = "thiserror-impl"
575version = "1.0.26"
576source = "registry+https://github.com/rust-lang/crates.io-index"
577checksum = "060d69a0afe7796bf42e9e2ff91f5ee691fb15c53d38b4b62a9a53eb23164745"
578dependencies = [
579 "proc-macro2",
580 "quote",
581 "syn",
582]
583
584[[package]]
585name = "unicode-width"
586version = "0.1.8"
587source = "registry+https://github.com/rust-lang/crates.io-index"
588checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
589
590[[package]]
591name = "unicode-xid"
592version = "0.2.2"
593source = "registry+https://github.com/rust-lang/crates.io-index"
594checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
595
596[[package]]
597name = "uuid"
598version = "0.8.2"
599source = "registry+https://github.com/rust-lang/crates.io-index"
600checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
601
602[[package]]
603name = "vec_map"
604version = "0.8.2"
605source = "registry+https://github.com/rust-lang/crates.io-index"
606checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
607
608[[package]]
609name = "versionize"
610version = "0.1.6"
611source = "registry+https://github.com/rust-lang/crates.io-index"
612checksum = "7429cf68de8f091b667d27323ed323afd39584a56d533995b12ddd748e5e6ca9"
613dependencies = [
614 "bincode",
615 "crc64",
616 "proc-macro2",
617 "quote",
618 "serde",
619 "serde_derive",
620 "syn",
621 "versionize_derive",
622 "vmm-sys-util",
623]
624
625[[package]]
626name = "versionize_derive"
627version = "0.1.4"
628source = "git+https://github.com/cloud-hypervisor/versionize_derive?branch=ch#ae35ef7a3ddabd3371ab8ac0193a383aff6e4b1b"
629dependencies = [
630 "proc-macro2",
631 "quote",
632 "syn",
633]
634
635[[package]]
636name = "vfio-bindings"
637version = "0.2.0"
638source = "registry+https://github.com/rust-lang/crates.io-index"
639checksum = "4a21f546f2bda37f5a8cfb138c87f95b8e34d2d78d6a7a92ba3785f4e08604a7"
640dependencies = [
641 "vmm-sys-util",
642]
643
644[[package]]
645name = "vfio-ioctls"
646version = "0.1.0"
647source = "git+https://github.com/rust-vmm/vfio-ioctls?branch=master#9b84069e9f419c5369b9a313859cac7e9828d331"
648dependencies = [
649 "byteorder",
650 "kvm-bindings",
651 "kvm-ioctls",
652 "log",
653 "vfio-bindings",
654 "vm-memory",
655 "vmm-sys-util",
656]
657
658[[package]]
659name = "vhost"
660version = "0.1.0"
661source = "git+https://github.com/rust-vmm/vhost?branch=master#9982541776a603d30556a06df55e8c0491072763"
662dependencies = [
663 "bitflags",
664 "libc",
665 "vmm-sys-util",
666]
667
668[[package]]
669name = "virtio-bindings"
670version = "0.1.0"
671source = "registry+https://github.com/rust-lang/crates.io-index"
672checksum = "3ff512178285488516ed85f15b5d0113a7cdb89e9e8a760b269ae4f02b84bd6b"
673
674[[package]]
675name = "virtio-devices"
676version = "0.1.0"
677dependencies = [
678 "anyhow",
679 "arc-swap",
680 "block_util",
681 "byteorder",
682 "epoll",
683 "event_monitor",
684 "io-uring",
685 "libc",
686 "log",
687 "net_gen",
688 "net_util",
689 "pci",
690 "rate_limiter",
691 "seccomp",
692 "serde",
693 "serde_derive",
694 "serde_json",
695 "versionize",
696 "versionize_derive",
697 "vhost",
698 "virtio-bindings",
699 "vm-allocator",
700 "vm-device",
701 "vm-memory",
702 "vm-migration",
703 "vm-virtio",
704 "vmm-sys-util",
705]
706
707[[package]]
708name = "vm-allocator"
709version = "0.1.0"
710dependencies = [
711 "arch",
712 "libc",
713 "vm-memory",
714]
715
716[[package]]
717name = "vm-device"
718version = "0.1.0"
719dependencies = [
720 "anyhow",
721 "serde",
722 "serde_derive",
723 "serde_json",
724 "thiserror",
725 "vfio-ioctls",
726 "vm-memory",
727 "vmm-sys-util",
728]
729
730[[package]]
731name = "vm-fdt"
732version = "0.1.0"
733source = "git+https://github.com/rust-vmm/vm-fdt?branch=master#13ab882e2f8387753064351c69fbe35c422b448b"
734
735[[package]]
736name = "vm-memory"
737version = "0.5.0"
738source = "git+https://github.com/rust-vmm/vm-memory?rev=5bd7138758183a73ac0da27ce40c004d95f1a7e9#5bd7138758183a73ac0da27ce40c004d95f1a7e9"
739dependencies = [
740 "arc-swap",
741 "libc",
742 "winapi",
743]
744
745[[package]]
746name = "vm-migration"
747version = "0.1.0"
748dependencies = [
749 "anyhow",
750 "serde",
751 "serde_derive",
752 "serde_json",
753 "thiserror",
754 "versionize",
755 "versionize_derive",
756 "vm-memory",
757]
758
759[[package]]
760name = "vm-virtio"
761version = "0.1.0"
762dependencies = [
763 "log",
764 "virtio-bindings",
765 "vm-memory",
766]
767
768[[package]]
769name = "vmm"
770version = "0.1.0"
771dependencies = [
772 "acpi_tables",
773 "anyhow",
774 "arc-swap",
775 "arch",
776 "bitflags",
777 "block_util",
778 "clap",
779 "devices",
780 "epoll",
781 "event_monitor",
782 "hypervisor",
783 "lazy_static",
784 "libc",
785 "linux-loader",
786 "log",
787 "micro_http",
788 "net_util",
789 "option_parser",
790 "pci",
791 "qcow",
792 "seccomp",
793 "serde",
794 "serde_derive",
795 "serde_json",
796 "signal-hook",
797 "thiserror",
798 "uuid",
799 "versionize",
800 "versionize_derive",
801 "vfio-ioctls",
802 "virtio-devices",
803 "vm-allocator",
804 "vm-device",
805 "vm-memory",
806 "vm-migration",
807 "vm-virtio",
808 "vmm-sys-util",
809]
810
811[[package]]
812name = "vmm-sys-util"
813version = "0.8.0"
814source = "registry+https://github.com/rust-lang/crates.io-index"
815checksum = "01cf11afbc4ebc0d5c7a7748a77d19e2042677fc15faa2f4ccccb27c18a60605"
816dependencies = [
817 "bitflags",
818 "libc",
819 "serde",
820 "serde_derive",
821]
822
823[[package]]
824name = "winapi"
825version = "0.3.9"
826source = "registry+https://github.com/rust-lang/crates.io-index"
827checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
828dependencies = [
829 "winapi-i686-pc-windows-gnu",
830 "winapi-x86_64-pc-windows-gnu",
831]
832
833[[package]]
834name = "winapi-i686-pc-windows-gnu"
835version = "0.4.0"
836source = "registry+https://github.com/rust-lang/crates.io-index"
837checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
838
839[[package]]
840name = "winapi-x86_64-pc-windows-gnu"
841version = "0.4.0"
842source = "registry+https://github.com/rust-lang/crates.io-index"
843checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
844