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