chiark / gitweb /
prep for hmac
[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 = "block-buffer"
54 version = "0.9.0"
55 source = "registry+https://github.com/rust-lang/crates.io-index"
56 checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
57 dependencies = [
58  "generic-array",
59 ]
60
61 [[package]]
62 name = "bytes"
63 version = "1.0.1"
64 source = "registry+https://github.com/rust-lang/crates.io-index"
65 checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
66
67 [[package]]
68 name = "cc"
69 version = "1.0.69"
70 source = "registry+https://github.com/rust-lang/crates.io-index"
71 checksum = "e70cc2f62c6ce1868963827bd677764c62d07c3d9a3e1fb1177ee1a9ab199eb2"
72
73 [[package]]
74 name = "cfg-if"
75 version = "1.0.0"
76 source = "registry+https://github.com/rust-lang/crates.io-index"
77 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
78
79 [[package]]
80 name = "clap"
81 version = "2.33.3"
82 source = "registry+https://github.com/rust-lang/crates.io-index"
83 checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
84 dependencies = [
85  "ansi_term",
86  "atty",
87  "bitflags",
88  "strsim",
89  "textwrap",
90  "unicode-width",
91  "vec_map",
92 ]
93
94 [[package]]
95 name = "configparser"
96 version = "2.1.0"
97 source = "registry+https://github.com/rust-lang/crates.io-index"
98 checksum = "f7201ee416d124d589a820111ba755930df8b75855321a9a1b87312a0597ec8f"
99
100 [[package]]
101 name = "core-foundation"
102 version = "0.9.1"
103 source = "registry+https://github.com/rust-lang/crates.io-index"
104 checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62"
105 dependencies = [
106  "core-foundation-sys",
107  "libc",
108 ]
109
110 [[package]]
111 name = "core-foundation-sys"
112 version = "0.8.2"
113 source = "registry+https://github.com/rust-lang/crates.io-index"
114 checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b"
115
116 [[package]]
117 name = "cpufeatures"
118 version = "0.1.5"
119 source = "registry+https://github.com/rust-lang/crates.io-index"
120 checksum = "66c99696f6c9dd7f35d486b9d04d7e6e202aa3e8c40d553f2fdf5e7e0c6a71ef"
121 dependencies = [
122  "libc",
123 ]
124
125 [[package]]
126 name = "crypto-mac"
127 version = "0.11.1"
128 source = "registry+https://github.com/rust-lang/crates.io-index"
129 checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714"
130 dependencies = [
131  "generic-array",
132  "subtle",
133 ]
134
135 [[package]]
136 name = "digest"
137 version = "0.9.0"
138 source = "registry+https://github.com/rust-lang/crates.io-index"
139 checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
140 dependencies = [
141  "generic-array",
142 ]
143
144 [[package]]
145 name = "either"
146 version = "1.6.1"
147 source = "registry+https://github.com/rust-lang/crates.io-index"
148 checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
149
150 [[package]]
151 name = "env_logger"
152 version = "0.9.0"
153 source = "registry+https://github.com/rust-lang/crates.io-index"
154 checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
155 dependencies = [
156  "atty",
157  "humantime",
158  "log",
159  "regex",
160  "termcolor",
161 ]
162
163 [[package]]
164 name = "extend"
165 version = "1.1.1"
166 source = "registry+https://github.com/rust-lang/crates.io-index"
167 checksum = "f5c89e2933a4ec753dc007a4d6a7f9b6dc8e89b8fe89cabc252ccddf39c08bb1"
168 dependencies = [
169  "proc-macro-error",
170  "proc-macro2",
171  "quote",
172  "syn",
173 ]
174
175 [[package]]
176 name = "fehler"
177 version = "1.0.0"
178 source = "registry+https://github.com/rust-lang/crates.io-index"
179 checksum = "d5729fe49ba028cd550747b6e62cd3d841beccab5390aa398538c31a2d983635"
180 dependencies = [
181  "fehler-macros",
182 ]
183
184 [[package]]
185 name = "fehler-macros"
186 version = "1.0.0"
187 source = "registry+https://github.com/rust-lang/crates.io-index"
188 checksum = "ccb5acb1045ebbfa222e2c50679e392a71dd77030b78fb0189f2d9c5974400f9"
189 dependencies = [
190  "proc-macro2",
191  "quote",
192  "syn",
193 ]
194
195 [[package]]
196 name = "fnv"
197 version = "1.0.7"
198 source = "registry+https://github.com/rust-lang/crates.io-index"
199 checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
200
201 [[package]]
202 name = "foreign-types"
203 version = "0.3.2"
204 source = "registry+https://github.com/rust-lang/crates.io-index"
205 checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
206 dependencies = [
207  "foreign-types-shared",
208 ]
209
210 [[package]]
211 name = "foreign-types-shared"
212 version = "0.1.1"
213 source = "registry+https://github.com/rust-lang/crates.io-index"
214 checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
215
216 [[package]]
217 name = "futures"
218 version = "0.3.16"
219 source = "registry+https://github.com/rust-lang/crates.io-index"
220 checksum = "1adc00f486adfc9ce99f77d717836f0c5aa84965eb0b4f051f4e83f7cab53f8b"
221 dependencies = [
222  "futures-channel",
223  "futures-core",
224  "futures-executor",
225  "futures-io",
226  "futures-sink",
227  "futures-task",
228  "futures-util",
229 ]
230
231 [[package]]
232 name = "futures-channel"
233 version = "0.3.16"
234 source = "registry+https://github.com/rust-lang/crates.io-index"
235 checksum = "74ed2411805f6e4e3d9bc904c95d5d423b89b3b25dc0250aa74729de20629ff9"
236 dependencies = [
237  "futures-core",
238  "futures-sink",
239 ]
240
241 [[package]]
242 name = "futures-core"
243 version = "0.3.16"
244 source = "registry+https://github.com/rust-lang/crates.io-index"
245 checksum = "af51b1b4a7fdff033703db39de8802c673eb91855f2e0d47dcf3bf2c0ef01f99"
246
247 [[package]]
248 name = "futures-executor"
249 version = "0.3.16"
250 source = "registry+https://github.com/rust-lang/crates.io-index"
251 checksum = "4d0d535a57b87e1ae31437b892713aee90cd2d7b0ee48727cd11fc72ef54761c"
252 dependencies = [
253  "futures-core",
254  "futures-task",
255  "futures-util",
256 ]
257
258 [[package]]
259 name = "futures-io"
260 version = "0.3.16"
261 source = "registry+https://github.com/rust-lang/crates.io-index"
262 checksum = "0b0e06c393068f3a6ef246c75cdca793d6a46347e75286933e5e75fd2fd11582"
263
264 [[package]]
265 name = "futures-macro"
266 version = "0.3.16"
267 source = "registry+https://github.com/rust-lang/crates.io-index"
268 checksum = "c54913bae956fb8df7f4dc6fc90362aa72e69148e3f39041fbe8742d21e0ac57"
269 dependencies = [
270  "autocfg",
271  "proc-macro-hack",
272  "proc-macro2",
273  "quote",
274  "syn",
275 ]
276
277 [[package]]
278 name = "futures-sink"
279 version = "0.3.16"
280 source = "registry+https://github.com/rust-lang/crates.io-index"
281 checksum = "c0f30aaa67363d119812743aa5f33c201a7a66329f97d1a887022971feea4b53"
282
283 [[package]]
284 name = "futures-task"
285 version = "0.3.16"
286 source = "registry+https://github.com/rust-lang/crates.io-index"
287 checksum = "bbe54a98670017f3be909561f6ad13e810d9a51f3f061b902062ca3da80799f2"
288
289 [[package]]
290 name = "futures-util"
291 version = "0.3.16"
292 source = "registry+https://github.com/rust-lang/crates.io-index"
293 checksum = "67eb846bfd58e44a8481a00049e82c43e0ccb5d61f8dc071057cb19249dd4d78"
294 dependencies = [
295  "autocfg",
296  "futures-channel",
297  "futures-core",
298  "futures-io",
299  "futures-macro",
300  "futures-sink",
301  "futures-task",
302  "memchr",
303  "pin-project-lite",
304  "pin-utils",
305  "proc-macro-hack",
306  "proc-macro-nested",
307  "slab",
308 ]
309
310 [[package]]
311 name = "generic-array"
312 version = "0.14.4"
313 source = "registry+https://github.com/rust-lang/crates.io-index"
314 checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
315 dependencies = [
316  "typenum",
317  "version_check",
318 ]
319
320 [[package]]
321 name = "getrandom"
322 version = "0.2.3"
323 source = "registry+https://github.com/rust-lang/crates.io-index"
324 checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
325 dependencies = [
326  "cfg-if",
327  "libc",
328  "wasi",
329 ]
330
331 [[package]]
332 name = "h2"
333 version = "0.3.3"
334 source = "registry+https://github.com/rust-lang/crates.io-index"
335 checksum = "825343c4eef0b63f541f8903f395dc5beb362a979b5799a84062527ef1e37726"
336 dependencies = [
337  "bytes",
338  "fnv",
339  "futures-core",
340  "futures-sink",
341  "futures-util",
342  "http",
343  "indexmap",
344  "slab",
345  "tokio",
346  "tokio-util",
347  "tracing",
348 ]
349
350 [[package]]
351 name = "hashbrown"
352 version = "0.11.2"
353 source = "registry+https://github.com/rust-lang/crates.io-index"
354 checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
355
356 [[package]]
357 name = "heck"
358 version = "0.3.3"
359 source = "registry+https://github.com/rust-lang/crates.io-index"
360 checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
361 dependencies = [
362  "unicode-segmentation",
363 ]
364
365 [[package]]
366 name = "hermit-abi"
367 version = "0.1.19"
368 source = "registry+https://github.com/rust-lang/crates.io-index"
369 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
370 dependencies = [
371  "libc",
372 ]
373
374 [[package]]
375 name = "hippotat"
376 version = "0.0.0"
377 dependencies = [
378  "anyhow",
379  "configparser",
380  "env_logger",
381  "extend",
382  "fehler",
383  "futures",
384  "hippotat-macros",
385  "hmac",
386  "hyper",
387  "hyper-tls",
388  "ipnet",
389  "itertools",
390  "lazy-regex",
391  "log",
392  "parking_lot",
393  "regex",
394  "sha2",
395  "structopt",
396  "tokio",
397  "void",
398 ]
399
400 [[package]]
401 name = "hippotat-macros"
402 version = "0.0.0"
403 dependencies = [
404  "itertools",
405  "proc-macro2",
406  "quote",
407  "syn",
408 ]
409
410 [[package]]
411 name = "hmac"
412 version = "0.11.0"
413 source = "registry+https://github.com/rust-lang/crates.io-index"
414 checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b"
415 dependencies = [
416  "crypto-mac",
417  "digest",
418 ]
419
420 [[package]]
421 name = "http"
422 version = "0.2.4"
423 source = "registry+https://github.com/rust-lang/crates.io-index"
424 checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11"
425 dependencies = [
426  "bytes",
427  "fnv",
428  "itoa",
429 ]
430
431 [[package]]
432 name = "http-body"
433 version = "0.4.2"
434 source = "registry+https://github.com/rust-lang/crates.io-index"
435 checksum = "60daa14be0e0786db0f03a9e57cb404c9d756eed2b6c62b9ea98ec5743ec75a9"
436 dependencies = [
437  "bytes",
438  "http",
439  "pin-project-lite",
440 ]
441
442 [[package]]
443 name = "httparse"
444 version = "1.4.1"
445 source = "registry+https://github.com/rust-lang/crates.io-index"
446 checksum = "f3a87b616e37e93c22fb19bcd386f02f3af5ea98a25670ad0fce773de23c5e68"
447
448 [[package]]
449 name = "httpdate"
450 version = "1.0.1"
451 source = "registry+https://github.com/rust-lang/crates.io-index"
452 checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440"
453
454 [[package]]
455 name = "humantime"
456 version = "2.1.0"
457 source = "registry+https://github.com/rust-lang/crates.io-index"
458 checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
459
460 [[package]]
461 name = "hyper"
462 version = "0.14.10"
463 source = "registry+https://github.com/rust-lang/crates.io-index"
464 checksum = "7728a72c4c7d72665fde02204bcbd93b247721025b222ef78606f14513e0fd03"
465 dependencies = [
466  "bytes",
467  "futures-channel",
468  "futures-core",
469  "futures-util",
470  "h2",
471  "http",
472  "http-body",
473  "httparse",
474  "httpdate",
475  "itoa",
476  "pin-project-lite",
477  "socket2",
478  "tokio",
479  "tower-service",
480  "tracing",
481  "want",
482 ]
483
484 [[package]]
485 name = "hyper-tls"
486 version = "0.5.0"
487 source = "registry+https://github.com/rust-lang/crates.io-index"
488 checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
489 dependencies = [
490  "bytes",
491  "hyper",
492  "native-tls",
493  "tokio",
494  "tokio-native-tls",
495 ]
496
497 [[package]]
498 name = "indexmap"
499 version = "1.7.0"
500 source = "registry+https://github.com/rust-lang/crates.io-index"
501 checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
502 dependencies = [
503  "autocfg",
504  "hashbrown",
505 ]
506
507 [[package]]
508 name = "instant"
509 version = "0.1.10"
510 source = "registry+https://github.com/rust-lang/crates.io-index"
511 checksum = "bee0328b1209d157ef001c94dd85b4f8f64139adb0eac2659f4b08382b2f474d"
512 dependencies = [
513  "cfg-if",
514 ]
515
516 [[package]]
517 name = "ipnet"
518 version = "2.3.1"
519 source = "registry+https://github.com/rust-lang/crates.io-index"
520 checksum = "68f2d64f2edebec4ce84ad108148e67e1064789bee435edc5b60ad398714a3a9"
521
522 [[package]]
523 name = "itertools"
524 version = "0.10.1"
525 source = "registry+https://github.com/rust-lang/crates.io-index"
526 checksum = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf"
527 dependencies = [
528  "either",
529 ]
530
531 [[package]]
532 name = "itoa"
533 version = "0.4.7"
534 source = "registry+https://github.com/rust-lang/crates.io-index"
535 checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
536
537 [[package]]
538 name = "lazy-regex"
539 version = "2.2.1"
540 source = "registry+https://github.com/rust-lang/crates.io-index"
541 checksum = "17d198f91272f6e788a5c0bd5d741cf778da4e5bc761ec67b32d5d3b0db34a54"
542 dependencies = [
543  "lazy-regex-proc_macros",
544  "once_cell",
545  "regex",
546 ]
547
548 [[package]]
549 name = "lazy-regex-proc_macros"
550 version = "2.2.1"
551 source = "registry+https://github.com/rust-lang/crates.io-index"
552 checksum = "6c12938b1b92cf5be22940527e15b79fd0c7e706e34bc70816f6a72b3484f84e"
553 dependencies = [
554  "proc-macro2",
555  "quote",
556  "regex",
557  "syn",
558 ]
559
560 [[package]]
561 name = "lazy_static"
562 version = "1.4.0"
563 source = "registry+https://github.com/rust-lang/crates.io-index"
564 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
565
566 [[package]]
567 name = "libc"
568 version = "0.2.98"
569 source = "registry+https://github.com/rust-lang/crates.io-index"
570 checksum = "320cfe77175da3a483efed4bc0adc1968ca050b098ce4f2f1c13a56626128790"
571
572 [[package]]
573 name = "lock_api"
574 version = "0.4.4"
575 source = "registry+https://github.com/rust-lang/crates.io-index"
576 checksum = "0382880606dff6d15c9476c416d18690b72742aa7b605bb6dd6ec9030fbf07eb"
577 dependencies = [
578  "scopeguard",
579 ]
580
581 [[package]]
582 name = "log"
583 version = "0.4.14"
584 source = "registry+https://github.com/rust-lang/crates.io-index"
585 checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
586 dependencies = [
587  "cfg-if",
588 ]
589
590 [[package]]
591 name = "memchr"
592 version = "2.4.0"
593 source = "registry+https://github.com/rust-lang/crates.io-index"
594 checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"
595
596 [[package]]
597 name = "mio"
598 version = "0.7.13"
599 source = "registry+https://github.com/rust-lang/crates.io-index"
600 checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16"
601 dependencies = [
602  "libc",
603  "log",
604  "miow",
605  "ntapi",
606  "winapi",
607 ]
608
609 [[package]]
610 name = "miow"
611 version = "0.3.7"
612 source = "registry+https://github.com/rust-lang/crates.io-index"
613 checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
614 dependencies = [
615  "winapi",
616 ]
617
618 [[package]]
619 name = "native-tls"
620 version = "0.2.7"
621 source = "registry+https://github.com/rust-lang/crates.io-index"
622 checksum = "b8d96b2e1c8da3957d58100b09f102c6d9cfdfced01b7ec5a8974044bb09dbd4"
623 dependencies = [
624  "lazy_static",
625  "libc",
626  "log",
627  "openssl",
628  "openssl-probe",
629  "openssl-sys",
630  "schannel",
631  "security-framework",
632  "security-framework-sys",
633  "tempfile",
634 ]
635
636 [[package]]
637 name = "ntapi"
638 version = "0.3.6"
639 source = "registry+https://github.com/rust-lang/crates.io-index"
640 checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
641 dependencies = [
642  "winapi",
643 ]
644
645 [[package]]
646 name = "num_cpus"
647 version = "1.13.0"
648 source = "registry+https://github.com/rust-lang/crates.io-index"
649 checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
650 dependencies = [
651  "hermit-abi",
652  "libc",
653 ]
654
655 [[package]]
656 name = "once_cell"
657 version = "1.8.0"
658 source = "registry+https://github.com/rust-lang/crates.io-index"
659 checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
660
661 [[package]]
662 name = "opaque-debug"
663 version = "0.3.0"
664 source = "registry+https://github.com/rust-lang/crates.io-index"
665 checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
666
667 [[package]]
668 name = "openssl"
669 version = "0.10.35"
670 source = "registry+https://github.com/rust-lang/crates.io-index"
671 checksum = "549430950c79ae24e6d02e0b7404534ecf311d94cc9f861e9e4020187d13d885"
672 dependencies = [
673  "bitflags",
674  "cfg-if",
675  "foreign-types",
676  "libc",
677  "once_cell",
678  "openssl-sys",
679 ]
680
681 [[package]]
682 name = "openssl-probe"
683 version = "0.1.4"
684 source = "registry+https://github.com/rust-lang/crates.io-index"
685 checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a"
686
687 [[package]]
688 name = "openssl-sys"
689 version = "0.9.65"
690 source = "registry+https://github.com/rust-lang/crates.io-index"
691 checksum = "7a7907e3bfa08bb85105209cdfcb6c63d109f8f6c1ed6ca318fff5c1853fbc1d"
692 dependencies = [
693  "autocfg",
694  "cc",
695  "libc",
696  "pkg-config",
697  "vcpkg",
698 ]
699
700 [[package]]
701 name = "parking_lot"
702 version = "0.11.1"
703 source = "registry+https://github.com/rust-lang/crates.io-index"
704 checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
705 dependencies = [
706  "instant",
707  "lock_api",
708  "parking_lot_core",
709 ]
710
711 [[package]]
712 name = "parking_lot_core"
713 version = "0.8.3"
714 source = "registry+https://github.com/rust-lang/crates.io-index"
715 checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018"
716 dependencies = [
717  "cfg-if",
718  "instant",
719  "libc",
720  "redox_syscall",
721  "smallvec",
722  "winapi",
723 ]
724
725 [[package]]
726 name = "pin-project-lite"
727 version = "0.2.7"
728 source = "registry+https://github.com/rust-lang/crates.io-index"
729 checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
730
731 [[package]]
732 name = "pin-utils"
733 version = "0.1.0"
734 source = "registry+https://github.com/rust-lang/crates.io-index"
735 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
736
737 [[package]]
738 name = "pkg-config"
739 version = "0.3.19"
740 source = "registry+https://github.com/rust-lang/crates.io-index"
741 checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
742
743 [[package]]
744 name = "ppv-lite86"
745 version = "0.2.10"
746 source = "registry+https://github.com/rust-lang/crates.io-index"
747 checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
748
749 [[package]]
750 name = "proc-macro-error"
751 version = "1.0.4"
752 source = "registry+https://github.com/rust-lang/crates.io-index"
753 checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
754 dependencies = [
755  "proc-macro-error-attr",
756  "proc-macro2",
757  "quote",
758  "syn",
759  "version_check",
760 ]
761
762 [[package]]
763 name = "proc-macro-error-attr"
764 version = "1.0.4"
765 source = "registry+https://github.com/rust-lang/crates.io-index"
766 checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
767 dependencies = [
768  "proc-macro2",
769  "quote",
770  "version_check",
771 ]
772
773 [[package]]
774 name = "proc-macro-hack"
775 version = "0.5.19"
776 source = "registry+https://github.com/rust-lang/crates.io-index"
777 checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
778
779 [[package]]
780 name = "proc-macro-nested"
781 version = "0.1.7"
782 source = "registry+https://github.com/rust-lang/crates.io-index"
783 checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
784
785 [[package]]
786 name = "proc-macro2"
787 version = "1.0.27"
788 source = "registry+https://github.com/rust-lang/crates.io-index"
789 checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038"
790 dependencies = [
791  "unicode-xid",
792 ]
793
794 [[package]]
795 name = "quote"
796 version = "1.0.9"
797 source = "registry+https://github.com/rust-lang/crates.io-index"
798 checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
799 dependencies = [
800  "proc-macro2",
801 ]
802
803 [[package]]
804 name = "rand"
805 version = "0.8.4"
806 source = "registry+https://github.com/rust-lang/crates.io-index"
807 checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
808 dependencies = [
809  "libc",
810  "rand_chacha",
811  "rand_core",
812  "rand_hc",
813 ]
814
815 [[package]]
816 name = "rand_chacha"
817 version = "0.3.1"
818 source = "registry+https://github.com/rust-lang/crates.io-index"
819 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
820 dependencies = [
821  "ppv-lite86",
822  "rand_core",
823 ]
824
825 [[package]]
826 name = "rand_core"
827 version = "0.6.3"
828 source = "registry+https://github.com/rust-lang/crates.io-index"
829 checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
830 dependencies = [
831  "getrandom",
832 ]
833
834 [[package]]
835 name = "rand_hc"
836 version = "0.3.1"
837 source = "registry+https://github.com/rust-lang/crates.io-index"
838 checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
839 dependencies = [
840  "rand_core",
841 ]
842
843 [[package]]
844 name = "redox_syscall"
845 version = "0.2.9"
846 source = "registry+https://github.com/rust-lang/crates.io-index"
847 checksum = "5ab49abadf3f9e1c4bc499e8845e152ad87d2ad2d30371841171169e9d75feee"
848 dependencies = [
849  "bitflags",
850 ]
851
852 [[package]]
853 name = "regex"
854 version = "1.5.4"
855 source = "registry+https://github.com/rust-lang/crates.io-index"
856 checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
857 dependencies = [
858  "aho-corasick",
859  "memchr",
860  "regex-syntax",
861 ]
862
863 [[package]]
864 name = "regex-syntax"
865 version = "0.6.25"
866 source = "registry+https://github.com/rust-lang/crates.io-index"
867 checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
868
869 [[package]]
870 name = "remove_dir_all"
871 version = "0.5.3"
872 source = "registry+https://github.com/rust-lang/crates.io-index"
873 checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
874 dependencies = [
875  "winapi",
876 ]
877
878 [[package]]
879 name = "schannel"
880 version = "0.1.19"
881 source = "registry+https://github.com/rust-lang/crates.io-index"
882 checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
883 dependencies = [
884  "lazy_static",
885  "winapi",
886 ]
887
888 [[package]]
889 name = "scopeguard"
890 version = "1.1.0"
891 source = "registry+https://github.com/rust-lang/crates.io-index"
892 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
893
894 [[package]]
895 name = "security-framework"
896 version = "2.3.1"
897 source = "registry+https://github.com/rust-lang/crates.io-index"
898 checksum = "23a2ac85147a3a11d77ecf1bc7166ec0b92febfa4461c37944e180f319ece467"
899 dependencies = [
900  "bitflags",
901  "core-foundation",
902  "core-foundation-sys",
903  "libc",
904  "security-framework-sys",
905 ]
906
907 [[package]]
908 name = "security-framework-sys"
909 version = "2.3.0"
910 source = "registry+https://github.com/rust-lang/crates.io-index"
911 checksum = "7e4effb91b4b8b6fb7732e670b6cee160278ff8e6bf485c7805d9e319d76e284"
912 dependencies = [
913  "core-foundation-sys",
914  "libc",
915 ]
916
917 [[package]]
918 name = "sha2"
919 version = "0.9.5"
920 source = "registry+https://github.com/rust-lang/crates.io-index"
921 checksum = "b362ae5752fd2137731f9fa25fd4d9058af34666ca1966fb969119cc35719f12"
922 dependencies = [
923  "block-buffer",
924  "cfg-if",
925  "cpufeatures",
926  "digest",
927  "opaque-debug",
928 ]
929
930 [[package]]
931 name = "signal-hook-registry"
932 version = "1.4.0"
933 source = "registry+https://github.com/rust-lang/crates.io-index"
934 checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
935 dependencies = [
936  "libc",
937 ]
938
939 [[package]]
940 name = "slab"
941 version = "0.4.3"
942 source = "registry+https://github.com/rust-lang/crates.io-index"
943 checksum = "f173ac3d1a7e3b28003f40de0b5ce7fe2710f9b9dc3fc38664cebee46b3b6527"
944
945 [[package]]
946 name = "smallvec"
947 version = "1.6.1"
948 source = "registry+https://github.com/rust-lang/crates.io-index"
949 checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
950
951 [[package]]
952 name = "socket2"
953 version = "0.4.0"
954 source = "registry+https://github.com/rust-lang/crates.io-index"
955 checksum = "9e3dfc207c526015c632472a77be09cf1b6e46866581aecae5cc38fb4235dea2"
956 dependencies = [
957  "libc",
958  "winapi",
959 ]
960
961 [[package]]
962 name = "strsim"
963 version = "0.8.0"
964 source = "registry+https://github.com/rust-lang/crates.io-index"
965 checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
966
967 [[package]]
968 name = "structopt"
969 version = "0.3.22"
970 source = "registry+https://github.com/rust-lang/crates.io-index"
971 checksum = "69b041cdcb67226aca307e6e7be44c8806423d83e018bd662360a93dabce4d71"
972 dependencies = [
973  "clap",
974  "lazy_static",
975  "structopt-derive",
976 ]
977
978 [[package]]
979 name = "structopt-derive"
980 version = "0.4.15"
981 source = "registry+https://github.com/rust-lang/crates.io-index"
982 checksum = "7813934aecf5f51a54775e00068c237de98489463968231a51746bbbc03f9c10"
983 dependencies = [
984  "heck",
985  "proc-macro-error",
986  "proc-macro2",
987  "quote",
988  "syn",
989 ]
990
991 [[package]]
992 name = "subtle"
993 version = "2.4.1"
994 source = "registry+https://github.com/rust-lang/crates.io-index"
995 checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
996
997 [[package]]
998 name = "syn"
999 version = "1.0.73"
1000 source = "registry+https://github.com/rust-lang/crates.io-index"
1001 checksum = "f71489ff30030d2ae598524f61326b902466f72a0fb1a8564c001cc63425bcc7"
1002 dependencies = [
1003  "proc-macro2",
1004  "quote",
1005  "unicode-xid",
1006 ]
1007
1008 [[package]]
1009 name = "tempfile"
1010 version = "3.2.0"
1011 source = "registry+https://github.com/rust-lang/crates.io-index"
1012 checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
1013 dependencies = [
1014  "cfg-if",
1015  "libc",
1016  "rand",
1017  "redox_syscall",
1018  "remove_dir_all",
1019  "winapi",
1020 ]
1021
1022 [[package]]
1023 name = "termcolor"
1024 version = "1.1.2"
1025 source = "registry+https://github.com/rust-lang/crates.io-index"
1026 checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
1027 dependencies = [
1028  "winapi-util",
1029 ]
1030
1031 [[package]]
1032 name = "textwrap"
1033 version = "0.11.0"
1034 source = "registry+https://github.com/rust-lang/crates.io-index"
1035 checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
1036 dependencies = [
1037  "unicode-width",
1038 ]
1039
1040 [[package]]
1041 name = "tokio"
1042 version = "1.8.2"
1043 source = "registry+https://github.com/rust-lang/crates.io-index"
1044 checksum = "c2602b8af3767c285202012822834005f596c811042315fa7e9f5b12b2a43207"
1045 dependencies = [
1046  "autocfg",
1047  "bytes",
1048  "libc",
1049  "memchr",
1050  "mio",
1051  "num_cpus",
1052  "once_cell",
1053  "parking_lot",
1054  "pin-project-lite",
1055  "signal-hook-registry",
1056  "tokio-macros",
1057  "winapi",
1058 ]
1059
1060 [[package]]
1061 name = "tokio-macros"
1062 version = "1.3.0"
1063 source = "registry+https://github.com/rust-lang/crates.io-index"
1064 checksum = "54473be61f4ebe4efd09cec9bd5d16fa51d70ea0192213d754d2d500457db110"
1065 dependencies = [
1066  "proc-macro2",
1067  "quote",
1068  "syn",
1069 ]
1070
1071 [[package]]
1072 name = "tokio-native-tls"
1073 version = "0.3.0"
1074 source = "registry+https://github.com/rust-lang/crates.io-index"
1075 checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
1076 dependencies = [
1077  "native-tls",
1078  "tokio",
1079 ]
1080
1081 [[package]]
1082 name = "tokio-util"
1083 version = "0.6.7"
1084 source = "registry+https://github.com/rust-lang/crates.io-index"
1085 checksum = "1caa0b0c8d94a049db56b5acf8cba99dc0623aab1b26d5b5f5e2d945846b3592"
1086 dependencies = [
1087  "bytes",
1088  "futures-core",
1089  "futures-sink",
1090  "log",
1091  "pin-project-lite",
1092  "tokio",
1093 ]
1094
1095 [[package]]
1096 name = "tower-service"
1097 version = "0.3.1"
1098 source = "registry+https://github.com/rust-lang/crates.io-index"
1099 checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
1100
1101 [[package]]
1102 name = "tracing"
1103 version = "0.1.26"
1104 source = "registry+https://github.com/rust-lang/crates.io-index"
1105 checksum = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d"
1106 dependencies = [
1107  "cfg-if",
1108  "pin-project-lite",
1109  "tracing-core",
1110 ]
1111
1112 [[package]]
1113 name = "tracing-core"
1114 version = "0.1.18"
1115 source = "registry+https://github.com/rust-lang/crates.io-index"
1116 checksum = "a9ff14f98b1a4b289c6248a023c1c2fa1491062964e9fed67ab29c4e4da4a052"
1117 dependencies = [
1118  "lazy_static",
1119 ]
1120
1121 [[package]]
1122 name = "try-lock"
1123 version = "0.2.3"
1124 source = "registry+https://github.com/rust-lang/crates.io-index"
1125 checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
1126
1127 [[package]]
1128 name = "typenum"
1129 version = "1.13.0"
1130 source = "registry+https://github.com/rust-lang/crates.io-index"
1131 checksum = "879f6906492a7cd215bfa4cf595b600146ccfac0c79bcbd1f3000162af5e8b06"
1132
1133 [[package]]
1134 name = "unicode-segmentation"
1135 version = "1.8.0"
1136 source = "registry+https://github.com/rust-lang/crates.io-index"
1137 checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
1138
1139 [[package]]
1140 name = "unicode-width"
1141 version = "0.1.8"
1142 source = "registry+https://github.com/rust-lang/crates.io-index"
1143 checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
1144
1145 [[package]]
1146 name = "unicode-xid"
1147 version = "0.2.2"
1148 source = "registry+https://github.com/rust-lang/crates.io-index"
1149 checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
1150
1151 [[package]]
1152 name = "vcpkg"
1153 version = "0.2.15"
1154 source = "registry+https://github.com/rust-lang/crates.io-index"
1155 checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1156
1157 [[package]]
1158 name = "vec_map"
1159 version = "0.8.2"
1160 source = "registry+https://github.com/rust-lang/crates.io-index"
1161 checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
1162
1163 [[package]]
1164 name = "version_check"
1165 version = "0.9.3"
1166 source = "registry+https://github.com/rust-lang/crates.io-index"
1167 checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
1168
1169 [[package]]
1170 name = "void"
1171 version = "1.0.2"
1172 source = "registry+https://github.com/rust-lang/crates.io-index"
1173 checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
1174
1175 [[package]]
1176 name = "want"
1177 version = "0.3.0"
1178 source = "registry+https://github.com/rust-lang/crates.io-index"
1179 checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
1180 dependencies = [
1181  "log",
1182  "try-lock",
1183 ]
1184
1185 [[package]]
1186 name = "wasi"
1187 version = "0.10.2+wasi-snapshot-preview1"
1188 source = "registry+https://github.com/rust-lang/crates.io-index"
1189 checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
1190
1191 [[package]]
1192 name = "winapi"
1193 version = "0.3.9"
1194 source = "registry+https://github.com/rust-lang/crates.io-index"
1195 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1196 dependencies = [
1197  "winapi-i686-pc-windows-gnu",
1198  "winapi-x86_64-pc-windows-gnu",
1199 ]
1200
1201 [[package]]
1202 name = "winapi-i686-pc-windows-gnu"
1203 version = "0.4.0"
1204 source = "registry+https://github.com/rust-lang/crates.io-index"
1205 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1206
1207 [[package]]
1208 name = "winapi-util"
1209 version = "0.1.5"
1210 source = "registry+https://github.com/rust-lang/crates.io-index"
1211 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
1212 dependencies = [
1213  "winapi",
1214 ]
1215
1216 [[package]]
1217 name = "winapi-x86_64-pc-windows-gnu"
1218 version = "0.4.0"
1219 source = "registry+https://github.com/rust-lang/crates.io-index"
1220 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"