1diff --git a/Cargo.lock b/Cargo.lock
2new file mode 100644
3index 0000000..ae65889
4--- /dev/null
5+++ b/Cargo.lock
6@@ -0,0 +1,1450 @@
7+# This file is automatically @generated by Cargo.
8+# It is not intended for manual editing.
9+version = 3
10+
11+[[package]]
12+name = "adler"
13+version = "1.0.2"
14+source = "registry+https://github.com/rust-lang/crates.io-index"
15+checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
16+
17+[[package]]
18+name = "aho-corasick"
19+version = "0.7.19"
20+source = "registry+https://github.com/rust-lang/crates.io-index"
21+checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
22+dependencies = [
23+ "memchr",
24+]
25+
26+[[package]]
27+name = "android_system_properties"
28+version = "0.1.5"
29+source = "registry+https://github.com/rust-lang/crates.io-index"
30+checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
31+dependencies = [
32+ "libc",
33+]
34+
35+[[package]]
36+name = "anyhow"
37+version = "1.0.66"
38+source = "registry+https://github.com/rust-lang/crates.io-index"
39+checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
40+
41+[[package]]
42+name = "ascii-canvas"
43+version = "3.0.0"
44+source = "registry+https://github.com/rust-lang/crates.io-index"
45+checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6"
46+dependencies = [
47+ "term",
48+]
49+
50+[[package]]
51+name = "atty"
52+version = "0.2.14"
53+source = "registry+https://github.com/rust-lang/crates.io-index"
54+checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
55+dependencies = [
56+ "hermit-abi",
57+ "libc",
58+ "winapi",
59+]
60+
61+[[package]]
62+name = "autocfg"
63+version = "1.1.0"
64+source = "registry+https://github.com/rust-lang/crates.io-index"
65+checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
66+
67+[[package]]
68+name = "base64"
69+version = "0.12.3"
70+source = "registry+https://github.com/rust-lang/crates.io-index"
71+checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
72+
73+[[package]]
74+name = "base64"
75+version = "0.13.1"
76+source = "registry+https://github.com/rust-lang/crates.io-index"
77+checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
78+
79+[[package]]
80+name = "bindgen"
81+version = "0.57.0"
82+source = "registry+https://github.com/rust-lang/crates.io-index"
83+checksum = "fd4865004a46a0aafb2a0a5eb19d3c9fc46ee5f063a6cfc605c69ac9ecf5263d"
84+dependencies = [
85+ "bitflags",
86+ "cexpr",
87+ "clang-sys",
88+ "lazy_static",
89+ "lazycell",
90+ "peeking_take_while",
91+ "proc-macro2",
92+ "quote",
93+ "regex",
94+ "rustc-hash",
95+ "shlex",
96+]
97+
98+[[package]]
99+name = "bit-set"
100+version = "0.5.3"
101+source = "registry+https://github.com/rust-lang/crates.io-index"
102+checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
103+dependencies = [
104+ "bit-vec",
105+]
106+
107+[[package]]
108+name = "bit-vec"
109+version = "0.6.3"
110+source = "registry+https://github.com/rust-lang/crates.io-index"
111+checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
112+
113+[[package]]
114+name = "bitflags"
115+version = "1.3.2"
116+source = "registry+https://github.com/rust-lang/crates.io-index"
117+checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
118+
119+[[package]]
120+name = "block-buffer"
121+version = "0.7.3"
122+source = "registry+https://github.com/rust-lang/crates.io-index"
123+checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
124+dependencies = [
125+ "block-padding",
126+ "byte-tools",
127+ "byteorder",
128+ "generic-array 0.12.4",
129+]
130+
131+[[package]]
132+name = "block-padding"
133+version = "0.1.5"
134+source = "registry+https://github.com/rust-lang/crates.io-index"
135+checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
136+dependencies = [
137+ "byte-tools",
138+]
139+
140+[[package]]
141+name = "buffered-reader"
142+version = "1.1.3"
143+source = "registry+https://github.com/rust-lang/crates.io-index"
144+checksum = "e9f82920285502602088677aeb65df0909b39c347b38565e553ba0363c242f65"
145+dependencies = [
146+ "bzip2",
147+ "flate2",
148+ "libc",
149+]
150+
151+[[package]]
152+name = "bumpalo"
153+version = "3.11.1"
154+source = "registry+https://github.com/rust-lang/crates.io-index"
155+checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
156+
157+[[package]]
158+name = "byte-tools"
159+version = "0.3.1"
160+source = "registry+https://github.com/rust-lang/crates.io-index"
161+checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
162+
163+[[package]]
164+name = "byteorder"
165+version = "1.4.3"
166+source = "registry+https://github.com/rust-lang/crates.io-index"
167+checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
168+
169+[[package]]
170+name = "bzip2"
171+version = "0.4.3"
172+source = "registry+https://github.com/rust-lang/crates.io-index"
173+checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0"
174+dependencies = [
175+ "bzip2-sys",
176+ "libc",
177+]
178+
179+[[package]]
180+name = "bzip2-sys"
181+version = "0.1.11+1.0.8"
182+source = "registry+https://github.com/rust-lang/crates.io-index"
183+checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
184+dependencies = [
185+ "cc",
186+ "libc",
187+ "pkg-config",
188+]
189+
190+[[package]]
191+name = "cc"
192+version = "1.0.76"
193+source = "registry+https://github.com/rust-lang/crates.io-index"
194+checksum = "76a284da2e6fe2092f2353e51713435363112dfd60030e22add80be333fb928f"
195+
196+[[package]]
197+name = "cexpr"
198+version = "0.4.0"
199+source = "registry+https://github.com/rust-lang/crates.io-index"
200+checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27"
201+dependencies = [
202+ "nom",
203+]
204+
205+[[package]]
206+name = "cfg-if"
207+version = "1.0.0"
208+source = "registry+https://github.com/rust-lang/crates.io-index"
209+checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
210+
211+[[package]]
212+name = "chrono"
213+version = "0.4.23"
214+source = "registry+https://github.com/rust-lang/crates.io-index"
215+checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
216+dependencies = [
217+ "iana-time-zone",
218+ "js-sys",
219+ "num-integer",
220+ "num-traits",
221+ "time",
222+ "wasm-bindgen",
223+ "winapi",
224+]
225+
226+[[package]]
227+name = "clang-sys"
228+version = "1.4.0"
229+source = "registry+https://github.com/rust-lang/crates.io-index"
230+checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3"
231+dependencies = [
232+ "glob",
233+ "libc",
234+ "libloading",
235+]
236+
237+[[package]]
238+name = "codespan-reporting"
239+version = "0.11.1"
240+source = "registry+https://github.com/rust-lang/crates.io-index"
241+checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
242+dependencies = [
243+ "termcolor",
244+ "unicode-width",
245+]
246+
247+[[package]]
248+name = "core-foundation-sys"
249+version = "0.8.3"
250+source = "registry+https://github.com/rust-lang/crates.io-index"
251+checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
252+
253+[[package]]
254+name = "crc32fast"
255+version = "1.3.2"
256+source = "registry+https://github.com/rust-lang/crates.io-index"
257+checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
258+dependencies = [
259+ "cfg-if",
260+]
261+
262+[[package]]
263+name = "crunchy"
264+version = "0.2.2"
265+source = "registry+https://github.com/rust-lang/crates.io-index"
266+checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
267+
268+[[package]]
269+name = "cxx"
270+version = "1.0.82"
271+source = "registry+https://github.com/rust-lang/crates.io-index"
272+checksum = "d4a41a86530d0fe7f5d9ea779916b7cadd2d4f9add748b99c2c029cbbdfaf453"
273+dependencies = [
274+ "cc",
275+ "cxxbridge-flags",
276+ "cxxbridge-macro",
277+ "link-cplusplus",
278+]
279+
280+[[package]]
281+name = "cxx-build"
282+version = "1.0.82"
283+source = "registry+https://github.com/rust-lang/crates.io-index"
284+checksum = "06416d667ff3e3ad2df1cd8cd8afae5da26cf9cec4d0825040f88b5ca659a2f0"
285+dependencies = [
286+ "cc",
287+ "codespan-reporting",
288+ "once_cell",
289+ "proc-macro2",
290+ "quote",
291+ "scratch",
292+ "syn",
293+]
294+
295+[[package]]
296+name = "cxxbridge-flags"
297+version = "1.0.82"
298+source = "registry+https://github.com/rust-lang/crates.io-index"
299+checksum = "820a9a2af1669deeef27cb271f476ffd196a2c4b6731336011e0ba63e2c7cf71"
300+
301+[[package]]
302+name = "cxxbridge-macro"
303+version = "1.0.82"
304+source = "registry+https://github.com/rust-lang/crates.io-index"
305+checksum = "a08a6e2fcc370a089ad3b4aaf54db3b1b4cee38ddabce5896b33eb693275f470"
306+dependencies = [
307+ "proc-macro2",
308+ "quote",
309+ "syn",
310+]
311+
312+[[package]]
313+name = "diff"
314+version = "0.1.13"
315+source = "registry+https://github.com/rust-lang/crates.io-index"
316+checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
317+
318+[[package]]
319+name = "digest"
320+version = "0.8.1"
321+source = "registry+https://github.com/rust-lang/crates.io-index"
322+checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
323+dependencies = [
324+ "generic-array 0.12.4",
325+]
326+
327+[[package]]
328+name = "digest"
329+version = "0.9.0"
330+source = "registry+https://github.com/rust-lang/crates.io-index"
331+checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
332+dependencies = [
333+ "generic-array 0.14.6",
334+]
335+
336+[[package]]
337+name = "dirs-next"
338+version = "2.0.0"
339+source = "registry+https://github.com/rust-lang/crates.io-index"
340+checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
341+dependencies = [
342+ "cfg-if",
343+ "dirs-sys-next",
344+]
345+
346+[[package]]
347+name = "dirs-sys-next"
348+version = "0.1.2"
349+source = "registry+https://github.com/rust-lang/crates.io-index"
350+checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
351+dependencies = [
352+ "libc",
353+ "redox_users",
354+ "winapi",
355+]
356+
357+[[package]]
358+name = "dyn-clone"
359+version = "1.0.9"
360+source = "registry+https://github.com/rust-lang/crates.io-index"
361+checksum = "4f94fa09c2aeea5b8839e414b7b841bf429fd25b9c522116ac97ee87856d88b2"
362+
363+[[package]]
364+name = "either"
365+version = "1.8.0"
366+source = "registry+https://github.com/rust-lang/crates.io-index"
367+checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
368+
369+[[package]]
370+name = "ena"
371+version = "0.14.0"
372+source = "registry+https://github.com/rust-lang/crates.io-index"
373+checksum = "d7402b94a93c24e742487327a7cd839dc9d36fec9de9fb25b09f2dae459f36c3"
374+dependencies = [
375+ "log",
376+]
377+
378+[[package]]
379+name = "fake-simd"
380+version = "0.1.2"
381+source = "registry+https://github.com/rust-lang/crates.io-index"
382+checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
383+
384+[[package]]
385+name = "fastrand"
386+version = "1.8.0"
387+source = "registry+https://github.com/rust-lang/crates.io-index"
388+checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
389+dependencies = [
390+ "instant",
391+]
392+
393+[[package]]
394+name = "fixedbitset"
395+version = "0.4.2"
396+source = "registry+https://github.com/rust-lang/crates.io-index"
397+checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
398+
399+[[package]]
400+name = "flate2"
401+version = "1.0.24"
402+source = "registry+https://github.com/rust-lang/crates.io-index"
403+checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
404+dependencies = [
405+ "crc32fast",
406+ "miniz_oxide",
407+]
408+
409+[[package]]
410+name = "generic-array"
411+version = "0.12.4"
412+source = "registry+https://github.com/rust-lang/crates.io-index"
413+checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd"
414+dependencies = [
415+ "typenum",
416+]
417+
418+[[package]]
419+name = "generic-array"
420+version = "0.14.6"
421+source = "registry+https://github.com/rust-lang/crates.io-index"
422+checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
423+dependencies = [
424+ "typenum",
425+ "version_check",
426+]
427+
428+[[package]]
429+name = "getrandom"
430+version = "0.1.16"
431+source = "registry+https://github.com/rust-lang/crates.io-index"
432+checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
433+dependencies = [
434+ "cfg-if",
435+ "js-sys",
436+ "libc",
437+ "wasi 0.9.0+wasi-snapshot-preview1",
438+ "wasm-bindgen",
439+]
440+
441+[[package]]
442+name = "getrandom"
443+version = "0.2.8"
444+source = "registry+https://github.com/rust-lang/crates.io-index"
445+checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
446+dependencies = [
447+ "cfg-if",
448+ "js-sys",
449+ "libc",
450+ "wasi 0.11.0+wasi-snapshot-preview1",
451+ "wasm-bindgen",
452+]
453+
454+[[package]]
455+name = "glob"
456+version = "0.3.0"
457+source = "registry+https://github.com/rust-lang/crates.io-index"
458+checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
459+
460+[[package]]
461+name = "hashbrown"
462+version = "0.12.3"
463+source = "registry+https://github.com/rust-lang/crates.io-index"
464+checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
465+
466+[[package]]
467+name = "hermit-abi"
468+version = "0.1.19"
469+source = "registry+https://github.com/rust-lang/crates.io-index"
470+checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
471+dependencies = [
472+ "libc",
473+]
474+
475+[[package]]
476+name = "iana-time-zone"
477+version = "0.1.53"
478+source = "registry+https://github.com/rust-lang/crates.io-index"
479+checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
480+dependencies = [
481+ "android_system_properties",
482+ "core-foundation-sys",
483+ "iana-time-zone-haiku",
484+ "js-sys",
485+ "wasm-bindgen",
486+ "winapi",
487+]
488+
489+[[package]]
490+name = "iana-time-zone-haiku"
491+version = "0.1.1"
492+source = "registry+https://github.com/rust-lang/crates.io-index"
493+checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
494+dependencies = [
495+ "cxx",
496+ "cxx-build",
497+]
498+
499+[[package]]
500+name = "idna"
501+version = "0.3.0"
502+source = "registry+https://github.com/rust-lang/crates.io-index"
503+checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
504+dependencies = [
505+ "unicode-bidi",
506+ "unicode-normalization",
507+]
508+
509+[[package]]
510+name = "indexmap"
511+version = "1.9.2"
512+source = "registry+https://github.com/rust-lang/crates.io-index"
513+checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
514+dependencies = [
515+ "autocfg",
516+ "hashbrown",
517+]
518+
519+[[package]]
520+name = "indoc"
521+version = "1.0.7"
522+source = "registry+https://github.com/rust-lang/crates.io-index"
523+checksum = "adab1eaa3408fb7f0c777a73e7465fd5656136fc93b670eb6df3c88c2c1344e3"
524+
525+[[package]]
526+name = "instant"
527+version = "0.1.12"
528+source = "registry+https://github.com/rust-lang/crates.io-index"
529+checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
530+dependencies = [
531+ "cfg-if",
532+]
533+
534+[[package]]
535+name = "itertools"
536+version = "0.10.5"
537+source = "registry+https://github.com/rust-lang/crates.io-index"
538+checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
539+dependencies = [
540+ "either",
541+]
542+
543+[[package]]
544+name = "johnnycanencrypt"
545+version = "0.11.0"
546+dependencies = [
547+ "anyhow",
548+ "chrono",
549+ "pyo3",
550+ "sequoia-openpgp",
551+ "sshkeys",
552+ "talktosc",
553+ "tempfile",
554+]
555+
556+[[package]]
557+name = "js-sys"
558+version = "0.3.60"
559+source = "registry+https://github.com/rust-lang/crates.io-index"
560+checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
561+dependencies = [
562+ "wasm-bindgen",
563+]
564+
565+[[package]]
566+name = "lalrpop"
567+version = "0.19.8"
568+source = "registry+https://github.com/rust-lang/crates.io-index"
569+checksum = "b30455341b0e18f276fa64540aff54deafb54c589de6aca68659c63dd2d5d823"
570+dependencies = [
571+ "ascii-canvas",
572+ "atty",
573+ "bit-set",
574+ "diff",
575+ "ena",
576+ "itertools",
577+ "lalrpop-util",
578+ "petgraph",
579+ "regex",
580+ "regex-syntax",
581+ "string_cache",
582+ "term",
583+ "tiny-keccak",
584+ "unicode-xid",
585+]
586+
587+[[package]]
588+name = "lalrpop-util"
589+version = "0.19.8"
590+source = "registry+https://github.com/rust-lang/crates.io-index"
591+checksum = "bcf796c978e9b4d983414f4caedc9273aa33ee214c5b887bd55fde84c85d2dc4"
592+
593+[[package]]
594+name = "lazy_static"
595+version = "1.4.0"
596+source = "registry+https://github.com/rust-lang/crates.io-index"
597+checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
598+
599+[[package]]
600+name = "lazycell"
601+version = "1.3.0"
602+source = "registry+https://github.com/rust-lang/crates.io-index"
603+checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
604+
605+[[package]]
606+name = "libc"
607+version = "0.2.137"
608+source = "registry+https://github.com/rust-lang/crates.io-index"
609+checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
610+
611+[[package]]
612+name = "libloading"
613+version = "0.7.4"
614+source = "registry+https://github.com/rust-lang/crates.io-index"
615+checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
616+dependencies = [
617+ "cfg-if",
618+ "winapi",
619+]
620+
621+[[package]]
622+name = "link-cplusplus"
623+version = "1.0.7"
624+source = "registry+https://github.com/rust-lang/crates.io-index"
625+checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369"
626+dependencies = [
627+ "cc",
628+]
629+
630+[[package]]
631+name = "lock_api"
632+version = "0.4.9"
633+source = "registry+https://github.com/rust-lang/crates.io-index"
634+checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
635+dependencies = [
636+ "autocfg",
637+ "scopeguard",
638+]
639+
640+[[package]]
641+name = "log"
642+version = "0.4.17"
643+source = "registry+https://github.com/rust-lang/crates.io-index"
644+checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
645+dependencies = [
646+ "cfg-if",
647+]
648+
649+[[package]]
650+name = "memchr"
651+version = "2.5.0"
652+source = "registry+https://github.com/rust-lang/crates.io-index"
653+checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
654+
655+[[package]]
656+name = "memoffset"
657+version = "0.6.5"
658+source = "registry+https://github.com/rust-lang/crates.io-index"
659+checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
660+dependencies = [
661+ "autocfg",
662+]
663+
664+[[package]]
665+name = "memsec"
666+version = "0.6.2"
667+source = "registry+https://github.com/rust-lang/crates.io-index"
668+checksum = "9ac78937f19a0c7807e45a931eac41f766f210173ec664ec046d58e6d388a5cb"
669+
670+[[package]]
671+name = "miniz_oxide"
672+version = "0.5.4"
673+source = "registry+https://github.com/rust-lang/crates.io-index"
674+checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
675+dependencies = [
676+ "adler",
677+]
678+
679+[[package]]
680+name = "nettle"
681+version = "7.2.0"
682+source = "registry+https://github.com/rust-lang/crates.io-index"
683+checksum = "f5d193a809310369c5d16e45bc0a88cb27935edd5d3375bcfc2371b167694035"
684+dependencies = [
685+ "getrandom 0.2.8",
686+ "libc",
687+ "nettle-sys",
688+ "thiserror",
689+]
690+
691+[[package]]
692+name = "nettle-sys"
693+version = "2.1.0"
694+source = "registry+https://github.com/rust-lang/crates.io-index"
695+checksum = "b13b685c7883e3a32196ccf3ce594947ec37ace43d74e157de7ca03d3fe62d17"
696+dependencies = [
697+ "bindgen",
698+ "cc",
699+ "libc",
700+ "pkg-config",
701+ "tempfile",
702+ "vcpkg",
703+]
704+
705+[[package]]
706+name = "new_debug_unreachable"
707+version = "1.0.4"
708+source = "registry+https://github.com/rust-lang/crates.io-index"
709+checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
710+
711+[[package]]
712+name = "nom"
713+version = "5.1.2"
714+source = "registry+https://github.com/rust-lang/crates.io-index"
715+checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
716+dependencies = [
717+ "memchr",
718+ "version_check",
719+]
720+
721+[[package]]
722+name = "num-integer"
723+version = "0.1.45"
724+source = "registry+https://github.com/rust-lang/crates.io-index"
725+checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
726+dependencies = [
727+ "autocfg",
728+ "num-traits",
729+]
730+
731+[[package]]
732+name = "num-traits"
733+version = "0.2.15"
734+source = "registry+https://github.com/rust-lang/crates.io-index"
735+checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
736+dependencies = [
737+ "autocfg",
738+]
739+
740+[[package]]
741+name = "once_cell"
742+version = "1.16.0"
743+source = "registry+https://github.com/rust-lang/crates.io-index"
744+checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
745+
746+[[package]]
747+name = "opaque-debug"
748+version = "0.2.3"
749+source = "registry+https://github.com/rust-lang/crates.io-index"
750+checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
751+
752+[[package]]
753+name = "parking_lot"
754+version = "0.12.1"
755+source = "registry+https://github.com/rust-lang/crates.io-index"
756+checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
757+dependencies = [
758+ "lock_api",
759+ "parking_lot_core",
760+]
761+
762+[[package]]
763+name = "parking_lot_core"
764+version = "0.9.4"
765+source = "registry+https://github.com/rust-lang/crates.io-index"
766+checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0"
767+dependencies = [
768+ "cfg-if",
769+ "libc",
770+ "redox_syscall",
771+ "smallvec",
772+ "windows-sys",
773+]
774+
775+[[package]]
776+name = "pcsc"
777+version = "2.7.0"
778+source = "registry+https://github.com/rust-lang/crates.io-index"
779+checksum = "7e29e4de78a433aeecd06fb5bd55a0f9fde11dc85a14c22d482972c7edc4fdc4"
780+dependencies = [
781+ "bitflags",
782+ "pcsc-sys",
783+]
784+
785+[[package]]
786+name = "pcsc-sys"
787+version = "1.2.0"
788+source = "registry+https://github.com/rust-lang/crates.io-index"
789+checksum = "e1b7bfecba2c0f1b5efb0e7caf7533ab1c295024165bcbb066231f60d33e23ea"
790+dependencies = [
791+ "pkg-config",
792+]
793+
794+[[package]]
795+name = "peeking_take_while"
796+version = "0.1.2"
797+source = "registry+https://github.com/rust-lang/crates.io-index"
798+checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
799+
800+[[package]]
801+name = "petgraph"
802+version = "0.6.2"
803+source = "registry+https://github.com/rust-lang/crates.io-index"
804+checksum = "e6d5014253a1331579ce62aa67443b4a658c5e7dd03d4bc6d302b94474888143"
805+dependencies = [
806+ "fixedbitset",
807+ "indexmap",
808+]
809+
810+[[package]]
811+name = "phf_shared"
812+version = "0.10.0"
813+source = "registry+https://github.com/rust-lang/crates.io-index"
814+checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
815+dependencies = [
816+ "siphasher",
817+]
818+
819+[[package]]
820+name = "pkg-config"
821+version = "0.3.26"
822+source = "registry+https://github.com/rust-lang/crates.io-index"
823+checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
824+
825+[[package]]
826+name = "ppv-lite86"
827+version = "0.2.17"
828+source = "registry+https://github.com/rust-lang/crates.io-index"
829+checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
830+
831+[[package]]
832+name = "precomputed-hash"
833+version = "0.1.1"
834+source = "registry+https://github.com/rust-lang/crates.io-index"
835+checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
836+
837+[[package]]
838+name = "proc-macro2"
839+version = "1.0.47"
840+source = "registry+https://github.com/rust-lang/crates.io-index"
841+checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
842+dependencies = [
843+ "unicode-ident",
844+]
845+
846+[[package]]
847+name = "pyo3"
848+version = "0.17.3"
849+source = "registry+https://github.com/rust-lang/crates.io-index"
850+checksum = "268be0c73583c183f2b14052337465768c07726936a260f480f0857cb95ba543"
851+dependencies = [
852+ "cfg-if",
853+ "indoc",
854+ "libc",
855+ "memoffset",
856+ "parking_lot",
857+ "pyo3-build-config",
858+ "pyo3-ffi",
859+ "pyo3-macros",
860+ "unindent",
861+]
862+
863+[[package]]
864+name = "pyo3-build-config"
865+version = "0.17.3"
866+source = "registry+https://github.com/rust-lang/crates.io-index"
867+checksum = "28fcd1e73f06ec85bf3280c48c67e731d8290ad3d730f8be9dc07946923005c8"
868+dependencies = [
869+ "once_cell",
870+ "target-lexicon",
871+]
872+
873+[[package]]
874+name = "pyo3-ffi"
875+version = "0.17.3"
876+source = "registry+https://github.com/rust-lang/crates.io-index"
877+checksum = "0f6cb136e222e49115b3c51c32792886defbfb0adead26a688142b346a0b9ffc"
878+dependencies = [
879+ "libc",
880+ "pyo3-build-config",
881+]
882+
883+[[package]]
884+name = "pyo3-macros"
885+version = "0.17.3"
886+source = "registry+https://github.com/rust-lang/crates.io-index"
887+checksum = "94144a1266e236b1c932682136dc35a9dee8d3589728f68130c7c3861ef96b28"
888+dependencies = [
889+ "proc-macro2",
890+ "pyo3-macros-backend",
891+ "quote",
892+ "syn",
893+]
894+
895+[[package]]
896+name = "pyo3-macros-backend"
897+version = "0.17.3"
898+source = "registry+https://github.com/rust-lang/crates.io-index"
899+checksum = "c8df9be978a2d2f0cdebabb03206ed73b11314701a5bfe71b0d753b81997777f"
900+dependencies = [
901+ "proc-macro2",
902+ "quote",
903+ "syn",
904+]
905+
906+[[package]]
907+name = "quote"
908+version = "1.0.21"
909+source = "registry+https://github.com/rust-lang/crates.io-index"
910+checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
911+dependencies = [
912+ "proc-macro2",
913+]
914+
915+[[package]]
916+name = "rand"
917+version = "0.7.3"
918+source = "registry+https://github.com/rust-lang/crates.io-index"
919+checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
920+dependencies = [
921+ "getrandom 0.1.16",
922+ "libc",
923+ "rand_chacha",
924+ "rand_core",
925+ "rand_hc",
926+]
927+
928+[[package]]
929+name = "rand_chacha"
930+version = "0.2.2"
931+source = "registry+https://github.com/rust-lang/crates.io-index"
932+checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
933+dependencies = [
934+ "ppv-lite86",
935+ "rand_core",
936+]
937+
938+[[package]]
939+name = "rand_core"
940+version = "0.5.1"
941+source = "registry+https://github.com/rust-lang/crates.io-index"
942+checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
943+dependencies = [
944+ "getrandom 0.1.16",
945+]
946+
947+[[package]]
948+name = "rand_hc"
949+version = "0.2.0"
950+source = "registry+https://github.com/rust-lang/crates.io-index"
951+checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
952+dependencies = [
953+ "rand_core",
954+]
955+
956+[[package]]
957+name = "redox_syscall"
958+version = "0.2.16"
959+source = "registry+https://github.com/rust-lang/crates.io-index"
960+checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
961+dependencies = [
962+ "bitflags",
963+]
964+
965+[[package]]
966+name = "redox_users"
967+version = "0.4.3"
968+source = "registry+https://github.com/rust-lang/crates.io-index"
969+checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
970+dependencies = [
971+ "getrandom 0.2.8",
972+ "redox_syscall",
973+ "thiserror",
974+]
975+
976+[[package]]
977+name = "regex"
978+version = "1.7.0"
979+source = "registry+https://github.com/rust-lang/crates.io-index"
980+checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a"
981+dependencies = [
982+ "aho-corasick",
983+ "memchr",
984+ "regex-syntax",
985+]
986+
987+[[package]]
988+name = "regex-syntax"
989+version = "0.6.28"
990+source = "registry+https://github.com/rust-lang/crates.io-index"
991+checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
992+
993+[[package]]
994+name = "remove_dir_all"
995+version = "0.5.3"
996+source = "registry+https://github.com/rust-lang/crates.io-index"
997+checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
998+dependencies = [
999+ "winapi",
1000+]
1001+
1002+[[package]]
1003+name = "rustc-hash"
1004+version = "1.1.0"
1005+source = "registry+https://github.com/rust-lang/crates.io-index"
1006+checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1007+
1008+[[package]]
1009+name = "rustversion"
1010+version = "1.0.9"
1011+source = "registry+https://github.com/rust-lang/crates.io-index"
1012+checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8"
1013+
1014+[[package]]
1015+name = "scopeguard"
1016+version = "1.1.0"
1017+source = "registry+https://github.com/rust-lang/crates.io-index"
1018+checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
1019+
1020+[[package]]
1021+name = "scratch"
1022+version = "1.0.2"
1023+source = "registry+https://github.com/rust-lang/crates.io-index"
1024+checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898"
1025+
1026+[[package]]
1027+name = "sequoia-openpgp"
1028+version = "1.11.0"
1029+source = "registry+https://github.com/rust-lang/crates.io-index"
1030+checksum = "50d9033c24b1d41fdfab2bbde66005d324625b4abee2af2aea6135bdd9543ff7"
1031+dependencies = [
1032+ "anyhow",
1033+ "base64 0.13.1",
1034+ "buffered-reader",
1035+ "bzip2",
1036+ "chrono",
1037+ "dyn-clone",
1038+ "flate2",
1039+ "getrandom 0.2.8",
1040+ "idna",
1041+ "lalrpop",
1042+ "lalrpop-util",
1043+ "lazy_static",
1044+ "libc",
1045+ "memsec",
1046+ "nettle",
1047+ "rand",
1048+ "regex",
1049+ "regex-syntax",
1050+ "sha1collisiondetection",
1051+ "thiserror",
1052+ "xxhash-rust",
1053+]
1054+
1055+[[package]]
1056+name = "sha1collisiondetection"
1057+version = "0.2.6"
1058+source = "registry+https://github.com/rust-lang/crates.io-index"
1059+checksum = "c66558a774ef5044cb4a834db5f5c7f95e139d2341d7f502fe6034afa7082461"
1060+dependencies = [
1061+ "digest 0.9.0",
1062+ "generic-array 0.14.6",
1063+]
1064+
1065+[[package]]
1066+name = "sha2"
1067+version = "0.8.2"
1068+source = "registry+https://github.com/rust-lang/crates.io-index"
1069+checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69"
1070+dependencies = [
1071+ "block-buffer",
1072+ "digest 0.8.1",
1073+ "fake-simd",
1074+ "opaque-debug",
1075+]
1076+
1077+[[package]]
1078+name = "shlex"
1079+version = "0.1.1"
1080+source = "registry+https://github.com/rust-lang/crates.io-index"
1081+checksum = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2"
1082+
1083+[[package]]
1084+name = "siphasher"
1085+version = "0.3.10"
1086+source = "registry+https://github.com/rust-lang/crates.io-index"
1087+checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
1088+
1089+[[package]]
1090+name = "smallvec"
1091+version = "1.10.0"
1092+source = "registry+https://github.com/rust-lang/crates.io-index"
1093+checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
1094+
1095+[[package]]
1096+name = "sshkeys"
1097+version = "0.3.2"
1098+source = "registry+https://github.com/rust-lang/crates.io-index"
1099+checksum = "c926cb006a77964474a13a86aa0135ea82c9fd43e6793a1151cc54143db6637c"
1100+dependencies = [
1101+ "base64 0.12.3",
1102+ "byteorder",
1103+ "sha2",
1104+]
1105+
1106+[[package]]
1107+name = "string_cache"
1108+version = "0.8.4"
1109+source = "registry+https://github.com/rust-lang/crates.io-index"
1110+checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08"
1111+dependencies = [
1112+ "new_debug_unreachable",
1113+ "once_cell",
1114+ "parking_lot",
1115+ "phf_shared",
1116+ "precomputed-hash",
1117+]
1118+
1119+[[package]]
1120+name = "syn"
1121+version = "1.0.103"
1122+source = "registry+https://github.com/rust-lang/crates.io-index"
1123+checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d"
1124+dependencies = [
1125+ "proc-macro2",
1126+ "quote",
1127+ "unicode-ident",
1128+]
1129+
1130+[[package]]
1131+name = "talktosc"
1132+version = "0.1.3"
1133+source = "registry+https://github.com/rust-lang/crates.io-index"
1134+checksum = "d165e1d4852d6a986a400f085b39c2786f9647aa7af53aabe168caa11629c28f"
1135+dependencies = [
1136+ "pcsc",
1137+ "thiserror",
1138+]
1139+
1140+[[package]]
1141+name = "target-lexicon"
1142+version = "0.12.5"
1143+source = "registry+https://github.com/rust-lang/crates.io-index"
1144+checksum = "9410d0f6853b1d94f0e519fb95df60f29d2c1eff2d921ffdf01a4c8a3b54f12d"
1145+
1146+[[package]]
1147+name = "tempfile"
1148+version = "3.3.0"
1149+source = "registry+https://github.com/rust-lang/crates.io-index"
1150+checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
1151+dependencies = [
1152+ "cfg-if",
1153+ "fastrand",
1154+ "libc",
1155+ "redox_syscall",
1156+ "remove_dir_all",
1157+ "winapi",
1158+]
1159+
1160+[[package]]
1161+name = "term"
1162+version = "0.7.0"
1163+source = "registry+https://github.com/rust-lang/crates.io-index"
1164+checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
1165+dependencies = [
1166+ "dirs-next",
1167+ "rustversion",
1168+ "winapi",
1169+]
1170+
1171+[[package]]
1172+name = "termcolor"
1173+version = "1.1.3"
1174+source = "registry+https://github.com/rust-lang/crates.io-index"
1175+checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
1176+dependencies = [
1177+ "winapi-util",
1178+]
1179+
1180+[[package]]
1181+name = "thiserror"
1182+version = "1.0.37"
1183+source = "registry+https://github.com/rust-lang/crates.io-index"
1184+checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
1185+dependencies = [
1186+ "thiserror-impl",
1187+]
1188+
1189+[[package]]
1190+name = "thiserror-impl"
1191+version = "1.0.37"
1192+source = "registry+https://github.com/rust-lang/crates.io-index"
1193+checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
1194+dependencies = [
1195+ "proc-macro2",
1196+ "quote",
1197+ "syn",
1198+]
1199+
1200+[[package]]
1201+name = "time"
1202+version = "0.1.44"
1203+source = "registry+https://github.com/rust-lang/crates.io-index"
1204+checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
1205+dependencies = [
1206+ "libc",
1207+ "wasi 0.10.0+wasi-snapshot-preview1",
1208+ "winapi",
1209+]
1210+
1211+[[package]]
1212+name = "tiny-keccak"
1213+version = "2.0.2"
1214+source = "registry+https://github.com/rust-lang/crates.io-index"
1215+checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
1216+dependencies = [
1217+ "crunchy",
1218+]
1219+
1220+[[package]]
1221+name = "tinyvec"
1222+version = "1.6.0"
1223+source = "registry+https://github.com/rust-lang/crates.io-index"
1224+checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
1225+dependencies = [
1226+ "tinyvec_macros",
1227+]
1228+
1229+[[package]]
1230+name = "tinyvec_macros"
1231+version = "0.1.0"
1232+source = "registry+https://github.com/rust-lang/crates.io-index"
1233+checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
1234+
1235+[[package]]
1236+name = "typenum"
1237+version = "1.15.0"
1238+source = "registry+https://github.com/rust-lang/crates.io-index"
1239+checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
1240+
1241+[[package]]
1242+name = "unicode-bidi"
1243+version = "0.3.8"
1244+source = "registry+https://github.com/rust-lang/crates.io-index"
1245+checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
1246+
1247+[[package]]
1248+name = "unicode-ident"
1249+version = "1.0.5"
1250+source = "registry+https://github.com/rust-lang/crates.io-index"
1251+checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
1252+
1253+[[package]]
1254+name = "unicode-normalization"
1255+version = "0.1.22"
1256+source = "registry+https://github.com/rust-lang/crates.io-index"
1257+checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
1258+dependencies = [
1259+ "tinyvec",
1260+]
1261+
1262+[[package]]
1263+name = "unicode-width"
1264+version = "0.1.10"
1265+source = "registry+https://github.com/rust-lang/crates.io-index"
1266+checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
1267+
1268+[[package]]
1269+name = "unicode-xid"
1270+version = "0.2.4"
1271+source = "registry+https://github.com/rust-lang/crates.io-index"
1272+checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
1273+
1274+[[package]]
1275+name = "unindent"
1276+version = "0.1.10"
1277+source = "registry+https://github.com/rust-lang/crates.io-index"
1278+checksum = "58ee9362deb4a96cef4d437d1ad49cffc9b9e92d202b6995674e928ce684f112"
1279+
1280+[[package]]
1281+name = "vcpkg"
1282+version = "0.2.15"
1283+source = "registry+https://github.com/rust-lang/crates.io-index"
1284+checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1285+
1286+[[package]]
1287+name = "version_check"
1288+version = "0.9.4"
1289+source = "registry+https://github.com/rust-lang/crates.io-index"
1290+checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
1291+
1292+[[package]]
1293+name = "wasi"
1294+version = "0.9.0+wasi-snapshot-preview1"
1295+source = "registry+https://github.com/rust-lang/crates.io-index"
1296+checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
1297+
1298+[[package]]
1299+name = "wasi"
1300+version = "0.10.0+wasi-snapshot-preview1"
1301+source = "registry+https://github.com/rust-lang/crates.io-index"
1302+checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
1303+
1304+[[package]]
1305+name = "wasi"
1306+version = "0.11.0+wasi-snapshot-preview1"
1307+source = "registry+https://github.com/rust-lang/crates.io-index"
1308+checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1309+
1310+[[package]]
1311+name = "wasm-bindgen"
1312+version = "0.2.83"
1313+source = "registry+https://github.com/rust-lang/crates.io-index"
1314+checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
1315+dependencies = [
1316+ "cfg-if",
1317+ "wasm-bindgen-macro",
1318+]
1319+
1320+[[package]]
1321+name = "wasm-bindgen-backend"
1322+version = "0.2.83"
1323+source = "registry+https://github.com/rust-lang/crates.io-index"
1324+checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
1325+dependencies = [
1326+ "bumpalo",
1327+ "log",
1328+ "once_cell",
1329+ "proc-macro2",
1330+ "quote",
1331+ "syn",
1332+ "wasm-bindgen-shared",
1333+]
1334+
1335+[[package]]
1336+name = "wasm-bindgen-macro"
1337+version = "0.2.83"
1338+source = "registry+https://github.com/rust-lang/crates.io-index"
1339+checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
1340+dependencies = [
1341+ "quote",
1342+ "wasm-bindgen-macro-support",
1343+]
1344+
1345+[[package]]
1346+name = "wasm-bindgen-macro-support"
1347+version = "0.2.83"
1348+source = "registry+https://github.com/rust-lang/crates.io-index"
1349+checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
1350+dependencies = [
1351+ "proc-macro2",
1352+ "quote",
1353+ "syn",
1354+ "wasm-bindgen-backend",
1355+ "wasm-bindgen-shared",
1356+]
1357+
1358+[[package]]
1359+name = "wasm-bindgen-shared"
1360+version = "0.2.83"
1361+source = "registry+https://github.com/rust-lang/crates.io-index"
1362+checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
1363+
1364+[[package]]
1365+name = "winapi"
1366+version = "0.3.9"
1367+source = "registry+https://github.com/rust-lang/crates.io-index"
1368+checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1369+dependencies = [
1370+ "winapi-i686-pc-windows-gnu",
1371+ "winapi-x86_64-pc-windows-gnu",
1372+]
1373+
1374+[[package]]
1375+name = "winapi-i686-pc-windows-gnu"
1376+version = "0.4.0"
1377+source = "registry+https://github.com/rust-lang/crates.io-index"
1378+checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1379+
1380+[[package]]
1381+name = "winapi-util"
1382+version = "0.1.5"
1383+source = "registry+https://github.com/rust-lang/crates.io-index"
1384+checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
1385+dependencies = [
1386+ "winapi",
1387+]
1388+
1389+[[package]]
1390+name = "winapi-x86_64-pc-windows-gnu"
1391+version = "0.4.0"
1392+source = "registry+https://github.com/rust-lang/crates.io-index"
1393+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1394+
1395+[[package]]
1396+name = "windows-sys"
1397+version = "0.42.0"
1398+source = "registry+https://github.com/rust-lang/crates.io-index"
1399+checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
1400+dependencies = [
1401+ "windows_aarch64_gnullvm",
1402+ "windows_aarch64_msvc",
1403+ "windows_i686_gnu",
1404+ "windows_i686_msvc",
1405+ "windows_x86_64_gnu",
1406+ "windows_x86_64_gnullvm",
1407+ "windows_x86_64_msvc",
1408+]
1409+
1410+[[package]]
1411+name = "windows_aarch64_gnullvm"
1412+version = "0.42.0"
1413+source = "registry+https://github.com/rust-lang/crates.io-index"
1414+checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
1415+
1416+[[package]]
1417+name = "windows_aarch64_msvc"
1418+version = "0.42.0"
1419+source = "registry+https://github.com/rust-lang/crates.io-index"
1420+checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
1421+
1422+[[package]]
1423+name = "windows_i686_gnu"
1424+version = "0.42.0"
1425+source = "registry+https://github.com/rust-lang/crates.io-index"
1426+checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
1427+
1428+[[package]]
1429+name = "windows_i686_msvc"
1430+version = "0.42.0"
1431+source = "registry+https://github.com/rust-lang/crates.io-index"
1432+checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
1433+
1434+[[package]]
1435+name = "windows_x86_64_gnu"
1436+version = "0.42.0"
1437+source = "registry+https://github.com/rust-lang/crates.io-index"
1438+checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
1439+
1440+[[package]]
1441+name = "windows_x86_64_gnullvm"
1442+version = "0.42.0"
1443+source = "registry+https://github.com/rust-lang/crates.io-index"
1444+checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
1445+
1446+[[package]]
1447+name = "windows_x86_64_msvc"
1448+version = "0.42.0"
1449+source = "registry+https://github.com/rust-lang/crates.io-index"
1450+checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"
1451+
1452+[[package]]
1453+name = "xxhash-rust"
1454+version = "0.8.6"
1455+source = "registry+https://github.com/rust-lang/crates.io-index"
1456+checksum = "735a71d46c4d68d71d4b24d03fdc2b98e38cea81730595801db779c04fe80d70"