1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 3
4
5[[package]]
6name = "addr2line"
7version = "0.19.0"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
10dependencies = [
11 "gimli",
12]
13
14[[package]]
15name = "adler"
16version = "1.0.2"
17source = "registry+https://github.com/rust-lang/crates.io-index"
18checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
19
20[[package]]
21name = "aead"
22version = "0.3.2"
23source = "registry+https://github.com/rust-lang/crates.io-index"
24checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331"
25dependencies = [
26 "generic-array",
27]
28
29[[package]]
30name = "aes"
31version = "0.6.0"
32source = "registry+https://github.com/rust-lang/crates.io-index"
33checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561"
34dependencies = [
35 "aes-soft",
36 "aesni",
37 "cipher",
38]
39
40[[package]]
41name = "aes-gcm"
42version = "0.8.0"
43source = "registry+https://github.com/rust-lang/crates.io-index"
44checksum = "5278b5fabbb9bd46e24aa69b2fdea62c99088e0a950a9be40e3e0101298f88da"
45dependencies = [
46 "aead",
47 "aes",
48 "cipher",
49 "ctr",
50 "ghash",
51 "subtle",
52]
53
54[[package]]
55name = "aes-soft"
56version = "0.6.4"
57source = "registry+https://github.com/rust-lang/crates.io-index"
58checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072"
59dependencies = [
60 "cipher",
61 "opaque-debug",
62]
63
64[[package]]
65name = "aesni"
66version = "0.10.0"
67source = "registry+https://github.com/rust-lang/crates.io-index"
68checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce"
69dependencies = [
70 "cipher",
71 "opaque-debug",
72]
73
74[[package]]
75name = "aho-corasick"
76version = "1.0.1"
77source = "registry+https://github.com/rust-lang/crates.io-index"
78checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04"
79dependencies = [
80 "memchr",
81]
82
83[[package]]
84name = "android_system_properties"
85version = "0.1.5"
86source = "registry+https://github.com/rust-lang/crates.io-index"
87checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
88dependencies = [
89 "libc",
90]
91
92[[package]]
93name = "ansi_term"
94version = "0.12.1"
95source = "registry+https://github.com/rust-lang/crates.io-index"
96checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
97dependencies = [
98 "winapi",
99]
100
101[[package]]
102name = "anyhow"
103version = "1.0.71"
104source = "registry+https://github.com/rust-lang/crates.io-index"
105checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
106
107[[package]]
108name = "async-channel"
109version = "1.8.0"
110source = "registry+https://github.com/rust-lang/crates.io-index"
111checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833"
112dependencies = [
113 "concurrent-queue",
114 "event-listener",
115 "futures-core",
116]
117
118[[package]]
119name = "async-executor"
120version = "1.5.1"
121source = "registry+https://github.com/rust-lang/crates.io-index"
122checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb"
123dependencies = [
124 "async-lock",
125 "async-task",
126 "concurrent-queue",
127 "fastrand",
128 "futures-lite",
129 "slab",
130]
131
132[[package]]
133name = "async-global-executor"
134version = "2.3.1"
135source = "registry+https://github.com/rust-lang/crates.io-index"
136checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776"
137dependencies = [
138 "async-channel",
139 "async-executor",
140 "async-io",
141 "async-lock",
142 "blocking",
143 "futures-lite",
144 "once_cell",
145]
146
147[[package]]
148name = "async-io"
149version = "1.13.0"
150source = "registry+https://github.com/rust-lang/crates.io-index"
151checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
152dependencies = [
153 "async-lock",
154 "autocfg",
155 "cfg-if",
156 "concurrent-queue",
157 "futures-lite",
158 "log 0.4.17",
159 "parking",
160 "polling",
161 "rustix",
162 "slab",
163 "socket2",
164 "waker-fn",
165]
166
167[[package]]
168name = "async-lock"
169version = "2.7.0"
170source = "registry+https://github.com/rust-lang/crates.io-index"
171checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7"
172dependencies = [
173 "event-listener",
174]
175
176[[package]]
177name = "async-std"
178version = "1.12.0"
179source = "registry+https://github.com/rust-lang/crates.io-index"
180checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
181dependencies = [
182 "async-channel",
183 "async-global-executor",
184 "async-io",
185 "async-lock",
186 "crossbeam-utils",
187 "futures-channel",
188 "futures-core",
189 "futures-io",
190 "futures-lite",
191 "gloo-timers",
192 "kv-log-macro",
193 "log 0.4.17",
194 "memchr",
195 "once_cell",
196 "pin-project-lite",
197 "pin-utils",
198 "slab",
199 "wasm-bindgen-futures",
200]
201
202[[package]]
203name = "async-task"
204version = "4.4.0"
205source = "registry+https://github.com/rust-lang/crates.io-index"
206checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae"
207
208[[package]]
209name = "async-trait"
210version = "0.1.68"
211source = "registry+https://github.com/rust-lang/crates.io-index"
212checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
213dependencies = [
214 "proc-macro2",
215 "quote",
216 "syn 2.0.15",
217]
218
219[[package]]
220name = "atomic-waker"
221version = "1.1.1"
222source = "registry+https://github.com/rust-lang/crates.io-index"
223checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3"
224
225[[package]]
226name = "atty"
227version = "0.2.14"
228source = "registry+https://github.com/rust-lang/crates.io-index"
229checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
230dependencies = [
231 "hermit-abi 0.1.19",
232 "libc",
233 "winapi",
234]
235
236[[package]]
237name = "autocfg"
238version = "1.1.0"
239source = "registry+https://github.com/rust-lang/crates.io-index"
240checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
241
242[[package]]
243name = "backtrace"
244version = "0.3.67"
245source = "registry+https://github.com/rust-lang/crates.io-index"
246checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
247dependencies = [
248 "addr2line",
249 "cc",
250 "cfg-if",
251 "libc",
252 "miniz_oxide",
253 "object",
254 "rustc-demangle",
255]
256
257[[package]]
258name = "base-x"
259version = "0.2.11"
260source = "registry+https://github.com/rust-lang/crates.io-index"
261checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
262
263[[package]]
264name = "base64"
265version = "0.13.1"
266source = "registry+https://github.com/rust-lang/crates.io-index"
267checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
268
269[[package]]
270name = "bitflags"
271version = "1.3.2"
272source = "registry+https://github.com/rust-lang/crates.io-index"
273checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
274
275[[package]]
276name = "block-buffer"
277version = "0.9.0"
278source = "registry+https://github.com/rust-lang/crates.io-index"
279checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
280dependencies = [
281 "generic-array",
282]
283
284[[package]]
285name = "blocking"
286version = "1.3.1"
287source = "registry+https://github.com/rust-lang/crates.io-index"
288checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65"
289dependencies = [
290 "async-channel",
291 "async-lock",
292 "async-task",
293 "atomic-waker",
294 "fastrand",
295 "futures-lite",
296 "log 0.4.17",
297]
298
299[[package]]
300name = "bumpalo"
301version = "3.12.2"
302source = "registry+https://github.com/rust-lang/crates.io-index"
303checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b"
304
305[[package]]
306name = "byteorder"
307version = "1.4.3"
308source = "registry+https://github.com/rust-lang/crates.io-index"
309checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
310
311[[package]]
312name = "bytes"
313version = "0.5.6"
314source = "registry+https://github.com/rust-lang/crates.io-index"
315checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
316
317[[package]]
318name = "bytes"
319version = "1.4.0"
320source = "registry+https://github.com/rust-lang/crates.io-index"
321checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
322
323[[package]]
324name = "cc"
325version = "1.0.79"
326source = "registry+https://github.com/rust-lang/crates.io-index"
327checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
328
329[[package]]
330name = "cfg-if"
331version = "1.0.0"
332source = "registry+https://github.com/rust-lang/crates.io-index"
333checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
334
335[[package]]
336name = "chrono"
337version = "0.4.24"
338source = "registry+https://github.com/rust-lang/crates.io-index"
339checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b"
340dependencies = [
341 "iana-time-zone",
342 "js-sys",
343 "num-integer",
344 "num-traits",
345 "time 0.1.45",
346 "wasm-bindgen",
347 "winapi",
348]
349
350[[package]]
351name = "cipher"
352version = "0.2.5"
353source = "registry+https://github.com/rust-lang/crates.io-index"
354checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801"
355dependencies = [
356 "generic-array",
357]
358
359[[package]]
360name = "clap"
361version = "2.34.0"
362source = "registry+https://github.com/rust-lang/crates.io-index"
363checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
364dependencies = [
365 "ansi_term",
366 "atty",
367 "bitflags",
368 "strsim 0.8.0",
369 "textwrap",
370 "unicode-width",
371 "vec_map",
372 "yaml-rust",
373]
374
375[[package]]
376name = "colored"
377version = "2.0.0"
378source = "registry+https://github.com/rust-lang/crates.io-index"
379checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd"
380dependencies = [
381 "atty",
382 "lazy_static",
383 "winapi",
384]
385
386[[package]]
387name = "comfy-table"
388version = "3.0.0"
389source = "registry+https://github.com/rust-lang/crates.io-index"
390checksum = "c93d79ba722818d1a6aedfbe2cf4889330c856d0c6772951efbbf3dd283c070a"
391dependencies = [
392 "crossterm",
393 "strum",
394 "strum_macros",
395]
396
397[[package]]
398name = "concurrent-queue"
399version = "2.2.0"
400source = "registry+https://github.com/rust-lang/crates.io-index"
401checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c"
402dependencies = [
403 "crossbeam-utils",
404]
405
406[[package]]
407name = "console"
408version = "0.15.5"
409source = "registry+https://github.com/rust-lang/crates.io-index"
410checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60"
411dependencies = [
412 "encode_unicode",
413 "lazy_static",
414 "libc",
415 "windows-sys 0.42.0",
416]
417
418[[package]]
419name = "const_fn"
420version = "0.4.9"
421source = "registry+https://github.com/rust-lang/crates.io-index"
422checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935"
423
424[[package]]
425name = "convert_case"
426version = "0.4.0"
427source = "registry+https://github.com/rust-lang/crates.io-index"
428checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
429
430[[package]]
431name = "cookie"
432version = "0.14.4"
433source = "registry+https://github.com/rust-lang/crates.io-index"
434checksum = "03a5d7b21829bc7b4bf4754a978a241ae54ea55a40f92bb20216e54096f4b951"
435dependencies = [
436 "aes-gcm",
437 "base64",
438 "hkdf",
439 "hmac",
440 "percent-encoding",
441 "rand 0.8.5",
442 "sha2",
443 "time 0.2.27",
444 "version_check",
445]
446
447[[package]]
448name = "core-foundation-sys"
449version = "0.8.4"
450source = "registry+https://github.com/rust-lang/crates.io-index"
451checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
452
453[[package]]
454name = "cpufeatures"
455version = "0.2.7"
456source = "registry+https://github.com/rust-lang/crates.io-index"
457checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58"
458dependencies = [
459 "libc",
460]
461
462[[package]]
463name = "cpuid-bool"
464version = "0.2.0"
465source = "registry+https://github.com/rust-lang/crates.io-index"
466checksum = "dcb25d077389e53838a8158c8e99174c5a9d902dee4904320db714f3c653ffba"
467
468[[package]]
469name = "crc32fast"
470version = "1.3.2"
471source = "registry+https://github.com/rust-lang/crates.io-index"
472checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
473dependencies = [
474 "cfg-if",
475]
476
477[[package]]
478name = "crossbeam-utils"
479version = "0.8.15"
480source = "registry+https://github.com/rust-lang/crates.io-index"
481checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
482dependencies = [
483 "cfg-if",
484]
485
486[[package]]
487name = "crossterm"
488version = "0.20.0"
489source = "registry+https://github.com/rust-lang/crates.io-index"
490checksum = "c0ebde6a9dd5e331cd6c6f48253254d117642c31653baa475e394657c59c1f7d"
491dependencies = [
492 "bitflags",
493 "crossterm_winapi",
494 "libc",
495 "mio",
496 "parking_lot 0.11.2",
497 "signal-hook",
498 "signal-hook-mio",
499 "winapi",
500]
501
502[[package]]
503name = "crossterm_winapi"
504version = "0.8.0"
505source = "registry+https://github.com/rust-lang/crates.io-index"
506checksum = "3a6966607622438301997d3dac0d2f6e9a90c68bb6bc1785ea98456ab93c0507"
507dependencies = [
508 "winapi",
509]
510
511[[package]]
512name = "crypto-mac"
513version = "0.10.1"
514source = "registry+https://github.com/rust-lang/crates.io-index"
515checksum = "bff07008ec701e8028e2ceb8f83f0e4274ee62bd2dbdc4fefff2e9a91824081a"
516dependencies = [
517 "generic-array",
518 "subtle",
519]
520
521[[package]]
522name = "cssparser"
523version = "0.27.2"
524source = "registry+https://github.com/rust-lang/crates.io-index"
525checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a"
526dependencies = [
527 "cssparser-macros",
528 "dtoa-short",
529 "itoa 0.4.8",
530 "matches",
531 "phf",
532 "proc-macro2",
533 "quote",
534 "smallvec",
535 "syn 1.0.109",
536]
537
538[[package]]
539name = "cssparser-macros"
540version = "0.6.0"
541source = "registry+https://github.com/rust-lang/crates.io-index"
542checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e"
543dependencies = [
544 "quote",
545 "syn 1.0.109",
546]
547
548[[package]]
549name = "ctor"
550version = "0.1.26"
551source = "registry+https://github.com/rust-lang/crates.io-index"
552checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
553dependencies = [
554 "quote",
555 "syn 1.0.109",
556]
557
558[[package]]
559name = "ctr"
560version = "0.6.0"
561source = "registry+https://github.com/rust-lang/crates.io-index"
562checksum = "fb4a30d54f7443bf3d6191dcd486aca19e67cb3c49fa7a06a319966346707e7f"
563dependencies = [
564 "cipher",
565]
566
567[[package]]
568name = "curl"
569version = "0.4.44"
570source = "registry+https://github.com/rust-lang/crates.io-index"
571checksum = "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22"
572dependencies = [
573 "curl-sys",
574 "libc",
575 "openssl-probe",
576 "openssl-sys",
577 "schannel",
578 "socket2",
579 "winapi",
580]
581
582[[package]]
583name = "curl-sys"
584version = "0.4.61+curl-8.0.1"
585source = "registry+https://github.com/rust-lang/crates.io-index"
586checksum = "14d05c10f541ae6f3bc5b3d923c20001f47db7d5f0b2bc6ad16490133842db79"
587dependencies = [
588 "cc",
589 "libc",
590 "libnghttp2-sys",
591 "libz-sys",
592 "openssl-sys",
593 "pkg-config",
594 "vcpkg",
595 "winapi",
596]
597
598[[package]]
599name = "darling"
600version = "0.12.4"
601source = "registry+https://github.com/rust-lang/crates.io-index"
602checksum = "5f2c43f534ea4b0b049015d00269734195e6d3f0f6635cb692251aca6f9f8b3c"
603dependencies = [
604 "darling_core",
605 "darling_macro",
606]
607
608[[package]]
609name = "darling_core"
610version = "0.12.4"
611source = "registry+https://github.com/rust-lang/crates.io-index"
612checksum = "8e91455b86830a1c21799d94524df0845183fa55bafd9aa137b01c7d1065fa36"
613dependencies = [
614 "fnv",
615 "ident_case",
616 "proc-macro2",
617 "quote",
618 "strsim 0.10.0",
619 "syn 1.0.109",
620]
621
622[[package]]
623name = "darling_macro"
624version = "0.12.4"
625source = "registry+https://github.com/rust-lang/crates.io-index"
626checksum = "29b5acf0dea37a7f66f7b25d2c5e93fd46f8f6968b1a5d7a3e02e97768afc95a"
627dependencies = [
628 "darling_core",
629 "quote",
630 "syn 1.0.109",
631]
632
633[[package]]
634name = "derive_builder"
635version = "0.10.2"
636source = "registry+https://github.com/rust-lang/crates.io-index"
637checksum = "d13202debe11181040ae9063d739fa32cfcaaebe2275fe387703460ae2365b30"
638dependencies = [
639 "derive_builder_macro",
640]
641
642[[package]]
643name = "derive_builder_core"
644version = "0.10.2"
645source = "registry+https://github.com/rust-lang/crates.io-index"
646checksum = "66e616858f6187ed828df7c64a6d71720d83767a7f19740b2d1b6fe6327b36e5"
647dependencies = [
648 "darling",
649 "proc-macro2",
650 "quote",
651 "syn 1.0.109",
652]
653
654[[package]]
655name = "derive_builder_macro"
656version = "0.10.2"
657source = "registry+https://github.com/rust-lang/crates.io-index"
658checksum = "58a94ace95092c5acb1e97a7e846b310cfbd499652f72297da7493f618a98d73"
659dependencies = [
660 "derive_builder_core",
661 "syn 1.0.109",
662]
663
664[[package]]
665name = "derive_more"
666version = "0.99.17"
667source = "registry+https://github.com/rust-lang/crates.io-index"
668checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
669dependencies = [
670 "convert_case",
671 "proc-macro2",
672 "quote",
673 "rustc_version 0.4.0",
674 "syn 1.0.109",
675]
676
677[[package]]
678name = "digest"
679version = "0.9.0"
680source = "registry+https://github.com/rust-lang/crates.io-index"
681checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
682dependencies = [
683 "generic-array",
684]
685
686[[package]]
687name = "directories"
688version = "3.0.2"
689source = "registry+https://github.com/rust-lang/crates.io-index"
690checksum = "e69600ff1703123957937708eb27f7a564e48885c537782722ed0ba3189ce1d7"
691dependencies = [
692 "dirs-sys",
693]
694
695[[package]]
696name = "dirs-sys"
697version = "0.3.7"
698source = "registry+https://github.com/rust-lang/crates.io-index"
699checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
700dependencies = [
701 "libc",
702 "redox_users",
703 "winapi",
704]
705
706[[package]]
707name = "discard"
708version = "1.0.4"
709source = "registry+https://github.com/rust-lang/crates.io-index"
710checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
711
712[[package]]
713name = "dtoa"
714version = "0.4.8"
715source = "registry+https://github.com/rust-lang/crates.io-index"
716checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
717
718[[package]]
719name = "dtoa-short"
720version = "0.3.3"
721source = "registry+https://github.com/rust-lang/crates.io-index"
722checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6"
723dependencies = [
724 "dtoa",
725]
726
727[[package]]
728name = "either"
729version = "1.8.1"
730source = "registry+https://github.com/rust-lang/crates.io-index"
731checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
732
733[[package]]
734name = "encode_unicode"
735version = "0.3.6"
736source = "registry+https://github.com/rust-lang/crates.io-index"
737checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
738
739[[package]]
740name = "encoding_rs"
741version = "0.8.32"
742source = "registry+https://github.com/rust-lang/crates.io-index"
743checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
744dependencies = [
745 "cfg-if",
746]
747
748[[package]]
749name = "epub-builder"
750version = "0.4.10"
751source = "registry+https://github.com/rust-lang/crates.io-index"
752checksum = "8d8b1b5059c4b990da60cb6fee785e49ea09d1ed8249d91e2dddfd92b74b7cbc"
753dependencies = [
754 "chrono",
755 "error-chain",
756 "html-escape",
757 "lazy_static",
758 "mustache",
759 "regex",
760 "tempdir",
761 "uuid",
762 "zip",
763]
764
765[[package]]
766name = "errno"
767version = "0.3.1"
768source = "registry+https://github.com/rust-lang/crates.io-index"
769checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
770dependencies = [
771 "errno-dragonfly",
772 "libc",
773 "windows-sys 0.48.0",
774]
775
776[[package]]
777name = "errno-dragonfly"
778version = "0.1.2"
779source = "registry+https://github.com/rust-lang/crates.io-index"
780checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
781dependencies = [
782 "cc",
783 "libc",
784]
785
786[[package]]
787name = "error-chain"
788version = "0.12.4"
789source = "registry+https://github.com/rust-lang/crates.io-index"
790checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
791dependencies = [
792 "backtrace",
793 "version_check",
794]
795
796[[package]]
797name = "event-listener"
798version = "2.5.3"
799source = "registry+https://github.com/rust-lang/crates.io-index"
800checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
801
802[[package]]
803name = "fastrand"
804version = "1.9.0"
805source = "registry+https://github.com/rust-lang/crates.io-index"
806checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
807dependencies = [
808 "instant",
809]
810
811[[package]]
812name = "flexi_logger"
813version = "0.18.1"
814source = "registry+https://github.com/rust-lang/crates.io-index"
815checksum = "081e9563bb9600593f0f5d38c24f0e3dc550cd301b4872b986e20f1874104791"
816dependencies = [
817 "atty",
818 "chrono",
819 "glob",
820 "lazy_static",
821 "log 0.4.17",
822 "regex",
823 "thiserror",
824 "yansi",
825]
826
827[[package]]
828name = "flume"
829version = "0.9.2"
830source = "registry+https://github.com/rust-lang/crates.io-index"
831checksum = "1bebadab126f8120d410b677ed95eee4ba6eb7c6dd8e34a5ec88a08050e26132"
832dependencies = [
833 "futures-core",
834 "futures-sink",
835 "spinning_top",
836]
837
838[[package]]
839name = "fnv"
840version = "1.0.7"
841source = "registry+https://github.com/rust-lang/crates.io-index"
842checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
843
844[[package]]
845name = "form_urlencoded"
846version = "1.1.0"
847source = "registry+https://github.com/rust-lang/crates.io-index"
848checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
849dependencies = [
850 "percent-encoding",
851]
852
853[[package]]
854name = "fuchsia-cprng"
855version = "0.1.1"
856source = "registry+https://github.com/rust-lang/crates.io-index"
857checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
858
859[[package]]
860name = "futf"
861version = "0.1.5"
862source = "registry+https://github.com/rust-lang/crates.io-index"
863checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
864dependencies = [
865 "mac",
866 "new_debug_unreachable",
867]
868
869[[package]]
870name = "futures"
871version = "0.3.28"
872source = "registry+https://github.com/rust-lang/crates.io-index"
873checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
874dependencies = [
875 "futures-channel",
876 "futures-core",
877 "futures-executor",
878 "futures-io",
879 "futures-sink",
880 "futures-task",
881 "futures-util",
882]
883
884[[package]]
885name = "futures-channel"
886version = "0.3.28"
887source = "registry+https://github.com/rust-lang/crates.io-index"
888checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
889dependencies = [
890 "futures-core",
891 "futures-sink",
892]
893
894[[package]]
895name = "futures-core"
896version = "0.3.28"
897source = "registry+https://github.com/rust-lang/crates.io-index"
898checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
899
900[[package]]
901name = "futures-executor"
902version = "0.3.28"
903source = "registry+https://github.com/rust-lang/crates.io-index"
904checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
905dependencies = [
906 "futures-core",
907 "futures-task",
908 "futures-util",
909]
910
911[[package]]
912name = "futures-io"
913version = "0.3.28"
914source = "registry+https://github.com/rust-lang/crates.io-index"
915checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
916
917[[package]]
918name = "futures-lite"
919version = "1.13.0"
920source = "registry+https://github.com/rust-lang/crates.io-index"
921checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
922dependencies = [
923 "fastrand",
924 "futures-core",
925 "futures-io",
926 "memchr",
927 "parking",
928 "pin-project-lite",
929 "waker-fn",
930]
931
932[[package]]
933name = "futures-macro"
934version = "0.3.28"
935source = "registry+https://github.com/rust-lang/crates.io-index"
936checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
937dependencies = [
938 "proc-macro2",
939 "quote",
940 "syn 2.0.15",
941]
942
943[[package]]
944name = "futures-sink"
945version = "0.3.28"
946source = "registry+https://github.com/rust-lang/crates.io-index"
947checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
948
949[[package]]
950name = "futures-task"
951version = "0.3.28"
952source = "registry+https://github.com/rust-lang/crates.io-index"
953checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
954
955[[package]]
956name = "futures-util"
957version = "0.3.28"
958source = "registry+https://github.com/rust-lang/crates.io-index"
959checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
960dependencies = [
961 "futures-channel",
962 "futures-core",
963 "futures-io",
964 "futures-macro",
965 "futures-sink",
966 "futures-task",
967 "memchr",
968 "pin-project-lite",
969 "pin-utils",
970 "slab",
971]
972
973[[package]]
974name = "fxhash"
975version = "0.2.1"
976source = "registry+https://github.com/rust-lang/crates.io-index"
977checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
978dependencies = [
979 "byteorder",
980]
981
982[[package]]
983name = "generic-array"
984version = "0.14.7"
985source = "registry+https://github.com/rust-lang/crates.io-index"
986checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
987dependencies = [
988 "typenum",
989 "version_check",
990]
991
992[[package]]
993name = "getrandom"
994version = "0.1.16"
995source = "registry+https://github.com/rust-lang/crates.io-index"
996checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
997dependencies = [
998 "cfg-if",
999 "libc",
1000 "wasi 0.9.0+wasi-snapshot-preview1",
1001]
1002
1003[[package]]
1004name = "getrandom"
1005version = "0.2.9"
1006source = "registry+https://github.com/rust-lang/crates.io-index"
1007checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
1008dependencies = [
1009 "cfg-if",
1010 "libc",
1011 "wasi 0.11.0+wasi-snapshot-preview1",
1012]
1013
1014[[package]]
1015name = "ghash"
1016version = "0.3.1"
1017source = "registry+https://github.com/rust-lang/crates.io-index"
1018checksum = "97304e4cd182c3846f7575ced3890c53012ce534ad9114046b0a9e00bb30a375"
1019dependencies = [
1020 "opaque-debug",
1021 "polyval",
1022]
1023
1024[[package]]
1025name = "gimli"
1026version = "0.27.2"
1027source = "registry+https://github.com/rust-lang/crates.io-index"
1028checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4"
1029
1030[[package]]
1031name = "glob"
1032version = "0.3.1"
1033source = "registry+https://github.com/rust-lang/crates.io-index"
1034checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
1035
1036[[package]]
1037name = "gloo-timers"
1038version = "0.2.6"
1039source = "registry+https://github.com/rust-lang/crates.io-index"
1040checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
1041dependencies = [
1042 "futures-channel",
1043 "futures-core",
1044 "js-sys",
1045 "wasm-bindgen",
1046]
1047
1048[[package]]
1049name = "heck"
1050version = "0.3.3"
1051source = "registry+https://github.com/rust-lang/crates.io-index"
1052checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
1053dependencies = [
1054 "unicode-segmentation",
1055]
1056
1057[[package]]
1058name = "hermit-abi"
1059version = "0.1.19"
1060source = "registry+https://github.com/rust-lang/crates.io-index"
1061checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
1062dependencies = [
1063 "libc",
1064]
1065
1066[[package]]
1067name = "hermit-abi"
1068version = "0.3.1"
1069source = "registry+https://github.com/rust-lang/crates.io-index"
1070checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
1071
1072[[package]]
1073name = "hkdf"
1074version = "0.10.0"
1075source = "registry+https://github.com/rust-lang/crates.io-index"
1076checksum = "51ab2f639c231793c5f6114bdb9bbe50a7dbbfcd7c7c6bd8475dec2d991e964f"
1077dependencies = [
1078 "digest",
1079 "hmac",
1080]
1081
1082[[package]]
1083name = "hmac"
1084version = "0.10.1"
1085source = "registry+https://github.com/rust-lang/crates.io-index"
1086checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15"
1087dependencies = [
1088 "crypto-mac",
1089 "digest",
1090]
1091
1092[[package]]
1093name = "html-escape"
1094version = "0.2.13"
1095source = "registry+https://github.com/rust-lang/crates.io-index"
1096checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
1097dependencies = [
1098 "utf8-width",
1099]
1100
1101[[package]]
1102name = "html5ever"
1103version = "0.25.2"
1104source = "registry+https://github.com/rust-lang/crates.io-index"
1105checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148"
1106dependencies = [
1107 "log 0.4.17",
1108 "mac",
1109 "markup5ever",
1110 "proc-macro2",
1111 "quote",
1112 "syn 1.0.109",
1113]
1114
1115[[package]]
1116name = "http"
1117version = "0.2.9"
1118source = "registry+https://github.com/rust-lang/crates.io-index"
1119checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
1120dependencies = [
1121 "bytes 1.4.0",
1122 "fnv",
1123 "itoa 1.0.6",
1124]
1125
1126[[package]]
1127name = "http-client"
1128version = "6.5.3"
1129source = "registry+https://github.com/rust-lang/crates.io-index"
1130checksum = "1947510dc91e2bf586ea5ffb412caad7673264e14bb39fb9078da114a94ce1a5"
1131dependencies = [
1132 "async-std",
1133 "async-trait",
1134 "cfg-if",
1135 "http-types",
1136 "isahc",
1137 "log 0.4.17",
1138]
1139
1140[[package]]
1141name = "http-types"
1142version = "2.12.0"
1143source = "registry+https://github.com/rust-lang/crates.io-index"
1144checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad"
1145dependencies = [
1146 "anyhow",
1147 "async-channel",
1148 "async-std",
1149 "base64",
1150 "cookie",
1151 "futures-lite",
1152 "infer",
1153 "pin-project-lite",
1154 "rand 0.7.3",
1155 "serde",
1156 "serde_json",
1157 "serde_qs",
1158 "serde_urlencoded",
1159 "url",
1160]
1161
1162[[package]]
1163name = "iana-time-zone"
1164version = "0.1.56"
1165source = "registry+https://github.com/rust-lang/crates.io-index"
1166checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c"
1167dependencies = [
1168 "android_system_properties",
1169 "core-foundation-sys",
1170 "iana-time-zone-haiku",
1171 "js-sys",
1172 "wasm-bindgen",
1173 "windows",
1174]
1175
1176[[package]]
1177name = "iana-time-zone-haiku"
1178version = "0.1.2"
1179source = "registry+https://github.com/rust-lang/crates.io-index"
1180checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1181dependencies = [
1182 "cc",
1183]
1184
1185[[package]]
1186name = "ident_case"
1187version = "1.0.1"
1188source = "registry+https://github.com/rust-lang/crates.io-index"
1189checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1190
1191[[package]]
1192name = "idna"
1193version = "0.3.0"
1194source = "registry+https://github.com/rust-lang/crates.io-index"
1195checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
1196dependencies = [
1197 "unicode-bidi",
1198 "unicode-normalization",
1199]
1200
1201[[package]]
1202name = "indicatif"
1203version = "0.16.2"
1204source = "registry+https://github.com/rust-lang/crates.io-index"
1205checksum = "2d207dc617c7a380ab07ff572a6e52fa202a2a8f355860ac9c38e23f8196be1b"
1206dependencies = [
1207 "console",
1208 "lazy_static",
1209 "number_prefix",
1210 "regex",
1211]
1212
1213[[package]]
1214name = "infer"
1215version = "0.2.3"
1216source = "registry+https://github.com/rust-lang/crates.io-index"
1217checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac"
1218
1219[[package]]
1220name = "instant"
1221version = "0.1.12"
1222source = "registry+https://github.com/rust-lang/crates.io-index"
1223checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
1224dependencies = [
1225 "cfg-if",
1226]
1227
1228[[package]]
1229name = "io-lifetimes"
1230version = "1.0.10"
1231source = "registry+https://github.com/rust-lang/crates.io-index"
1232checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
1233dependencies = [
1234 "hermit-abi 0.3.1",
1235 "libc",
1236 "windows-sys 0.48.0",
1237]
1238
1239[[package]]
1240name = "isahc"
1241version = "0.9.14"
1242source = "registry+https://github.com/rust-lang/crates.io-index"
1243checksum = "e2948a0ce43e2c2ef11d7edf6816508998d99e13badd1150be0914205df9388a"
1244dependencies = [
1245 "bytes 0.5.6",
1246 "crossbeam-utils",
1247 "curl",
1248 "curl-sys",
1249 "flume",
1250 "futures-lite",
1251 "http",
1252 "log 0.4.17",
1253 "once_cell",
1254 "slab",
1255 "sluice",
1256 "tracing",
1257 "tracing-futures",
1258 "url",
1259 "waker-fn",
1260]
1261
1262[[package]]
1263name = "itertools"
1264version = "0.10.5"
1265source = "registry+https://github.com/rust-lang/crates.io-index"
1266checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1267dependencies = [
1268 "either",
1269]
1270
1271[[package]]
1272name = "itoa"
1273version = "0.4.8"
1274source = "registry+https://github.com/rust-lang/crates.io-index"
1275checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
1276
1277[[package]]
1278name = "itoa"
1279version = "1.0.6"
1280source = "registry+https://github.com/rust-lang/crates.io-index"
1281checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
1282
1283[[package]]
1284name = "js-sys"
1285version = "0.3.62"
1286source = "registry+https://github.com/rust-lang/crates.io-index"
1287checksum = "68c16e1bfd491478ab155fd8b4896b86f9ede344949b641e61501e07c2b8b4d5"
1288dependencies = [
1289 "wasm-bindgen",
1290]
1291
1292[[package]]
1293name = "kuchiki"
1294version = "0.8.1"
1295source = "registry+https://github.com/rust-lang/crates.io-index"
1296checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358"
1297dependencies = [
1298 "cssparser",
1299 "html5ever",
1300 "matches",
1301 "selectors",
1302]
1303
1304[[package]]
1305name = "kv-log-macro"
1306version = "1.0.7"
1307source = "registry+https://github.com/rust-lang/crates.io-index"
1308checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
1309dependencies = [
1310 "log 0.4.17",
1311]
1312
1313[[package]]
1314name = "lazy_static"
1315version = "1.4.0"
1316source = "registry+https://github.com/rust-lang/crates.io-index"
1317checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1318
1319[[package]]
1320name = "libc"
1321version = "0.2.144"
1322source = "registry+https://github.com/rust-lang/crates.io-index"
1323checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1"
1324
1325[[package]]
1326name = "libnghttp2-sys"
1327version = "0.1.7+1.45.0"
1328source = "registry+https://github.com/rust-lang/crates.io-index"
1329checksum = "57ed28aba195b38d5ff02b9170cbff627e336a20925e43b4945390401c5dc93f"
1330dependencies = [
1331 "cc",
1332 "libc",
1333]
1334
1335[[package]]
1336name = "libz-sys"
1337version = "1.1.9"
1338source = "registry+https://github.com/rust-lang/crates.io-index"
1339checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db"
1340dependencies = [
1341 "cc",
1342 "libc",
1343 "pkg-config",
1344 "vcpkg",
1345]
1346
1347[[package]]
1348name = "linux-raw-sys"
1349version = "0.3.7"
1350source = "registry+https://github.com/rust-lang/crates.io-index"
1351checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f"
1352
1353[[package]]
1354name = "lock_api"
1355version = "0.4.9"
1356source = "registry+https://github.com/rust-lang/crates.io-index"
1357checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
1358dependencies = [
1359 "autocfg",
1360 "scopeguard",
1361]
1362
1363[[package]]
1364name = "log"
1365version = "0.3.9"
1366source = "registry+https://github.com/rust-lang/crates.io-index"
1367checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b"
1368dependencies = [
1369 "log 0.4.17",
1370]
1371
1372[[package]]
1373name = "log"
1374version = "0.4.17"
1375source = "registry+https://github.com/rust-lang/crates.io-index"
1376checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
1377dependencies = [
1378 "cfg-if",
1379 "value-bag",
1380]
1381
1382[[package]]
1383name = "mac"
1384version = "0.1.1"
1385source = "registry+https://github.com/rust-lang/crates.io-index"
1386checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
1387
1388[[package]]
1389name = "markup5ever"
1390version = "0.10.1"
1391source = "registry+https://github.com/rust-lang/crates.io-index"
1392checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd"
1393dependencies = [
1394 "log 0.4.17",
1395 "phf",
1396 "phf_codegen",
1397 "string_cache",
1398 "string_cache_codegen",
1399 "tendril",
1400]
1401
1402[[package]]
1403name = "matches"
1404version = "0.1.10"
1405source = "registry+https://github.com/rust-lang/crates.io-index"
1406checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
1407
1408[[package]]
1409name = "md5"
1410version = "0.7.0"
1411source = "registry+https://github.com/rust-lang/crates.io-index"
1412checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
1413
1414[[package]]
1415name = "memchr"
1416version = "2.5.0"
1417source = "registry+https://github.com/rust-lang/crates.io-index"
1418checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
1419
1420[[package]]
1421name = "mime"
1422version = "0.3.17"
1423source = "registry+https://github.com/rust-lang/crates.io-index"
1424checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1425
1426[[package]]
1427name = "mime_guess"
1428version = "2.0.4"
1429source = "registry+https://github.com/rust-lang/crates.io-index"
1430checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
1431dependencies = [
1432 "mime",
1433 "unicase",
1434]
1435
1436[[package]]
1437name = "miniz_oxide"
1438version = "0.6.2"
1439source = "registry+https://github.com/rust-lang/crates.io-index"
1440checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
1441dependencies = [
1442 "adler",
1443]
1444
1445[[package]]
1446name = "mio"
1447version = "0.7.14"
1448source = "registry+https://github.com/rust-lang/crates.io-index"
1449checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
1450dependencies = [
1451 "libc",
1452 "log 0.4.17",
1453 "miow",
1454 "ntapi",
1455 "winapi",
1456]
1457
1458[[package]]
1459name = "miow"
1460version = "0.3.7"
1461source = "registry+https://github.com/rust-lang/crates.io-index"
1462checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
1463dependencies = [
1464 "winapi",
1465]
1466
1467[[package]]
1468name = "mustache"
1469version = "0.9.0"
1470source = "registry+https://github.com/rust-lang/crates.io-index"
1471checksum = "51956ef1c5d20a1384524d91e616fb44dfc7d8f249bf696d49c97dd3289ecab5"
1472dependencies = [
1473 "log 0.3.9",
1474 "serde",
1475]
1476
1477[[package]]
1478name = "new_debug_unreachable"
1479version = "1.0.4"
1480source = "registry+https://github.com/rust-lang/crates.io-index"
1481checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
1482
1483[[package]]
1484name = "nodrop"
1485version = "0.1.14"
1486source = "registry+https://github.com/rust-lang/crates.io-index"
1487checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
1488
1489[[package]]
1490name = "ntapi"
1491version = "0.3.7"
1492source = "registry+https://github.com/rust-lang/crates.io-index"
1493checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
1494dependencies = [
1495 "winapi",
1496]
1497
1498[[package]]
1499name = "num-integer"
1500version = "0.1.45"
1501source = "registry+https://github.com/rust-lang/crates.io-index"
1502checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
1503dependencies = [
1504 "autocfg",
1505 "num-traits",
1506]
1507
1508[[package]]
1509name = "num-traits"
1510version = "0.2.15"
1511source = "registry+https://github.com/rust-lang/crates.io-index"
1512checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
1513dependencies = [
1514 "autocfg",
1515]
1516
1517[[package]]
1518name = "number_prefix"
1519version = "0.4.0"
1520source = "registry+https://github.com/rust-lang/crates.io-index"
1521checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
1522
1523[[package]]
1524name = "object"
1525version = "0.30.3"
1526source = "registry+https://github.com/rust-lang/crates.io-index"
1527checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439"
1528dependencies = [
1529 "memchr",
1530]
1531
1532[[package]]
1533name = "once_cell"
1534version = "1.17.1"
1535source = "registry+https://github.com/rust-lang/crates.io-index"
1536checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
1537
1538[[package]]
1539name = "opaque-debug"
1540version = "0.3.0"
1541source = "registry+https://github.com/rust-lang/crates.io-index"
1542checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
1543
1544[[package]]
1545name = "openssl-probe"
1546version = "0.1.5"
1547source = "registry+https://github.com/rust-lang/crates.io-index"
1548checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1549
1550[[package]]
1551name = "openssl-sys"
1552version = "0.9.87"
1553source = "registry+https://github.com/rust-lang/crates.io-index"
1554checksum = "8e17f59264b2809d77ae94f0e1ebabc434773f370d6ca667bd223ea10e06cc7e"
1555dependencies = [
1556 "cc",
1557 "libc",
1558 "pkg-config",
1559 "vcpkg",
1560]
1561
1562[[package]]
1563name = "paperoni"
1564version = "0.6.1-alpha1"
1565dependencies = [
1566 "async-std",
1567 "base64",
1568 "chrono",
1569 "clap",
1570 "colored",
1571 "comfy-table",
1572 "derive_builder",
1573 "directories",
1574 "epub-builder",
1575 "flexi_logger",
1576 "futures",
1577 "html5ever",
1578 "indicatif",
1579 "itertools",
1580 "kuchiki",
1581 "lazy_static",
1582 "log 0.4.17",
1583 "md5",
1584 "regex",
1585 "surf",
1586 "thiserror",
1587 "url",
1588]
1589
1590[[package]]
1591name = "parking"
1592version = "2.1.0"
1593source = "registry+https://github.com/rust-lang/crates.io-index"
1594checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e"
1595
1596[[package]]
1597name = "parking_lot"
1598version = "0.11.2"
1599source = "registry+https://github.com/rust-lang/crates.io-index"
1600checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
1601dependencies = [
1602 "instant",
1603 "lock_api",
1604 "parking_lot_core 0.8.6",
1605]
1606
1607[[package]]
1608name = "parking_lot"
1609version = "0.12.1"
1610source = "registry+https://github.com/rust-lang/crates.io-index"
1611checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
1612dependencies = [
1613 "lock_api",
1614 "parking_lot_core 0.9.7",
1615]
1616
1617[[package]]
1618name = "parking_lot_core"
1619version = "0.8.6"
1620source = "registry+https://github.com/rust-lang/crates.io-index"
1621checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
1622dependencies = [
1623 "cfg-if",
1624 "instant",
1625 "libc",
1626 "redox_syscall",
1627 "smallvec",
1628 "winapi",
1629]
1630
1631[[package]]
1632name = "parking_lot_core"
1633version = "0.9.7"
1634source = "registry+https://github.com/rust-lang/crates.io-index"
1635checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
1636dependencies = [
1637 "cfg-if",
1638 "libc",
1639 "redox_syscall",
1640 "smallvec",
1641 "windows-sys 0.45.0",
1642]
1643
1644[[package]]
1645name = "percent-encoding"
1646version = "2.2.0"
1647source = "registry+https://github.com/rust-lang/crates.io-index"
1648checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
1649
1650[[package]]
1651name = "phf"
1652version = "0.8.0"
1653source = "registry+https://github.com/rust-lang/crates.io-index"
1654checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
1655dependencies = [
1656 "phf_macros",
1657 "phf_shared 0.8.0",
1658 "proc-macro-hack",
1659]
1660
1661[[package]]
1662name = "phf_codegen"
1663version = "0.8.0"
1664source = "registry+https://github.com/rust-lang/crates.io-index"
1665checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
1666dependencies = [
1667 "phf_generator 0.8.0",
1668 "phf_shared 0.8.0",
1669]
1670
1671[[package]]
1672name = "phf_generator"
1673version = "0.8.0"
1674source = "registry+https://github.com/rust-lang/crates.io-index"
1675checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
1676dependencies = [
1677 "phf_shared 0.8.0",
1678 "rand 0.7.3",
1679]
1680
1681[[package]]
1682name = "phf_generator"
1683version = "0.10.0"
1684source = "registry+https://github.com/rust-lang/crates.io-index"
1685checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
1686dependencies = [
1687 "phf_shared 0.10.0",
1688 "rand 0.8.5",
1689]
1690
1691[[package]]
1692name = "phf_macros"
1693version = "0.8.0"
1694source = "registry+https://github.com/rust-lang/crates.io-index"
1695checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
1696dependencies = [
1697 "phf_generator 0.8.0",
1698 "phf_shared 0.8.0",
1699 "proc-macro-hack",
1700 "proc-macro2",
1701 "quote",
1702 "syn 1.0.109",
1703]
1704
1705[[package]]
1706name = "phf_shared"
1707version = "0.8.0"
1708source = "registry+https://github.com/rust-lang/crates.io-index"
1709checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
1710dependencies = [
1711 "siphasher",
1712]
1713
1714[[package]]
1715name = "phf_shared"
1716version = "0.10.0"
1717source = "registry+https://github.com/rust-lang/crates.io-index"
1718checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
1719dependencies = [
1720 "siphasher",
1721]
1722
1723[[package]]
1724name = "pin-project"
1725version = "1.0.12"
1726source = "registry+https://github.com/rust-lang/crates.io-index"
1727checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
1728dependencies = [
1729 "pin-project-internal",
1730]
1731
1732[[package]]
1733name = "pin-project-internal"
1734version = "1.0.12"
1735source = "registry+https://github.com/rust-lang/crates.io-index"
1736checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
1737dependencies = [
1738 "proc-macro2",
1739 "quote",
1740 "syn 1.0.109",
1741]
1742
1743[[package]]
1744name = "pin-project-lite"
1745version = "0.2.9"
1746source = "registry+https://github.com/rust-lang/crates.io-index"
1747checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
1748
1749[[package]]
1750name = "pin-utils"
1751version = "0.1.0"
1752source = "registry+https://github.com/rust-lang/crates.io-index"
1753checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1754
1755[[package]]
1756name = "pkg-config"
1757version = "0.3.27"
1758source = "registry+https://github.com/rust-lang/crates.io-index"
1759checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
1760
1761[[package]]
1762name = "polling"
1763version = "2.8.0"
1764source = "registry+https://github.com/rust-lang/crates.io-index"
1765checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
1766dependencies = [
1767 "autocfg",
1768 "bitflags",
1769 "cfg-if",
1770 "concurrent-queue",
1771 "libc",
1772 "log 0.4.17",
1773 "pin-project-lite",
1774 "windows-sys 0.48.0",
1775]
1776
1777[[package]]
1778name = "polyval"
1779version = "0.4.5"
1780source = "registry+https://github.com/rust-lang/crates.io-index"
1781checksum = "eebcc4aa140b9abd2bc40d9c3f7ccec842679cd79045ac3a7ac698c1a064b7cd"
1782dependencies = [
1783 "cpuid-bool",
1784 "opaque-debug",
1785 "universal-hash",
1786]
1787
1788[[package]]
1789name = "ppv-lite86"
1790version = "0.2.17"
1791source = "registry+https://github.com/rust-lang/crates.io-index"
1792checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
1793
1794[[package]]
1795name = "precomputed-hash"
1796version = "0.1.1"
1797source = "registry+https://github.com/rust-lang/crates.io-index"
1798checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
1799
1800[[package]]
1801name = "proc-macro-hack"
1802version = "0.5.20+deprecated"
1803source = "registry+https://github.com/rust-lang/crates.io-index"
1804checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
1805
1806[[package]]
1807name = "proc-macro2"
1808version = "1.0.56"
1809source = "registry+https://github.com/rust-lang/crates.io-index"
1810checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
1811dependencies = [
1812 "unicode-ident",
1813]
1814
1815[[package]]
1816name = "quote"
1817version = "1.0.27"
1818source = "registry+https://github.com/rust-lang/crates.io-index"
1819checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500"
1820dependencies = [
1821 "proc-macro2",
1822]
1823
1824[[package]]
1825name = "rand"
1826version = "0.4.6"
1827source = "registry+https://github.com/rust-lang/crates.io-index"
1828checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
1829dependencies = [
1830 "fuchsia-cprng",
1831 "libc",
1832 "rand_core 0.3.1",
1833 "rdrand",
1834 "winapi",
1835]
1836
1837[[package]]
1838name = "rand"
1839version = "0.7.3"
1840source = "registry+https://github.com/rust-lang/crates.io-index"
1841checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
1842dependencies = [
1843 "getrandom 0.1.16",
1844 "libc",
1845 "rand_chacha 0.2.2",
1846 "rand_core 0.5.1",
1847 "rand_hc",
1848 "rand_pcg",
1849]
1850
1851[[package]]
1852name = "rand"
1853version = "0.8.5"
1854source = "registry+https://github.com/rust-lang/crates.io-index"
1855checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1856dependencies = [
1857 "libc",
1858 "rand_chacha 0.3.1",
1859 "rand_core 0.6.4",
1860]
1861
1862[[package]]
1863name = "rand_chacha"
1864version = "0.2.2"
1865source = "registry+https://github.com/rust-lang/crates.io-index"
1866checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
1867dependencies = [
1868 "ppv-lite86",
1869 "rand_core 0.5.1",
1870]
1871
1872[[package]]
1873name = "rand_chacha"
1874version = "0.3.1"
1875source = "registry+https://github.com/rust-lang/crates.io-index"
1876checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1877dependencies = [
1878 "ppv-lite86",
1879 "rand_core 0.6.4",
1880]
1881
1882[[package]]
1883name = "rand_core"
1884version = "0.3.1"
1885source = "registry+https://github.com/rust-lang/crates.io-index"
1886checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
1887dependencies = [
1888 "rand_core 0.4.2",
1889]
1890
1891[[package]]
1892name = "rand_core"
1893version = "0.4.2"
1894source = "registry+https://github.com/rust-lang/crates.io-index"
1895checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
1896
1897[[package]]
1898name = "rand_core"
1899version = "0.5.1"
1900source = "registry+https://github.com/rust-lang/crates.io-index"
1901checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
1902dependencies = [
1903 "getrandom 0.1.16",
1904]
1905
1906[[package]]
1907name = "rand_core"
1908version = "0.6.4"
1909source = "registry+https://github.com/rust-lang/crates.io-index"
1910checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1911dependencies = [
1912 "getrandom 0.2.9",
1913]
1914
1915[[package]]
1916name = "rand_hc"
1917version = "0.2.0"
1918source = "registry+https://github.com/rust-lang/crates.io-index"
1919checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
1920dependencies = [
1921 "rand_core 0.5.1",
1922]
1923
1924[[package]]
1925name = "rand_pcg"
1926version = "0.2.1"
1927source = "registry+https://github.com/rust-lang/crates.io-index"
1928checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
1929dependencies = [
1930 "rand_core 0.5.1",
1931]
1932
1933[[package]]
1934name = "rdrand"
1935version = "0.4.0"
1936source = "registry+https://github.com/rust-lang/crates.io-index"
1937checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
1938dependencies = [
1939 "rand_core 0.3.1",
1940]
1941
1942[[package]]
1943name = "redox_syscall"
1944version = "0.2.16"
1945source = "registry+https://github.com/rust-lang/crates.io-index"
1946checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
1947dependencies = [
1948 "bitflags",
1949]
1950
1951[[package]]
1952name = "redox_users"
1953version = "0.4.3"
1954source = "registry+https://github.com/rust-lang/crates.io-index"
1955checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
1956dependencies = [
1957 "getrandom 0.2.9",
1958 "redox_syscall",
1959 "thiserror",
1960]
1961
1962[[package]]
1963name = "regex"
1964version = "1.8.1"
1965source = "registry+https://github.com/rust-lang/crates.io-index"
1966checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370"
1967dependencies = [
1968 "aho-corasick",
1969 "memchr",
1970 "regex-syntax",
1971]
1972
1973[[package]]
1974name = "regex-syntax"
1975version = "0.7.1"
1976source = "registry+https://github.com/rust-lang/crates.io-index"
1977checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c"
1978
1979[[package]]
1980name = "remove_dir_all"
1981version = "0.5.3"
1982source = "registry+https://github.com/rust-lang/crates.io-index"
1983checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
1984dependencies = [
1985 "winapi",
1986]
1987
1988[[package]]
1989name = "rustc-demangle"
1990version = "0.1.23"
1991source = "registry+https://github.com/rust-lang/crates.io-index"
1992checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
1993
1994[[package]]
1995name = "rustc_version"
1996version = "0.2.3"
1997source = "registry+https://github.com/rust-lang/crates.io-index"
1998checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
1999dependencies = [
2000 "semver 0.9.0",
2001]
2002
2003[[package]]
2004name = "rustc_version"
2005version = "0.4.0"
2006source = "registry+https://github.com/rust-lang/crates.io-index"
2007checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
2008dependencies = [
2009 "semver 1.0.17",
2010]
2011
2012[[package]]
2013name = "rustix"
2014version = "0.37.19"
2015source = "registry+https://github.com/rust-lang/crates.io-index"
2016checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d"
2017dependencies = [
2018 "bitflags",
2019 "errno",
2020 "io-lifetimes",
2021 "libc",
2022 "linux-raw-sys",
2023 "windows-sys 0.48.0",
2024]
2025
2026[[package]]
2027name = "ryu"
2028version = "1.0.13"
2029source = "registry+https://github.com/rust-lang/crates.io-index"
2030checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
2031
2032[[package]]
2033name = "schannel"
2034version = "0.1.21"
2035source = "registry+https://github.com/rust-lang/crates.io-index"
2036checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
2037dependencies = [
2038 "windows-sys 0.42.0",
2039]
2040
2041[[package]]
2042name = "scopeguard"
2043version = "1.1.0"
2044source = "registry+https://github.com/rust-lang/crates.io-index"
2045checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2046
2047[[package]]
2048name = "selectors"
2049version = "0.22.0"
2050source = "registry+https://github.com/rust-lang/crates.io-index"
2051checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe"
2052dependencies = [
2053 "bitflags",
2054 "cssparser",
2055 "derive_more",
2056 "fxhash",
2057 "log 0.4.17",
2058 "matches",
2059 "phf",
2060 "phf_codegen",
2061 "precomputed-hash",
2062 "servo_arc",
2063 "smallvec",
2064 "thin-slice",
2065]
2066
2067[[package]]
2068name = "semver"
2069version = "0.9.0"
2070source = "registry+https://github.com/rust-lang/crates.io-index"
2071checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
2072dependencies = [
2073 "semver-parser",
2074]
2075
2076[[package]]
2077name = "semver"
2078version = "1.0.17"
2079source = "registry+https://github.com/rust-lang/crates.io-index"
2080checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
2081
2082[[package]]
2083name = "semver-parser"
2084version = "0.7.0"
2085source = "registry+https://github.com/rust-lang/crates.io-index"
2086checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2087
2088[[package]]
2089name = "serde"
2090version = "1.0.163"
2091source = "registry+https://github.com/rust-lang/crates.io-index"
2092checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2"
2093dependencies = [
2094 "serde_derive",
2095]
2096
2097[[package]]
2098name = "serde_derive"
2099version = "1.0.163"
2100source = "registry+https://github.com/rust-lang/crates.io-index"
2101checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e"
2102dependencies = [
2103 "proc-macro2",
2104 "quote",
2105 "syn 2.0.15",
2106]
2107
2108[[package]]
2109name = "serde_json"
2110version = "1.0.96"
2111source = "registry+https://github.com/rust-lang/crates.io-index"
2112checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
2113dependencies = [
2114 "itoa 1.0.6",
2115 "ryu",
2116 "serde",
2117]
2118
2119[[package]]
2120name = "serde_qs"
2121version = "0.8.5"
2122source = "registry+https://github.com/rust-lang/crates.io-index"
2123checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6"
2124dependencies = [
2125 "percent-encoding",
2126 "serde",
2127 "thiserror",
2128]
2129
2130[[package]]
2131name = "serde_urlencoded"
2132version = "0.7.1"
2133source = "registry+https://github.com/rust-lang/crates.io-index"
2134checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2135dependencies = [
2136 "form_urlencoded",
2137 "itoa 1.0.6",
2138 "ryu",
2139 "serde",
2140]
2141
2142[[package]]
2143name = "servo_arc"
2144version = "0.1.1"
2145source = "registry+https://github.com/rust-lang/crates.io-index"
2146checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432"
2147dependencies = [
2148 "nodrop",
2149 "stable_deref_trait",
2150]
2151
2152[[package]]
2153name = "sha1"
2154version = "0.6.1"
2155source = "registry+https://github.com/rust-lang/crates.io-index"
2156checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770"
2157dependencies = [
2158 "sha1_smol",
2159]
2160
2161[[package]]
2162name = "sha1_smol"
2163version = "1.0.0"
2164source = "registry+https://github.com/rust-lang/crates.io-index"
2165checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
2166
2167[[package]]
2168name = "sha2"
2169version = "0.9.9"
2170source = "registry+https://github.com/rust-lang/crates.io-index"
2171checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
2172dependencies = [
2173 "block-buffer",
2174 "cfg-if",
2175 "cpufeatures",
2176 "digest",
2177 "opaque-debug",
2178]
2179
2180[[package]]
2181name = "signal-hook"
2182version = "0.3.15"
2183source = "registry+https://github.com/rust-lang/crates.io-index"
2184checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9"
2185dependencies = [
2186 "libc",
2187 "signal-hook-registry",
2188]
2189
2190[[package]]
2191name = "signal-hook-mio"
2192version = "0.2.3"
2193source = "registry+https://github.com/rust-lang/crates.io-index"
2194checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
2195dependencies = [
2196 "libc",
2197 "mio",
2198 "signal-hook",
2199]
2200
2201[[package]]
2202name = "signal-hook-registry"
2203version = "1.4.1"
2204source = "registry+https://github.com/rust-lang/crates.io-index"
2205checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2206dependencies = [
2207 "libc",
2208]
2209
2210[[package]]
2211name = "siphasher"
2212version = "0.3.10"
2213source = "registry+https://github.com/rust-lang/crates.io-index"
2214checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
2215
2216[[package]]
2217name = "slab"
2218version = "0.4.8"
2219source = "registry+https://github.com/rust-lang/crates.io-index"
2220checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
2221dependencies = [
2222 "autocfg",
2223]
2224
2225[[package]]
2226name = "sluice"
2227version = "0.5.5"
2228source = "registry+https://github.com/rust-lang/crates.io-index"
2229checksum = "6d7400c0eff44aa2fcb5e31a5f24ba9716ed90138769e4977a2ba6014ae63eb5"
2230dependencies = [
2231 "async-channel",
2232 "futures-core",
2233 "futures-io",
2234]
2235
2236[[package]]
2237name = "smallvec"
2238version = "1.10.0"
2239source = "registry+https://github.com/rust-lang/crates.io-index"
2240checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2241
2242[[package]]
2243name = "socket2"
2244version = "0.4.9"
2245source = "registry+https://github.com/rust-lang/crates.io-index"
2246checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
2247dependencies = [
2248 "libc",
2249 "winapi",
2250]
2251
2252[[package]]
2253name = "spinning_top"
2254version = "0.2.5"
2255source = "registry+https://github.com/rust-lang/crates.io-index"
2256checksum = "5b9eb1a2f4c41445a3a0ff9abc5221c5fcd28e1f13cd7c0397706f9ac938ddb0"
2257dependencies = [
2258 "lock_api",
2259]
2260
2261[[package]]
2262name = "stable_deref_trait"
2263version = "1.2.0"
2264source = "registry+https://github.com/rust-lang/crates.io-index"
2265checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2266
2267[[package]]
2268name = "standback"
2269version = "0.2.17"
2270source = "registry+https://github.com/rust-lang/crates.io-index"
2271checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
2272dependencies = [
2273 "version_check",
2274]
2275
2276[[package]]
2277name = "stdweb"
2278version = "0.4.20"
2279source = "registry+https://github.com/rust-lang/crates.io-index"
2280checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
2281dependencies = [
2282 "discard",
2283 "rustc_version 0.2.3",
2284 "stdweb-derive",
2285 "stdweb-internal-macros",
2286 "stdweb-internal-runtime",
2287 "wasm-bindgen",
2288]
2289
2290[[package]]
2291name = "stdweb-derive"
2292version = "0.5.3"
2293source = "registry+https://github.com/rust-lang/crates.io-index"
2294checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
2295dependencies = [
2296 "proc-macro2",
2297 "quote",
2298 "serde",
2299 "serde_derive",
2300 "syn 1.0.109",
2301]
2302
2303[[package]]
2304name = "stdweb-internal-macros"
2305version = "0.2.9"
2306source = "registry+https://github.com/rust-lang/crates.io-index"
2307checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
2308dependencies = [
2309 "base-x",
2310 "proc-macro2",
2311 "quote",
2312 "serde",
2313 "serde_derive",
2314 "serde_json",
2315 "sha1",
2316 "syn 1.0.109",
2317]
2318
2319[[package]]
2320name = "stdweb-internal-runtime"
2321version = "0.1.5"
2322source = "registry+https://github.com/rust-lang/crates.io-index"
2323checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
2324
2325[[package]]
2326name = "string_cache"
2327version = "0.8.7"
2328source = "registry+https://github.com/rust-lang/crates.io-index"
2329checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
2330dependencies = [
2331 "new_debug_unreachable",
2332 "once_cell",
2333 "parking_lot 0.12.1",
2334 "phf_shared 0.10.0",
2335 "precomputed-hash",
2336 "serde",
2337]
2338
2339[[package]]
2340name = "string_cache_codegen"
2341version = "0.5.2"
2342source = "registry+https://github.com/rust-lang/crates.io-index"
2343checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
2344dependencies = [
2345 "phf_generator 0.10.0",
2346 "phf_shared 0.10.0",
2347 "proc-macro2",
2348 "quote",
2349]
2350
2351[[package]]
2352name = "strsim"
2353version = "0.8.0"
2354source = "registry+https://github.com/rust-lang/crates.io-index"
2355checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
2356
2357[[package]]
2358name = "strsim"
2359version = "0.10.0"
2360source = "registry+https://github.com/rust-lang/crates.io-index"
2361checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2362
2363[[package]]
2364name = "strum"
2365version = "0.21.0"
2366source = "registry+https://github.com/rust-lang/crates.io-index"
2367checksum = "aaf86bbcfd1fa9670b7a129f64fc0c9fcbbfe4f1bc4210e9e98fe71ffc12cde2"
2368
2369[[package]]
2370name = "strum_macros"
2371version = "0.21.1"
2372source = "registry+https://github.com/rust-lang/crates.io-index"
2373checksum = "d06aaeeee809dbc59eb4556183dd927df67db1540de5be8d3ec0b6636358a5ec"
2374dependencies = [
2375 "heck",
2376 "proc-macro2",
2377 "quote",
2378 "syn 1.0.109",
2379]
2380
2381[[package]]
2382name = "subtle"
2383version = "2.4.1"
2384source = "registry+https://github.com/rust-lang/crates.io-index"
2385checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
2386
2387[[package]]
2388name = "surf"
2389version = "2.3.2"
2390source = "registry+https://github.com/rust-lang/crates.io-index"
2391checksum = "718b1ae6b50351982dedff021db0def601677f2120938b070eadb10ba4038dd7"
2392dependencies = [
2393 "async-std",
2394 "async-trait",
2395 "cfg-if",
2396 "encoding_rs",
2397 "futures-util",
2398 "getrandom 0.2.9",
2399 "http-client",
2400 "http-types",
2401 "log 0.4.17",
2402 "mime_guess",
2403 "once_cell",
2404 "pin-project-lite",
2405 "serde",
2406 "serde_json",
2407 "web-sys",
2408]
2409
2410[[package]]
2411name = "syn"
2412version = "1.0.109"
2413source = "registry+https://github.com/rust-lang/crates.io-index"
2414checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2415dependencies = [
2416 "proc-macro2",
2417 "quote",
2418 "unicode-ident",
2419]
2420
2421[[package]]
2422name = "syn"
2423version = "2.0.15"
2424source = "registry+https://github.com/rust-lang/crates.io-index"
2425checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822"
2426dependencies = [
2427 "proc-macro2",
2428 "quote",
2429 "unicode-ident",
2430]
2431
2432[[package]]
2433name = "tempdir"
2434version = "0.3.7"
2435source = "registry+https://github.com/rust-lang/crates.io-index"
2436checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
2437dependencies = [
2438 "rand 0.4.6",
2439 "remove_dir_all",
2440]
2441
2442[[package]]
2443name = "tendril"
2444version = "0.4.3"
2445source = "registry+https://github.com/rust-lang/crates.io-index"
2446checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
2447dependencies = [
2448 "futf",
2449 "mac",
2450 "utf-8",
2451]
2452
2453[[package]]
2454name = "textwrap"
2455version = "0.11.0"
2456source = "registry+https://github.com/rust-lang/crates.io-index"
2457checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
2458dependencies = [
2459 "unicode-width",
2460]
2461
2462[[package]]
2463name = "thin-slice"
2464version = "0.1.1"
2465source = "registry+https://github.com/rust-lang/crates.io-index"
2466checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
2467
2468[[package]]
2469name = "thiserror"
2470version = "1.0.40"
2471source = "registry+https://github.com/rust-lang/crates.io-index"
2472checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
2473dependencies = [
2474 "thiserror-impl",
2475]
2476
2477[[package]]
2478name = "thiserror-impl"
2479version = "1.0.40"
2480source = "registry+https://github.com/rust-lang/crates.io-index"
2481checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
2482dependencies = [
2483 "proc-macro2",
2484 "quote",
2485 "syn 2.0.15",
2486]
2487
2488[[package]]
2489name = "time"
2490version = "0.1.45"
2491source = "registry+https://github.com/rust-lang/crates.io-index"
2492checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
2493dependencies = [
2494 "libc",
2495 "wasi 0.10.0+wasi-snapshot-preview1",
2496 "winapi",
2497]
2498
2499[[package]]
2500name = "time"
2501version = "0.2.27"
2502source = "registry+https://github.com/rust-lang/crates.io-index"
2503checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242"
2504dependencies = [
2505 "const_fn",
2506 "libc",
2507 "standback",
2508 "stdweb",
2509 "time-macros",
2510 "version_check",
2511 "winapi",
2512]
2513
2514[[package]]
2515name = "time-macros"
2516version = "0.1.1"
2517source = "registry+https://github.com/rust-lang/crates.io-index"
2518checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
2519dependencies = [
2520 "proc-macro-hack",
2521 "time-macros-impl",
2522]
2523
2524[[package]]
2525name = "time-macros-impl"
2526version = "0.1.2"
2527source = "registry+https://github.com/rust-lang/crates.io-index"
2528checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
2529dependencies = [
2530 "proc-macro-hack",
2531 "proc-macro2",
2532 "quote",
2533 "standback",
2534 "syn 1.0.109",
2535]
2536
2537[[package]]
2538name = "tinyvec"
2539version = "1.6.0"
2540source = "registry+https://github.com/rust-lang/crates.io-index"
2541checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2542dependencies = [
2543 "tinyvec_macros",
2544]
2545
2546[[package]]
2547name = "tinyvec_macros"
2548version = "0.1.1"
2549source = "registry+https://github.com/rust-lang/crates.io-index"
2550checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2551
2552[[package]]
2553name = "tracing"
2554version = "0.1.37"
2555source = "registry+https://github.com/rust-lang/crates.io-index"
2556checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
2557dependencies = [
2558 "cfg-if",
2559 "log 0.4.17",
2560 "pin-project-lite",
2561 "tracing-attributes",
2562 "tracing-core",
2563]
2564
2565[[package]]
2566name = "tracing-attributes"
2567version = "0.1.24"
2568source = "registry+https://github.com/rust-lang/crates.io-index"
2569checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74"
2570dependencies = [
2571 "proc-macro2",
2572 "quote",
2573 "syn 2.0.15",
2574]
2575
2576[[package]]
2577name = "tracing-core"
2578version = "0.1.31"
2579source = "registry+https://github.com/rust-lang/crates.io-index"
2580checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
2581dependencies = [
2582 "once_cell",
2583]
2584
2585[[package]]
2586name = "tracing-futures"
2587version = "0.2.5"
2588source = "registry+https://github.com/rust-lang/crates.io-index"
2589checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
2590dependencies = [
2591 "pin-project",
2592 "tracing",
2593]
2594
2595[[package]]
2596name = "typenum"
2597version = "1.16.0"
2598source = "registry+https://github.com/rust-lang/crates.io-index"
2599checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
2600
2601[[package]]
2602name = "unicase"
2603version = "2.6.0"
2604source = "registry+https://github.com/rust-lang/crates.io-index"
2605checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
2606dependencies = [
2607 "version_check",
2608]
2609
2610[[package]]
2611name = "unicode-bidi"
2612version = "0.3.13"
2613source = "registry+https://github.com/rust-lang/crates.io-index"
2614checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2615
2616[[package]]
2617name = "unicode-ident"
2618version = "1.0.8"
2619source = "registry+https://github.com/rust-lang/crates.io-index"
2620checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
2621
2622[[package]]
2623name = "unicode-normalization"
2624version = "0.1.22"
2625source = "registry+https://github.com/rust-lang/crates.io-index"
2626checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2627dependencies = [
2628 "tinyvec",
2629]
2630
2631[[package]]
2632name = "unicode-segmentation"
2633version = "1.10.1"
2634source = "registry+https://github.com/rust-lang/crates.io-index"
2635checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
2636
2637[[package]]
2638name = "unicode-width"
2639version = "0.1.10"
2640source = "registry+https://github.com/rust-lang/crates.io-index"
2641checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
2642
2643[[package]]
2644name = "universal-hash"
2645version = "0.4.1"
2646source = "registry+https://github.com/rust-lang/crates.io-index"
2647checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"
2648dependencies = [
2649 "generic-array",
2650 "subtle",
2651]
2652
2653[[package]]
2654name = "url"
2655version = "2.3.1"
2656source = "registry+https://github.com/rust-lang/crates.io-index"
2657checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
2658dependencies = [
2659 "form_urlencoded",
2660 "idna",
2661 "percent-encoding",
2662 "serde",
2663]
2664
2665[[package]]
2666name = "utf-8"
2667version = "0.7.6"
2668source = "registry+https://github.com/rust-lang/crates.io-index"
2669checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2670
2671[[package]]
2672name = "utf8-width"
2673version = "0.1.6"
2674source = "registry+https://github.com/rust-lang/crates.io-index"
2675checksum = "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1"
2676
2677[[package]]
2678name = "uuid"
2679version = "0.8.2"
2680source = "registry+https://github.com/rust-lang/crates.io-index"
2681checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
2682dependencies = [
2683 "getrandom 0.2.9",
2684]
2685
2686[[package]]
2687name = "value-bag"
2688version = "1.0.0-alpha.9"
2689source = "registry+https://github.com/rust-lang/crates.io-index"
2690checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55"
2691dependencies = [
2692 "ctor",
2693 "version_check",
2694]
2695
2696[[package]]
2697name = "vcpkg"
2698version = "0.2.15"
2699source = "registry+https://github.com/rust-lang/crates.io-index"
2700checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2701
2702[[package]]
2703name = "vec_map"
2704version = "0.8.2"
2705source = "registry+https://github.com/rust-lang/crates.io-index"
2706checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2707
2708[[package]]
2709name = "version_check"
2710version = "0.9.4"
2711source = "registry+https://github.com/rust-lang/crates.io-index"
2712checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2713
2714[[package]]
2715name = "waker-fn"
2716version = "1.1.0"
2717source = "registry+https://github.com/rust-lang/crates.io-index"
2718checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
2719
2720[[package]]
2721name = "wasi"
2722version = "0.9.0+wasi-snapshot-preview1"
2723source = "registry+https://github.com/rust-lang/crates.io-index"
2724checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2725
2726[[package]]
2727name = "wasi"
2728version = "0.10.0+wasi-snapshot-preview1"
2729source = "registry+https://github.com/rust-lang/crates.io-index"
2730checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2731
2732[[package]]
2733name = "wasi"
2734version = "0.11.0+wasi-snapshot-preview1"
2735source = "registry+https://github.com/rust-lang/crates.io-index"
2736checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2737
2738[[package]]
2739name = "wasm-bindgen"
2740version = "0.2.85"
2741source = "registry+https://github.com/rust-lang/crates.io-index"
2742checksum = "5b6cb788c4e39112fbe1822277ef6fb3c55cd86b95cb3d3c4c1c9597e4ac74b4"
2743dependencies = [
2744 "cfg-if",
2745 "wasm-bindgen-macro",
2746]
2747
2748[[package]]
2749name = "wasm-bindgen-backend"
2750version = "0.2.85"
2751source = "registry+https://github.com/rust-lang/crates.io-index"
2752checksum = "35e522ed4105a9d626d885b35d62501b30d9666283a5c8be12c14a8bdafe7822"
2753dependencies = [
2754 "bumpalo",
2755 "log 0.4.17",
2756 "once_cell",
2757 "proc-macro2",
2758 "quote",
2759 "syn 2.0.15",
2760 "wasm-bindgen-shared",
2761]
2762
2763[[package]]
2764name = "wasm-bindgen-futures"
2765version = "0.4.35"
2766source = "registry+https://github.com/rust-lang/crates.io-index"
2767checksum = "083abe15c5d88556b77bdf7aef403625be9e327ad37c62c4e4129af740168163"
2768dependencies = [
2769 "cfg-if",
2770 "js-sys",
2771 "wasm-bindgen",
2772 "web-sys",
2773]
2774
2775[[package]]
2776name = "wasm-bindgen-macro"
2777version = "0.2.85"
2778source = "registry+https://github.com/rust-lang/crates.io-index"
2779checksum = "358a79a0cb89d21db8120cbfb91392335913e4890665b1a7981d9e956903b434"
2780dependencies = [
2781 "quote",
2782 "wasm-bindgen-macro-support",
2783]
2784
2785[[package]]
2786name = "wasm-bindgen-macro-support"
2787version = "0.2.85"
2788source = "registry+https://github.com/rust-lang/crates.io-index"
2789checksum = "4783ce29f09b9d93134d41297aded3a712b7b979e9c6f28c32cb88c973a94869"
2790dependencies = [
2791 "proc-macro2",
2792 "quote",
2793 "syn 2.0.15",
2794 "wasm-bindgen-backend",
2795 "wasm-bindgen-shared",
2796]
2797
2798[[package]]
2799name = "wasm-bindgen-shared"
2800version = "0.2.85"
2801source = "registry+https://github.com/rust-lang/crates.io-index"
2802checksum = "a901d592cafaa4d711bc324edfaff879ac700b19c3dfd60058d2b445be2691eb"
2803
2804[[package]]
2805name = "web-sys"
2806version = "0.3.62"
2807source = "registry+https://github.com/rust-lang/crates.io-index"
2808checksum = "16b5f940c7edfdc6d12126d98c9ef4d1b3d470011c47c76a6581df47ad9ba721"
2809dependencies = [
2810 "js-sys",
2811 "wasm-bindgen",
2812]
2813
2814[[package]]
2815name = "winapi"
2816version = "0.3.9"
2817source = "registry+https://github.com/rust-lang/crates.io-index"
2818checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2819dependencies = [
2820 "winapi-i686-pc-windows-gnu",
2821 "winapi-x86_64-pc-windows-gnu",
2822]
2823
2824[[package]]
2825name = "winapi-i686-pc-windows-gnu"
2826version = "0.4.0"
2827source = "registry+https://github.com/rust-lang/crates.io-index"
2828checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2829
2830[[package]]
2831name = "winapi-x86_64-pc-windows-gnu"
2832version = "0.4.0"
2833source = "registry+https://github.com/rust-lang/crates.io-index"
2834checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2835
2836[[package]]
2837name = "windows"
2838version = "0.48.0"
2839source = "registry+https://github.com/rust-lang/crates.io-index"
2840checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
2841dependencies = [
2842 "windows-targets 0.48.0",
2843]
2844
2845[[package]]
2846name = "windows-sys"
2847version = "0.42.0"
2848source = "registry+https://github.com/rust-lang/crates.io-index"
2849checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
2850dependencies = [
2851 "windows_aarch64_gnullvm 0.42.2",
2852 "windows_aarch64_msvc 0.42.2",
2853 "windows_i686_gnu 0.42.2",
2854 "windows_i686_msvc 0.42.2",
2855 "windows_x86_64_gnu 0.42.2",
2856 "windows_x86_64_gnullvm 0.42.2",
2857 "windows_x86_64_msvc 0.42.2",
2858]
2859
2860[[package]]
2861name = "windows-sys"
2862version = "0.45.0"
2863source = "registry+https://github.com/rust-lang/crates.io-index"
2864checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
2865dependencies = [
2866 "windows-targets 0.42.2",
2867]
2868
2869[[package]]
2870name = "windows-sys"
2871version = "0.48.0"
2872source = "registry+https://github.com/rust-lang/crates.io-index"
2873checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2874dependencies = [
2875 "windows-targets 0.48.0",
2876]
2877
2878[[package]]
2879name = "windows-targets"
2880version = "0.42.2"
2881source = "registry+https://github.com/rust-lang/crates.io-index"
2882checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2883dependencies = [
2884 "windows_aarch64_gnullvm 0.42.2",
2885 "windows_aarch64_msvc 0.42.2",
2886 "windows_i686_gnu 0.42.2",
2887 "windows_i686_msvc 0.42.2",
2888 "windows_x86_64_gnu 0.42.2",
2889 "windows_x86_64_gnullvm 0.42.2",
2890 "windows_x86_64_msvc 0.42.2",
2891]
2892
2893[[package]]
2894name = "windows-targets"
2895version = "0.48.0"
2896source = "registry+https://github.com/rust-lang/crates.io-index"
2897checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
2898dependencies = [
2899 "windows_aarch64_gnullvm 0.48.0",
2900 "windows_aarch64_msvc 0.48.0",
2901 "windows_i686_gnu 0.48.0",
2902 "windows_i686_msvc 0.48.0",
2903 "windows_x86_64_gnu 0.48.0",
2904 "windows_x86_64_gnullvm 0.48.0",
2905 "windows_x86_64_msvc 0.48.0",
2906]
2907
2908[[package]]
2909name = "windows_aarch64_gnullvm"
2910version = "0.42.2"
2911source = "registry+https://github.com/rust-lang/crates.io-index"
2912checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2913
2914[[package]]
2915name = "windows_aarch64_gnullvm"
2916version = "0.48.0"
2917source = "registry+https://github.com/rust-lang/crates.io-index"
2918checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
2919
2920[[package]]
2921name = "windows_aarch64_msvc"
2922version = "0.42.2"
2923source = "registry+https://github.com/rust-lang/crates.io-index"
2924checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2925
2926[[package]]
2927name = "windows_aarch64_msvc"
2928version = "0.48.0"
2929source = "registry+https://github.com/rust-lang/crates.io-index"
2930checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
2931
2932[[package]]
2933name = "windows_i686_gnu"
2934version = "0.42.2"
2935source = "registry+https://github.com/rust-lang/crates.io-index"
2936checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2937
2938[[package]]
2939name = "windows_i686_gnu"
2940version = "0.48.0"
2941source = "registry+https://github.com/rust-lang/crates.io-index"
2942checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
2943
2944[[package]]
2945name = "windows_i686_msvc"
2946version = "0.42.2"
2947source = "registry+https://github.com/rust-lang/crates.io-index"
2948checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2949
2950[[package]]
2951name = "windows_i686_msvc"
2952version = "0.48.0"
2953source = "registry+https://github.com/rust-lang/crates.io-index"
2954checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
2955
2956[[package]]
2957name = "windows_x86_64_gnu"
2958version = "0.42.2"
2959source = "registry+https://github.com/rust-lang/crates.io-index"
2960checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2961
2962[[package]]
2963name = "windows_x86_64_gnu"
2964version = "0.48.0"
2965source = "registry+https://github.com/rust-lang/crates.io-index"
2966checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
2967
2968[[package]]
2969name = "windows_x86_64_gnullvm"
2970version = "0.42.2"
2971source = "registry+https://github.com/rust-lang/crates.io-index"
2972checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2973
2974[[package]]
2975name = "windows_x86_64_gnullvm"
2976version = "0.48.0"
2977source = "registry+https://github.com/rust-lang/crates.io-index"
2978checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
2979
2980[[package]]
2981name = "windows_x86_64_msvc"
2982version = "0.42.2"
2983source = "registry+https://github.com/rust-lang/crates.io-index"
2984checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2985
2986[[package]]
2987name = "windows_x86_64_msvc"
2988version = "0.48.0"
2989source = "registry+https://github.com/rust-lang/crates.io-index"
2990checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
2991
2992[[package]]
2993name = "yaml-rust"
2994version = "0.3.5"
2995source = "registry+https://github.com/rust-lang/crates.io-index"
2996checksum = "e66366e18dc58b46801afbf2ca7661a9f59cc8c5962c29892b6039b4f86fa992"
2997
2998[[package]]
2999name = "yansi"
3000version = "0.5.1"
3001source = "registry+https://github.com/rust-lang/crates.io-index"
3002checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
3003
3004[[package]]
3005name = "zip"
3006version = "0.5.13"
3007source = "registry+https://github.com/rust-lang/crates.io-index"
3008checksum = "93ab48844d61251bb3835145c521d88aa4031d7139e8485990f60ca911fa0815"
3009dependencies = [
3010 "byteorder",
3011 "crc32fast",
3012 "thiserror",
3013 "time 0.1.45",
3014]