chiark / gitweb /
wip resolve
[hippotat.git] / 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 = "aho-corasick"
7 version = "0.7.18"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
10 dependencies = [
11  "memchr",
12 ]
13
14 [[package]]
15 name = "ansi_term"
16 version = "0.11.0"
17 source = "registry+https://github.com/rust-lang/crates.io-index"
18 checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
19 dependencies = [
20  "winapi",
21 ]
22
23 [[package]]
24 name = "anyhow"
25 version = "1.0.42"
26 source = "registry+https://github.com/rust-lang/crates.io-index"
27 checksum = "595d3cfa7a60d4555cb5067b99f07142a08ea778de5cf993f7b75c7d8fabc486"
28
29 [[package]]
30 name = "atty"
31 version = "0.2.14"
32 source = "registry+https://github.com/rust-lang/crates.io-index"
33 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
34 dependencies = [
35  "hermit-abi",
36  "libc",
37  "winapi",
38 ]
39
40 [[package]]
41 name = "autocfg"
42 version = "1.0.1"
43 source = "registry+https://github.com/rust-lang/crates.io-index"
44 checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
45
46 [[package]]
47 name = "bitflags"
48 version = "1.2.1"
49 source = "registry+https://github.com/rust-lang/crates.io-index"
50 checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
51
52 [[package]]
53 name = "bytes"
54 version = "1.0.1"
55 source = "registry+https://github.com/rust-lang/crates.io-index"
56 checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
57
58 [[package]]
59 name = "cfg-if"
60 version = "1.0.0"
61 source = "registry+https://github.com/rust-lang/crates.io-index"
62 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
63
64 [[package]]
65 name = "clap"
66 version = "2.33.3"
67 source = "registry+https://github.com/rust-lang/crates.io-index"
68 checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
69 dependencies = [
70  "ansi_term",
71  "atty",
72  "bitflags",
73  "strsim",
74  "textwrap",
75  "unicode-width",
76  "vec_map",
77 ]
78
79 [[package]]
80 name = "configparser"
81 version = "2.1.0"
82 source = "registry+https://github.com/rust-lang/crates.io-index"
83 checksum = "f7201ee416d124d589a820111ba755930df8b75855321a9a1b87312a0597ec8f"
84
85 [[package]]
86 name = "either"
87 version = "1.6.1"
88 source = "registry+https://github.com/rust-lang/crates.io-index"
89 checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
90
91 [[package]]
92 name = "env_logger"
93 version = "0.9.0"
94 source = "registry+https://github.com/rust-lang/crates.io-index"
95 checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
96 dependencies = [
97  "atty",
98  "humantime",
99  "log",
100  "regex",
101  "termcolor",
102 ]
103
104 [[package]]
105 name = "extend"
106 version = "1.1.1"
107 source = "registry+https://github.com/rust-lang/crates.io-index"
108 checksum = "f5c89e2933a4ec753dc007a4d6a7f9b6dc8e89b8fe89cabc252ccddf39c08bb1"
109 dependencies = [
110  "proc-macro-error",
111  "proc-macro2",
112  "quote",
113  "syn",
114 ]
115
116 [[package]]
117 name = "fehler"
118 version = "1.0.0"
119 source = "registry+https://github.com/rust-lang/crates.io-index"
120 checksum = "d5729fe49ba028cd550747b6e62cd3d841beccab5390aa398538c31a2d983635"
121 dependencies = [
122  "fehler-macros",
123 ]
124
125 [[package]]
126 name = "fehler-macros"
127 version = "1.0.0"
128 source = "registry+https://github.com/rust-lang/crates.io-index"
129 checksum = "ccb5acb1045ebbfa222e2c50679e392a71dd77030b78fb0189f2d9c5974400f9"
130 dependencies = [
131  "proc-macro2",
132  "quote",
133  "syn",
134 ]
135
136 [[package]]
137 name = "fnv"
138 version = "1.0.7"
139 source = "registry+https://github.com/rust-lang/crates.io-index"
140 checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
141
142 [[package]]
143 name = "futures-channel"
144 version = "0.3.15"
145 source = "registry+https://github.com/rust-lang/crates.io-index"
146 checksum = "e682a68b29a882df0545c143dc3646daefe80ba479bcdede94d5a703de2871e2"
147 dependencies = [
148  "futures-core",
149 ]
150
151 [[package]]
152 name = "futures-core"
153 version = "0.3.15"
154 source = "registry+https://github.com/rust-lang/crates.io-index"
155 checksum = "0402f765d8a89a26043b889b26ce3c4679d268fa6bb22cd7c6aad98340e179d1"
156
157 [[package]]
158 name = "futures-task"
159 version = "0.3.15"
160 source = "registry+https://github.com/rust-lang/crates.io-index"
161 checksum = "8a16bef9fc1a4dddb5bee51c989e3fbba26569cbb0e31f5b303c184e3dd33dae"
162
163 [[package]]
164 name = "futures-util"
165 version = "0.3.15"
166 source = "registry+https://github.com/rust-lang/crates.io-index"
167 checksum = "feb5c238d27e2bf94ffdfd27b2c29e3df4a68c4193bb6427384259e2bf191967"
168 dependencies = [
169  "autocfg",
170  "futures-core",
171  "futures-task",
172  "pin-project-lite",
173  "pin-utils",
174 ]
175
176 [[package]]
177 name = "heck"
178 version = "0.3.3"
179 source = "registry+https://github.com/rust-lang/crates.io-index"
180 checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
181 dependencies = [
182  "unicode-segmentation",
183 ]
184
185 [[package]]
186 name = "hermit-abi"
187 version = "0.1.19"
188 source = "registry+https://github.com/rust-lang/crates.io-index"
189 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
190 dependencies = [
191  "libc",
192 ]
193
194 [[package]]
195 name = "hippotat"
196 version = "0.0.0"
197 dependencies = [
198  "anyhow",
199  "configparser",
200  "env_logger",
201  "extend",
202  "fehler",
203  "hyper",
204  "itertools",
205  "lazy-regex",
206  "log",
207  "regex",
208  "structopt",
209  "tokio",
210  "void",
211 ]
212
213 [[package]]
214 name = "http"
215 version = "0.2.4"
216 source = "registry+https://github.com/rust-lang/crates.io-index"
217 checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11"
218 dependencies = [
219  "bytes",
220  "fnv",
221  "itoa",
222 ]
223
224 [[package]]
225 name = "http-body"
226 version = "0.4.2"
227 source = "registry+https://github.com/rust-lang/crates.io-index"
228 checksum = "60daa14be0e0786db0f03a9e57cb404c9d756eed2b6c62b9ea98ec5743ec75a9"
229 dependencies = [
230  "bytes",
231  "http",
232  "pin-project-lite",
233 ]
234
235 [[package]]
236 name = "httparse"
237 version = "1.4.1"
238 source = "registry+https://github.com/rust-lang/crates.io-index"
239 checksum = "f3a87b616e37e93c22fb19bcd386f02f3af5ea98a25670ad0fce773de23c5e68"
240
241 [[package]]
242 name = "httpdate"
243 version = "1.0.1"
244 source = "registry+https://github.com/rust-lang/crates.io-index"
245 checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440"
246
247 [[package]]
248 name = "humantime"
249 version = "2.1.0"
250 source = "registry+https://github.com/rust-lang/crates.io-index"
251 checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
252
253 [[package]]
254 name = "hyper"
255 version = "0.14.10"
256 source = "registry+https://github.com/rust-lang/crates.io-index"
257 checksum = "7728a72c4c7d72665fde02204bcbd93b247721025b222ef78606f14513e0fd03"
258 dependencies = [
259  "bytes",
260  "futures-channel",
261  "futures-core",
262  "futures-util",
263  "http",
264  "http-body",
265  "httparse",
266  "httpdate",
267  "itoa",
268  "pin-project-lite",
269  "tokio",
270  "tower-service",
271  "tracing",
272  "want",
273 ]
274
275 [[package]]
276 name = "instant"
277 version = "0.1.10"
278 source = "registry+https://github.com/rust-lang/crates.io-index"
279 checksum = "bee0328b1209d157ef001c94dd85b4f8f64139adb0eac2659f4b08382b2f474d"
280 dependencies = [
281  "cfg-if",
282 ]
283
284 [[package]]
285 name = "itertools"
286 version = "0.10.1"
287 source = "registry+https://github.com/rust-lang/crates.io-index"
288 checksum = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf"
289 dependencies = [
290  "either",
291 ]
292
293 [[package]]
294 name = "itoa"
295 version = "0.4.7"
296 source = "registry+https://github.com/rust-lang/crates.io-index"
297 checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
298
299 [[package]]
300 name = "lazy-regex"
301 version = "2.2.1"
302 source = "registry+https://github.com/rust-lang/crates.io-index"
303 checksum = "17d198f91272f6e788a5c0bd5d741cf778da4e5bc761ec67b32d5d3b0db34a54"
304 dependencies = [
305  "lazy-regex-proc_macros",
306  "once_cell",
307  "regex",
308 ]
309
310 [[package]]
311 name = "lazy-regex-proc_macros"
312 version = "2.2.1"
313 source = "registry+https://github.com/rust-lang/crates.io-index"
314 checksum = "6c12938b1b92cf5be22940527e15b79fd0c7e706e34bc70816f6a72b3484f84e"
315 dependencies = [
316  "proc-macro2",
317  "quote",
318  "regex",
319  "syn",
320 ]
321
322 [[package]]
323 name = "lazy_static"
324 version = "1.4.0"
325 source = "registry+https://github.com/rust-lang/crates.io-index"
326 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
327
328 [[package]]
329 name = "libc"
330 version = "0.2.98"
331 source = "registry+https://github.com/rust-lang/crates.io-index"
332 checksum = "320cfe77175da3a483efed4bc0adc1968ca050b098ce4f2f1c13a56626128790"
333
334 [[package]]
335 name = "lock_api"
336 version = "0.4.4"
337 source = "registry+https://github.com/rust-lang/crates.io-index"
338 checksum = "0382880606dff6d15c9476c416d18690b72742aa7b605bb6dd6ec9030fbf07eb"
339 dependencies = [
340  "scopeguard",
341 ]
342
343 [[package]]
344 name = "log"
345 version = "0.4.14"
346 source = "registry+https://github.com/rust-lang/crates.io-index"
347 checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
348 dependencies = [
349  "cfg-if",
350 ]
351
352 [[package]]
353 name = "memchr"
354 version = "2.4.0"
355 source = "registry+https://github.com/rust-lang/crates.io-index"
356 checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"
357
358 [[package]]
359 name = "mio"
360 version = "0.7.13"
361 source = "registry+https://github.com/rust-lang/crates.io-index"
362 checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16"
363 dependencies = [
364  "libc",
365  "log",
366  "miow",
367  "ntapi",
368  "winapi",
369 ]
370
371 [[package]]
372 name = "miow"
373 version = "0.3.7"
374 source = "registry+https://github.com/rust-lang/crates.io-index"
375 checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
376 dependencies = [
377  "winapi",
378 ]
379
380 [[package]]
381 name = "ntapi"
382 version = "0.3.6"
383 source = "registry+https://github.com/rust-lang/crates.io-index"
384 checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
385 dependencies = [
386  "winapi",
387 ]
388
389 [[package]]
390 name = "num_cpus"
391 version = "1.13.0"
392 source = "registry+https://github.com/rust-lang/crates.io-index"
393 checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
394 dependencies = [
395  "hermit-abi",
396  "libc",
397 ]
398
399 [[package]]
400 name = "once_cell"
401 version = "1.8.0"
402 source = "registry+https://github.com/rust-lang/crates.io-index"
403 checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
404
405 [[package]]
406 name = "parking_lot"
407 version = "0.11.1"
408 source = "registry+https://github.com/rust-lang/crates.io-index"
409 checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
410 dependencies = [
411  "instant",
412  "lock_api",
413  "parking_lot_core",
414 ]
415
416 [[package]]
417 name = "parking_lot_core"
418 version = "0.8.3"
419 source = "registry+https://github.com/rust-lang/crates.io-index"
420 checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018"
421 dependencies = [
422  "cfg-if",
423  "instant",
424  "libc",
425  "redox_syscall",
426  "smallvec",
427  "winapi",
428 ]
429
430 [[package]]
431 name = "pin-project-lite"
432 version = "0.2.7"
433 source = "registry+https://github.com/rust-lang/crates.io-index"
434 checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
435
436 [[package]]
437 name = "pin-utils"
438 version = "0.1.0"
439 source = "registry+https://github.com/rust-lang/crates.io-index"
440 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
441
442 [[package]]
443 name = "proc-macro-error"
444 version = "1.0.4"
445 source = "registry+https://github.com/rust-lang/crates.io-index"
446 checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
447 dependencies = [
448  "proc-macro-error-attr",
449  "proc-macro2",
450  "quote",
451  "syn",
452  "version_check",
453 ]
454
455 [[package]]
456 name = "proc-macro-error-attr"
457 version = "1.0.4"
458 source = "registry+https://github.com/rust-lang/crates.io-index"
459 checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
460 dependencies = [
461  "proc-macro2",
462  "quote",
463  "version_check",
464 ]
465
466 [[package]]
467 name = "proc-macro2"
468 version = "1.0.27"
469 source = "registry+https://github.com/rust-lang/crates.io-index"
470 checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038"
471 dependencies = [
472  "unicode-xid",
473 ]
474
475 [[package]]
476 name = "quote"
477 version = "1.0.9"
478 source = "registry+https://github.com/rust-lang/crates.io-index"
479 checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
480 dependencies = [
481  "proc-macro2",
482 ]
483
484 [[package]]
485 name = "redox_syscall"
486 version = "0.2.9"
487 source = "registry+https://github.com/rust-lang/crates.io-index"
488 checksum = "5ab49abadf3f9e1c4bc499e8845e152ad87d2ad2d30371841171169e9d75feee"
489 dependencies = [
490  "bitflags",
491 ]
492
493 [[package]]
494 name = "regex"
495 version = "1.5.4"
496 source = "registry+https://github.com/rust-lang/crates.io-index"
497 checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
498 dependencies = [
499  "aho-corasick",
500  "memchr",
501  "regex-syntax",
502 ]
503
504 [[package]]
505 name = "regex-syntax"
506 version = "0.6.25"
507 source = "registry+https://github.com/rust-lang/crates.io-index"
508 checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
509
510 [[package]]
511 name = "scopeguard"
512 version = "1.1.0"
513 source = "registry+https://github.com/rust-lang/crates.io-index"
514 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
515
516 [[package]]
517 name = "signal-hook-registry"
518 version = "1.4.0"
519 source = "registry+https://github.com/rust-lang/crates.io-index"
520 checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
521 dependencies = [
522  "libc",
523 ]
524
525 [[package]]
526 name = "smallvec"
527 version = "1.6.1"
528 source = "registry+https://github.com/rust-lang/crates.io-index"
529 checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
530
531 [[package]]
532 name = "strsim"
533 version = "0.8.0"
534 source = "registry+https://github.com/rust-lang/crates.io-index"
535 checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
536
537 [[package]]
538 name = "structopt"
539 version = "0.3.22"
540 source = "registry+https://github.com/rust-lang/crates.io-index"
541 checksum = "69b041cdcb67226aca307e6e7be44c8806423d83e018bd662360a93dabce4d71"
542 dependencies = [
543  "clap",
544  "lazy_static",
545  "structopt-derive",
546 ]
547
548 [[package]]
549 name = "structopt-derive"
550 version = "0.4.15"
551 source = "registry+https://github.com/rust-lang/crates.io-index"
552 checksum = "7813934aecf5f51a54775e00068c237de98489463968231a51746bbbc03f9c10"
553 dependencies = [
554  "heck",
555  "proc-macro-error",
556  "proc-macro2",
557  "quote",
558  "syn",
559 ]
560
561 [[package]]
562 name = "syn"
563 version = "1.0.73"
564 source = "registry+https://github.com/rust-lang/crates.io-index"
565 checksum = "f71489ff30030d2ae598524f61326b902466f72a0fb1a8564c001cc63425bcc7"
566 dependencies = [
567  "proc-macro2",
568  "quote",
569  "unicode-xid",
570 ]
571
572 [[package]]
573 name = "termcolor"
574 version = "1.1.2"
575 source = "registry+https://github.com/rust-lang/crates.io-index"
576 checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
577 dependencies = [
578  "winapi-util",
579 ]
580
581 [[package]]
582 name = "textwrap"
583 version = "0.11.0"
584 source = "registry+https://github.com/rust-lang/crates.io-index"
585 checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
586 dependencies = [
587  "unicode-width",
588 ]
589
590 [[package]]
591 name = "tokio"
592 version = "1.8.2"
593 source = "registry+https://github.com/rust-lang/crates.io-index"
594 checksum = "c2602b8af3767c285202012822834005f596c811042315fa7e9f5b12b2a43207"
595 dependencies = [
596  "autocfg",
597  "bytes",
598  "libc",
599  "memchr",
600  "mio",
601  "num_cpus",
602  "once_cell",
603  "parking_lot",
604  "pin-project-lite",
605  "signal-hook-registry",
606  "tokio-macros",
607  "winapi",
608 ]
609
610 [[package]]
611 name = "tokio-macros"
612 version = "1.3.0"
613 source = "registry+https://github.com/rust-lang/crates.io-index"
614 checksum = "54473be61f4ebe4efd09cec9bd5d16fa51d70ea0192213d754d2d500457db110"
615 dependencies = [
616  "proc-macro2",
617  "quote",
618  "syn",
619 ]
620
621 [[package]]
622 name = "tower-service"
623 version = "0.3.1"
624 source = "registry+https://github.com/rust-lang/crates.io-index"
625 checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
626
627 [[package]]
628 name = "tracing"
629 version = "0.1.26"
630 source = "registry+https://github.com/rust-lang/crates.io-index"
631 checksum = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d"
632 dependencies = [
633  "cfg-if",
634  "pin-project-lite",
635  "tracing-core",
636 ]
637
638 [[package]]
639 name = "tracing-core"
640 version = "0.1.18"
641 source = "registry+https://github.com/rust-lang/crates.io-index"
642 checksum = "a9ff14f98b1a4b289c6248a023c1c2fa1491062964e9fed67ab29c4e4da4a052"
643 dependencies = [
644  "lazy_static",
645 ]
646
647 [[package]]
648 name = "try-lock"
649 version = "0.2.3"
650 source = "registry+https://github.com/rust-lang/crates.io-index"
651 checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
652
653 [[package]]
654 name = "unicode-segmentation"
655 version = "1.8.0"
656 source = "registry+https://github.com/rust-lang/crates.io-index"
657 checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
658
659 [[package]]
660 name = "unicode-width"
661 version = "0.1.8"
662 source = "registry+https://github.com/rust-lang/crates.io-index"
663 checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
664
665 [[package]]
666 name = "unicode-xid"
667 version = "0.2.2"
668 source = "registry+https://github.com/rust-lang/crates.io-index"
669 checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
670
671 [[package]]
672 name = "vec_map"
673 version = "0.8.2"
674 source = "registry+https://github.com/rust-lang/crates.io-index"
675 checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
676
677 [[package]]
678 name = "version_check"
679 version = "0.9.3"
680 source = "registry+https://github.com/rust-lang/crates.io-index"
681 checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
682
683 [[package]]
684 name = "void"
685 version = "1.0.2"
686 source = "registry+https://github.com/rust-lang/crates.io-index"
687 checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
688
689 [[package]]
690 name = "want"
691 version = "0.3.0"
692 source = "registry+https://github.com/rust-lang/crates.io-index"
693 checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
694 dependencies = [
695  "log",
696  "try-lock",
697 ]
698
699 [[package]]
700 name = "winapi"
701 version = "0.3.9"
702 source = "registry+https://github.com/rust-lang/crates.io-index"
703 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
704 dependencies = [
705  "winapi-i686-pc-windows-gnu",
706  "winapi-x86_64-pc-windows-gnu",
707 ]
708
709 [[package]]
710 name = "winapi-i686-pc-windows-gnu"
711 version = "0.4.0"
712 source = "registry+https://github.com/rust-lang/crates.io-index"
713 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
714
715 [[package]]
716 name = "winapi-util"
717 version = "0.1.5"
718 source = "registry+https://github.com/rust-lang/crates.io-index"
719 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
720 dependencies = [
721  "winapi",
722 ]
723
724 [[package]]
725 name = "winapi-x86_64-pc-windows-gnu"
726 version = "0.4.0"
727 source = "registry+https://github.com/rust-lang/crates.io-index"
728 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"