chiark / gitweb /
config, wip parsing
[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  "hippotat-macros",
204  "hyper",
205  "ipnet",
206  "itertools",
207  "lazy-regex",
208  "log",
209  "regex",
210  "structopt",
211  "tokio",
212  "void",
213 ]
214
215 [[package]]
216 name = "hippotat-macros"
217 version = "0.0.0"
218 dependencies = [
219  "itertools",
220  "proc-macro2",
221  "quote",
222  "syn",
223 ]
224
225 [[package]]
226 name = "http"
227 version = "0.2.4"
228 source = "registry+https://github.com/rust-lang/crates.io-index"
229 checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11"
230 dependencies = [
231  "bytes",
232  "fnv",
233  "itoa",
234 ]
235
236 [[package]]
237 name = "http-body"
238 version = "0.4.2"
239 source = "registry+https://github.com/rust-lang/crates.io-index"
240 checksum = "60daa14be0e0786db0f03a9e57cb404c9d756eed2b6c62b9ea98ec5743ec75a9"
241 dependencies = [
242  "bytes",
243  "http",
244  "pin-project-lite",
245 ]
246
247 [[package]]
248 name = "httparse"
249 version = "1.4.1"
250 source = "registry+https://github.com/rust-lang/crates.io-index"
251 checksum = "f3a87b616e37e93c22fb19bcd386f02f3af5ea98a25670ad0fce773de23c5e68"
252
253 [[package]]
254 name = "httpdate"
255 version = "1.0.1"
256 source = "registry+https://github.com/rust-lang/crates.io-index"
257 checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440"
258
259 [[package]]
260 name = "humantime"
261 version = "2.1.0"
262 source = "registry+https://github.com/rust-lang/crates.io-index"
263 checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
264
265 [[package]]
266 name = "hyper"
267 version = "0.14.10"
268 source = "registry+https://github.com/rust-lang/crates.io-index"
269 checksum = "7728a72c4c7d72665fde02204bcbd93b247721025b222ef78606f14513e0fd03"
270 dependencies = [
271  "bytes",
272  "futures-channel",
273  "futures-core",
274  "futures-util",
275  "http",
276  "http-body",
277  "httparse",
278  "httpdate",
279  "itoa",
280  "pin-project-lite",
281  "tokio",
282  "tower-service",
283  "tracing",
284  "want",
285 ]
286
287 [[package]]
288 name = "instant"
289 version = "0.1.10"
290 source = "registry+https://github.com/rust-lang/crates.io-index"
291 checksum = "bee0328b1209d157ef001c94dd85b4f8f64139adb0eac2659f4b08382b2f474d"
292 dependencies = [
293  "cfg-if",
294 ]
295
296 [[package]]
297 name = "ipnet"
298 version = "2.3.1"
299 source = "registry+https://github.com/rust-lang/crates.io-index"
300 checksum = "68f2d64f2edebec4ce84ad108148e67e1064789bee435edc5b60ad398714a3a9"
301
302 [[package]]
303 name = "itertools"
304 version = "0.10.1"
305 source = "registry+https://github.com/rust-lang/crates.io-index"
306 checksum = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf"
307 dependencies = [
308  "either",
309 ]
310
311 [[package]]
312 name = "itoa"
313 version = "0.4.7"
314 source = "registry+https://github.com/rust-lang/crates.io-index"
315 checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
316
317 [[package]]
318 name = "lazy-regex"
319 version = "2.2.1"
320 source = "registry+https://github.com/rust-lang/crates.io-index"
321 checksum = "17d198f91272f6e788a5c0bd5d741cf778da4e5bc761ec67b32d5d3b0db34a54"
322 dependencies = [
323  "lazy-regex-proc_macros",
324  "once_cell",
325  "regex",
326 ]
327
328 [[package]]
329 name = "lazy-regex-proc_macros"
330 version = "2.2.1"
331 source = "registry+https://github.com/rust-lang/crates.io-index"
332 checksum = "6c12938b1b92cf5be22940527e15b79fd0c7e706e34bc70816f6a72b3484f84e"
333 dependencies = [
334  "proc-macro2",
335  "quote",
336  "regex",
337  "syn",
338 ]
339
340 [[package]]
341 name = "lazy_static"
342 version = "1.4.0"
343 source = "registry+https://github.com/rust-lang/crates.io-index"
344 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
345
346 [[package]]
347 name = "libc"
348 version = "0.2.98"
349 source = "registry+https://github.com/rust-lang/crates.io-index"
350 checksum = "320cfe77175da3a483efed4bc0adc1968ca050b098ce4f2f1c13a56626128790"
351
352 [[package]]
353 name = "lock_api"
354 version = "0.4.4"
355 source = "registry+https://github.com/rust-lang/crates.io-index"
356 checksum = "0382880606dff6d15c9476c416d18690b72742aa7b605bb6dd6ec9030fbf07eb"
357 dependencies = [
358  "scopeguard",
359 ]
360
361 [[package]]
362 name = "log"
363 version = "0.4.14"
364 source = "registry+https://github.com/rust-lang/crates.io-index"
365 checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
366 dependencies = [
367  "cfg-if",
368 ]
369
370 [[package]]
371 name = "memchr"
372 version = "2.4.0"
373 source = "registry+https://github.com/rust-lang/crates.io-index"
374 checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"
375
376 [[package]]
377 name = "mio"
378 version = "0.7.13"
379 source = "registry+https://github.com/rust-lang/crates.io-index"
380 checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16"
381 dependencies = [
382  "libc",
383  "log",
384  "miow",
385  "ntapi",
386  "winapi",
387 ]
388
389 [[package]]
390 name = "miow"
391 version = "0.3.7"
392 source = "registry+https://github.com/rust-lang/crates.io-index"
393 checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
394 dependencies = [
395  "winapi",
396 ]
397
398 [[package]]
399 name = "ntapi"
400 version = "0.3.6"
401 source = "registry+https://github.com/rust-lang/crates.io-index"
402 checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
403 dependencies = [
404  "winapi",
405 ]
406
407 [[package]]
408 name = "num_cpus"
409 version = "1.13.0"
410 source = "registry+https://github.com/rust-lang/crates.io-index"
411 checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
412 dependencies = [
413  "hermit-abi",
414  "libc",
415 ]
416
417 [[package]]
418 name = "once_cell"
419 version = "1.8.0"
420 source = "registry+https://github.com/rust-lang/crates.io-index"
421 checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
422
423 [[package]]
424 name = "parking_lot"
425 version = "0.11.1"
426 source = "registry+https://github.com/rust-lang/crates.io-index"
427 checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
428 dependencies = [
429  "instant",
430  "lock_api",
431  "parking_lot_core",
432 ]
433
434 [[package]]
435 name = "parking_lot_core"
436 version = "0.8.3"
437 source = "registry+https://github.com/rust-lang/crates.io-index"
438 checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018"
439 dependencies = [
440  "cfg-if",
441  "instant",
442  "libc",
443  "redox_syscall",
444  "smallvec",
445  "winapi",
446 ]
447
448 [[package]]
449 name = "pin-project-lite"
450 version = "0.2.7"
451 source = "registry+https://github.com/rust-lang/crates.io-index"
452 checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
453
454 [[package]]
455 name = "pin-utils"
456 version = "0.1.0"
457 source = "registry+https://github.com/rust-lang/crates.io-index"
458 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
459
460 [[package]]
461 name = "proc-macro-error"
462 version = "1.0.4"
463 source = "registry+https://github.com/rust-lang/crates.io-index"
464 checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
465 dependencies = [
466  "proc-macro-error-attr",
467  "proc-macro2",
468  "quote",
469  "syn",
470  "version_check",
471 ]
472
473 [[package]]
474 name = "proc-macro-error-attr"
475 version = "1.0.4"
476 source = "registry+https://github.com/rust-lang/crates.io-index"
477 checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
478 dependencies = [
479  "proc-macro2",
480  "quote",
481  "version_check",
482 ]
483
484 [[package]]
485 name = "proc-macro2"
486 version = "1.0.27"
487 source = "registry+https://github.com/rust-lang/crates.io-index"
488 checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038"
489 dependencies = [
490  "unicode-xid",
491 ]
492
493 [[package]]
494 name = "quote"
495 version = "1.0.9"
496 source = "registry+https://github.com/rust-lang/crates.io-index"
497 checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
498 dependencies = [
499  "proc-macro2",
500 ]
501
502 [[package]]
503 name = "redox_syscall"
504 version = "0.2.9"
505 source = "registry+https://github.com/rust-lang/crates.io-index"
506 checksum = "5ab49abadf3f9e1c4bc499e8845e152ad87d2ad2d30371841171169e9d75feee"
507 dependencies = [
508  "bitflags",
509 ]
510
511 [[package]]
512 name = "regex"
513 version = "1.5.4"
514 source = "registry+https://github.com/rust-lang/crates.io-index"
515 checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
516 dependencies = [
517  "aho-corasick",
518  "memchr",
519  "regex-syntax",
520 ]
521
522 [[package]]
523 name = "regex-syntax"
524 version = "0.6.25"
525 source = "registry+https://github.com/rust-lang/crates.io-index"
526 checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
527
528 [[package]]
529 name = "scopeguard"
530 version = "1.1.0"
531 source = "registry+https://github.com/rust-lang/crates.io-index"
532 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
533
534 [[package]]
535 name = "signal-hook-registry"
536 version = "1.4.0"
537 source = "registry+https://github.com/rust-lang/crates.io-index"
538 checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
539 dependencies = [
540  "libc",
541 ]
542
543 [[package]]
544 name = "smallvec"
545 version = "1.6.1"
546 source = "registry+https://github.com/rust-lang/crates.io-index"
547 checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
548
549 [[package]]
550 name = "strsim"
551 version = "0.8.0"
552 source = "registry+https://github.com/rust-lang/crates.io-index"
553 checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
554
555 [[package]]
556 name = "structopt"
557 version = "0.3.22"
558 source = "registry+https://github.com/rust-lang/crates.io-index"
559 checksum = "69b041cdcb67226aca307e6e7be44c8806423d83e018bd662360a93dabce4d71"
560 dependencies = [
561  "clap",
562  "lazy_static",
563  "structopt-derive",
564 ]
565
566 [[package]]
567 name = "structopt-derive"
568 version = "0.4.15"
569 source = "registry+https://github.com/rust-lang/crates.io-index"
570 checksum = "7813934aecf5f51a54775e00068c237de98489463968231a51746bbbc03f9c10"
571 dependencies = [
572  "heck",
573  "proc-macro-error",
574  "proc-macro2",
575  "quote",
576  "syn",
577 ]
578
579 [[package]]
580 name = "syn"
581 version = "1.0.73"
582 source = "registry+https://github.com/rust-lang/crates.io-index"
583 checksum = "f71489ff30030d2ae598524f61326b902466f72a0fb1a8564c001cc63425bcc7"
584 dependencies = [
585  "proc-macro2",
586  "quote",
587  "unicode-xid",
588 ]
589
590 [[package]]
591 name = "termcolor"
592 version = "1.1.2"
593 source = "registry+https://github.com/rust-lang/crates.io-index"
594 checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
595 dependencies = [
596  "winapi-util",
597 ]
598
599 [[package]]
600 name = "textwrap"
601 version = "0.11.0"
602 source = "registry+https://github.com/rust-lang/crates.io-index"
603 checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
604 dependencies = [
605  "unicode-width",
606 ]
607
608 [[package]]
609 name = "tokio"
610 version = "1.8.2"
611 source = "registry+https://github.com/rust-lang/crates.io-index"
612 checksum = "c2602b8af3767c285202012822834005f596c811042315fa7e9f5b12b2a43207"
613 dependencies = [
614  "autocfg",
615  "bytes",
616  "libc",
617  "memchr",
618  "mio",
619  "num_cpus",
620  "once_cell",
621  "parking_lot",
622  "pin-project-lite",
623  "signal-hook-registry",
624  "tokio-macros",
625  "winapi",
626 ]
627
628 [[package]]
629 name = "tokio-macros"
630 version = "1.3.0"
631 source = "registry+https://github.com/rust-lang/crates.io-index"
632 checksum = "54473be61f4ebe4efd09cec9bd5d16fa51d70ea0192213d754d2d500457db110"
633 dependencies = [
634  "proc-macro2",
635  "quote",
636  "syn",
637 ]
638
639 [[package]]
640 name = "tower-service"
641 version = "0.3.1"
642 source = "registry+https://github.com/rust-lang/crates.io-index"
643 checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
644
645 [[package]]
646 name = "tracing"
647 version = "0.1.26"
648 source = "registry+https://github.com/rust-lang/crates.io-index"
649 checksum = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d"
650 dependencies = [
651  "cfg-if",
652  "pin-project-lite",
653  "tracing-core",
654 ]
655
656 [[package]]
657 name = "tracing-core"
658 version = "0.1.18"
659 source = "registry+https://github.com/rust-lang/crates.io-index"
660 checksum = "a9ff14f98b1a4b289c6248a023c1c2fa1491062964e9fed67ab29c4e4da4a052"
661 dependencies = [
662  "lazy_static",
663 ]
664
665 [[package]]
666 name = "try-lock"
667 version = "0.2.3"
668 source = "registry+https://github.com/rust-lang/crates.io-index"
669 checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
670
671 [[package]]
672 name = "unicode-segmentation"
673 version = "1.8.0"
674 source = "registry+https://github.com/rust-lang/crates.io-index"
675 checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
676
677 [[package]]
678 name = "unicode-width"
679 version = "0.1.8"
680 source = "registry+https://github.com/rust-lang/crates.io-index"
681 checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
682
683 [[package]]
684 name = "unicode-xid"
685 version = "0.2.2"
686 source = "registry+https://github.com/rust-lang/crates.io-index"
687 checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
688
689 [[package]]
690 name = "vec_map"
691 version = "0.8.2"
692 source = "registry+https://github.com/rust-lang/crates.io-index"
693 checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
694
695 [[package]]
696 name = "version_check"
697 version = "0.9.3"
698 source = "registry+https://github.com/rust-lang/crates.io-index"
699 checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
700
701 [[package]]
702 name = "void"
703 version = "1.0.2"
704 source = "registry+https://github.com/rust-lang/crates.io-index"
705 checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
706
707 [[package]]
708 name = "want"
709 version = "0.3.0"
710 source = "registry+https://github.com/rust-lang/crates.io-index"
711 checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
712 dependencies = [
713  "log",
714  "try-lock",
715 ]
716
717 [[package]]
718 name = "winapi"
719 version = "0.3.9"
720 source = "registry+https://github.com/rust-lang/crates.io-index"
721 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
722 dependencies = [
723  "winapi-i686-pc-windows-gnu",
724  "winapi-x86_64-pc-windows-gnu",
725 ]
726
727 [[package]]
728 name = "winapi-i686-pc-windows-gnu"
729 version = "0.4.0"
730 source = "registry+https://github.com/rust-lang/crates.io-index"
731 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
732
733 [[package]]
734 name = "winapi-util"
735 version = "0.1.5"
736 source = "registry+https://github.com/rust-lang/crates.io-index"
737 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
738 dependencies = [
739  "winapi",
740 ]
741
742 [[package]]
743 name = "winapi-x86_64-pc-windows-gnu"
744 version = "0.4.0"
745 source = "registry+https://github.com/rust-lang/crates.io-index"
746 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"