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