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