]> Untitled Git - lemmy.git/blob - Cargo.lock
Version 0.18.1-rc.9
[lemmy.git] / Cargo.lock
1 # This file is automatically @generated by Cargo.
2 # It is not intended for manual editing.
3 version = 3
4
5 [[package]]
6 name = "Inflector"
7 version = "0.11.4"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
10 dependencies = [
11  "lazy_static",
12  "regex",
13 ]
14
15 [[package]]
16 name = "activitypub_federation"
17 version = "0.4.5"
18 source = "registry+https://github.com/rust-lang/crates.io-index"
19 checksum = "4ab3ac148d9c0b4163a6d41040c17de7558a42224b9ecbd4e8f033aef6c254d9"
20 dependencies = [
21  "activitystreams-kinds",
22  "actix-web",
23  "anyhow",
24  "async-trait",
25  "base64 0.21.2",
26  "bytes",
27  "chrono",
28  "derive_builder",
29  "displaydoc",
30  "dyn-clone",
31  "enum_delegate",
32  "futures-core",
33  "http",
34  "http-signature-normalization 0.7.0",
35  "http-signature-normalization-reqwest",
36  "httpdate",
37  "itertools",
38  "once_cell",
39  "openssl",
40  "pin-project-lite",
41  "regex",
42  "reqwest",
43  "reqwest-middleware",
44  "serde",
45  "serde_json",
46  "sha2",
47  "thiserror",
48  "tokio",
49  "tracing",
50  "url",
51 ]
52
53 [[package]]
54 name = "activitystreams-kinds"
55 version = "0.3.0"
56 source = "registry+https://github.com/rust-lang/crates.io-index"
57 checksum = "e97dfe76efd8c0b113cc3580a6b5f4acba47662e3cfbbfcce081c9ac89798990"
58 dependencies = [
59  "serde",
60  "url",
61 ]
62
63 [[package]]
64 name = "actix-codec"
65 version = "0.5.0"
66 source = "registry+https://github.com/rust-lang/crates.io-index"
67 checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe"
68 dependencies = [
69  "bitflags 1.3.2",
70  "bytes",
71  "futures-core",
72  "futures-sink",
73  "log",
74  "memchr",
75  "pin-project-lite",
76  "tokio",
77  "tokio-util 0.7.4",
78 ]
79
80 [[package]]
81 name = "actix-cors"
82 version = "0.6.4"
83 source = "registry+https://github.com/rust-lang/crates.io-index"
84 checksum = "b340e9cfa5b08690aae90fb61beb44e9b06f44fe3d0f93781aaa58cfba86245e"
85 dependencies = [
86  "actix-utils",
87  "actix-web",
88  "derive_more",
89  "futures-util",
90  "log",
91  "once_cell",
92  "smallvec",
93 ]
94
95 [[package]]
96 name = "actix-form-data"
97 version = "0.7.0-beta.2"
98 source = "registry+https://github.com/rust-lang/crates.io-index"
99 checksum = "9f2c32091d556a5064062087511db68526848dfa3de83c5262156431d27df7a4"
100 dependencies = [
101  "actix-multipart",
102  "actix-rt",
103  "actix-web",
104  "futures-util",
105  "mime",
106  "thiserror",
107  "tokio",
108  "tracing",
109 ]
110
111 [[package]]
112 name = "actix-http"
113 version = "3.3.1"
114 source = "registry+https://github.com/rust-lang/crates.io-index"
115 checksum = "c2079246596c18b4a33e274ae10c0e50613f4d32a4198e09c7b93771013fed74"
116 dependencies = [
117  "actix-codec",
118  "actix-rt",
119  "actix-service",
120  "actix-tls",
121  "actix-utils",
122  "ahash 0.8.3",
123  "base64 0.21.2",
124  "bitflags 1.3.2",
125  "brotli",
126  "bytes",
127  "bytestring",
128  "derive_more",
129  "encoding_rs",
130  "flate2",
131  "futures-core",
132  "h2",
133  "http",
134  "httparse",
135  "httpdate",
136  "itoa",
137  "language-tags",
138  "local-channel",
139  "mime",
140  "percent-encoding",
141  "pin-project-lite",
142  "rand 0.8.5",
143  "sha1",
144  "smallvec",
145  "tokio",
146  "tokio-util 0.7.4",
147  "tracing",
148  "zstd",
149 ]
150
151 [[package]]
152 name = "actix-macros"
153 version = "0.2.3"
154 source = "registry+https://github.com/rust-lang/crates.io-index"
155 checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
156 dependencies = [
157  "quote",
158  "syn 1.0.103",
159 ]
160
161 [[package]]
162 name = "actix-multipart"
163 version = "0.6.0"
164 source = "registry+https://github.com/rust-lang/crates.io-index"
165 checksum = "dee489e3c01eae4d1c35b03c4493f71cb40d93f66b14558feb1b1a807671cc4e"
166 dependencies = [
167  "actix-utils",
168  "actix-web",
169  "bytes",
170  "derive_more",
171  "futures-core",
172  "futures-util",
173  "httparse",
174  "local-waker",
175  "log",
176  "memchr",
177  "mime",
178  "serde",
179  "serde_json",
180  "serde_plain",
181  "tokio",
182 ]
183
184 [[package]]
185 name = "actix-router"
186 version = "0.5.1"
187 source = "registry+https://github.com/rust-lang/crates.io-index"
188 checksum = "d66ff4d247d2b160861fa2866457e85706833527840e4133f8f49aa423a38799"
189 dependencies = [
190  "bytestring",
191  "http",
192  "regex",
193  "serde",
194  "tracing",
195 ]
196
197 [[package]]
198 name = "actix-rt"
199 version = "2.8.0"
200 source = "registry+https://github.com/rust-lang/crates.io-index"
201 checksum = "15265b6b8e2347670eb363c47fc8c75208b4a4994b27192f345fcbe707804f3e"
202 dependencies = [
203  "actix-macros",
204  "futures-core",
205  "tokio",
206 ]
207
208 [[package]]
209 name = "actix-server"
210 version = "2.1.1"
211 source = "registry+https://github.com/rust-lang/crates.io-index"
212 checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824"
213 dependencies = [
214  "actix-rt",
215  "actix-service",
216  "actix-utils",
217  "futures-core",
218  "futures-util",
219  "mio",
220  "num_cpus",
221  "socket2 0.4.9",
222  "tokio",
223  "tracing",
224 ]
225
226 [[package]]
227 name = "actix-service"
228 version = "2.0.2"
229 source = "registry+https://github.com/rust-lang/crates.io-index"
230 checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
231 dependencies = [
232  "futures-core",
233  "paste",
234  "pin-project-lite",
235 ]
236
237 [[package]]
238 name = "actix-tls"
239 version = "3.0.3"
240 source = "registry+https://github.com/rust-lang/crates.io-index"
241 checksum = "9fde0cf292f7cdc7f070803cb9a0d45c018441321a78b1042ffbbb81ec333297"
242 dependencies = [
243  "actix-codec",
244  "actix-rt",
245  "actix-service",
246  "actix-utils",
247  "futures-core",
248  "http",
249  "log",
250  "pin-project-lite",
251  "tokio-rustls 0.23.4",
252  "tokio-util 0.7.4",
253  "webpki-roots",
254 ]
255
256 [[package]]
257 name = "actix-utils"
258 version = "3.0.1"
259 source = "registry+https://github.com/rust-lang/crates.io-index"
260 checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
261 dependencies = [
262  "local-waker",
263  "pin-project-lite",
264 ]
265
266 [[package]]
267 name = "actix-web"
268 version = "4.3.1"
269 source = "registry+https://github.com/rust-lang/crates.io-index"
270 checksum = "cd3cb42f9566ab176e1ef0b8b3a896529062b4efc6be0123046095914c4c1c96"
271 dependencies = [
272  "actix-codec",
273  "actix-http",
274  "actix-macros",
275  "actix-router",
276  "actix-rt",
277  "actix-server",
278  "actix-service",
279  "actix-tls",
280  "actix-utils",
281  "actix-web-codegen",
282  "ahash 0.7.6",
283  "bytes",
284  "bytestring",
285  "cfg-if",
286  "cookie",
287  "derive_more",
288  "encoding_rs",
289  "futures-core",
290  "futures-util",
291  "http",
292  "itoa",
293  "language-tags",
294  "log",
295  "mime",
296  "once_cell",
297  "pin-project-lite",
298  "regex",
299  "serde",
300  "serde_json",
301  "serde_urlencoded",
302  "smallvec",
303  "socket2 0.4.9",
304  "time 0.3.15",
305  "url",
306 ]
307
308 [[package]]
309 name = "actix-web-codegen"
310 version = "4.2.0"
311 source = "registry+https://github.com/rust-lang/crates.io-index"
312 checksum = "2262160a7ae29e3415554a3f1fc04c764b1540c116aa524683208078b7a75bc9"
313 dependencies = [
314  "actix-router",
315  "proc-macro2",
316  "quote",
317  "syn 1.0.103",
318 ]
319
320 [[package]]
321 name = "addr2line"
322 version = "0.19.0"
323 source = "registry+https://github.com/rust-lang/crates.io-index"
324 checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
325 dependencies = [
326  "gimli",
327 ]
328
329 [[package]]
330 name = "adler"
331 version = "1.0.2"
332 source = "registry+https://github.com/rust-lang/crates.io-index"
333 checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
334
335 [[package]]
336 name = "ahash"
337 version = "0.7.6"
338 source = "registry+https://github.com/rust-lang/crates.io-index"
339 checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
340 dependencies = [
341  "getrandom 0.2.8",
342  "once_cell",
343  "version_check",
344 ]
345
346 [[package]]
347 name = "ahash"
348 version = "0.8.3"
349 source = "registry+https://github.com/rust-lang/crates.io-index"
350 checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
351 dependencies = [
352  "cfg-if",
353  "getrandom 0.2.8",
354  "once_cell",
355  "version_check",
356 ]
357
358 [[package]]
359 name = "aho-corasick"
360 version = "1.0.2"
361 source = "registry+https://github.com/rust-lang/crates.io-index"
362 checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
363 dependencies = [
364  "memchr",
365 ]
366
367 [[package]]
368 name = "alloc-no-stdlib"
369 version = "2.0.4"
370 source = "registry+https://github.com/rust-lang/crates.io-index"
371 checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
372
373 [[package]]
374 name = "alloc-stdlib"
375 version = "0.2.2"
376 source = "registry+https://github.com/rust-lang/crates.io-index"
377 checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
378 dependencies = [
379  "alloc-no-stdlib",
380 ]
381
382 [[package]]
383 name = "android-tzdata"
384 version = "0.1.1"
385 source = "registry+https://github.com/rust-lang/crates.io-index"
386 checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
387
388 [[package]]
389 name = "android_system_properties"
390 version = "0.1.5"
391 source = "registry+https://github.com/rust-lang/crates.io-index"
392 checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
393 dependencies = [
394  "libc",
395 ]
396
397 [[package]]
398 name = "anyhow"
399 version = "1.0.71"
400 source = "registry+https://github.com/rust-lang/crates.io-index"
401 checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
402 dependencies = [
403  "backtrace",
404 ]
405
406 [[package]]
407 name = "argparse"
408 version = "0.2.2"
409 source = "registry+https://github.com/rust-lang/crates.io-index"
410 checksum = "3f8ebf5827e4ac4fd5946560e6a99776ea73b596d80898f357007317a7141e47"
411
412 [[package]]
413 name = "arrayvec"
414 version = "0.5.2"
415 source = "registry+https://github.com/rust-lang/crates.io-index"
416 checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
417
418 [[package]]
419 name = "assert-json-diff"
420 version = "2.0.2"
421 source = "registry+https://github.com/rust-lang/crates.io-index"
422 checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
423 dependencies = [
424  "serde",
425  "serde_json",
426 ]
427
428 [[package]]
429 name = "ast_node"
430 version = "0.8.8"
431 source = "registry+https://github.com/rust-lang/crates.io-index"
432 checksum = "70151a5226578411132d798aa248df45b30aa34aea2e580628870b4d87be717b"
433 dependencies = [
434  "darling 0.13.4",
435  "pmutil",
436  "proc-macro2",
437  "quote",
438  "swc_macros_common",
439  "syn 1.0.103",
440 ]
441
442 [[package]]
443 name = "async-stream"
444 version = "0.3.3"
445 source = "registry+https://github.com/rust-lang/crates.io-index"
446 checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e"
447 dependencies = [
448  "async-stream-impl",
449  "futures-core",
450 ]
451
452 [[package]]
453 name = "async-stream-impl"
454 version = "0.3.3"
455 source = "registry+https://github.com/rust-lang/crates.io-index"
456 checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27"
457 dependencies = [
458  "proc-macro2",
459  "quote",
460  "syn 1.0.103",
461 ]
462
463 [[package]]
464 name = "async-trait"
465 version = "0.1.68"
466 source = "registry+https://github.com/rust-lang/crates.io-index"
467 checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
468 dependencies = [
469  "proc-macro2",
470  "quote",
471  "syn 2.0.18",
472 ]
473
474 [[package]]
475 name = "atom_syndication"
476 version = "0.12.1"
477 source = "registry+https://github.com/rust-lang/crates.io-index"
478 checksum = "ca96cb38e3d8236f1573a84bbc55e130bd1ae07df770e36d0cf221ea7a50e36c"
479 dependencies = [
480  "chrono",
481  "derive_builder",
482  "diligent-date-parser",
483  "never",
484  "quick-xml 0.28.2",
485 ]
486
487 [[package]]
488 name = "autocfg"
489 version = "1.1.0"
490 source = "registry+https://github.com/rust-lang/crates.io-index"
491 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
492
493 [[package]]
494 name = "awc"
495 version = "3.0.1"
496 source = "registry+https://github.com/rust-lang/crates.io-index"
497 checksum = "80ca7ff88063086d2e2c70b9f3b29b2fcd999bac68ac21731e66781970d68519"
498 dependencies = [
499  "actix-codec",
500  "actix-http",
501  "actix-rt",
502  "actix-service",
503  "actix-tls",
504  "actix-utils",
505  "ahash 0.7.6",
506  "base64 0.13.1",
507  "bytes",
508  "cfg-if",
509  "derive_more",
510  "futures-core",
511  "futures-util",
512  "h2",
513  "http",
514  "itoa",
515  "log",
516  "mime",
517  "percent-encoding",
518  "pin-project-lite",
519  "rand 0.8.5",
520  "rustls 0.20.7",
521  "serde",
522  "serde_json",
523  "serde_urlencoded",
524  "tokio",
525 ]
526
527 [[package]]
528 name = "axum"
529 version = "0.5.17"
530 source = "registry+https://github.com/rust-lang/crates.io-index"
531 checksum = "acee9fd5073ab6b045a275b3e709c163dd36c90685219cb21804a147b58dba43"
532 dependencies = [
533  "async-trait",
534  "axum-core 0.2.9",
535  "bitflags 1.3.2",
536  "bytes",
537  "futures-util",
538  "http",
539  "http-body",
540  "hyper",
541  "itoa",
542  "matchit 0.5.0",
543  "memchr",
544  "mime",
545  "percent-encoding",
546  "pin-project-lite",
547  "serde",
548  "sync_wrapper",
549  "tokio",
550  "tower",
551  "tower-http",
552  "tower-layer",
553  "tower-service",
554 ]
555
556 [[package]]
557 name = "axum"
558 version = "0.6.18"
559 source = "registry+https://github.com/rust-lang/crates.io-index"
560 checksum = "f8175979259124331c1d7bf6586ee7e0da434155e4b2d48ec2c8386281d8df39"
561 dependencies = [
562  "async-trait",
563  "axum-core 0.3.4",
564  "bitflags 1.3.2",
565  "bytes",
566  "futures-util",
567  "http",
568  "http-body",
569  "hyper",
570  "itoa",
571  "matchit 0.7.0",
572  "memchr",
573  "mime",
574  "percent-encoding",
575  "pin-project-lite",
576  "rustversion",
577  "serde",
578  "sync_wrapper",
579  "tower",
580  "tower-layer",
581  "tower-service",
582 ]
583
584 [[package]]
585 name = "axum-core"
586 version = "0.2.9"
587 source = "registry+https://github.com/rust-lang/crates.io-index"
588 checksum = "37e5939e02c56fecd5c017c37df4238c0a839fa76b7f97acdd7efb804fd181cc"
589 dependencies = [
590  "async-trait",
591  "bytes",
592  "futures-util",
593  "http",
594  "http-body",
595  "mime",
596  "tower-layer",
597  "tower-service",
598 ]
599
600 [[package]]
601 name = "axum-core"
602 version = "0.3.4"
603 source = "registry+https://github.com/rust-lang/crates.io-index"
604 checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
605 dependencies = [
606  "async-trait",
607  "bytes",
608  "futures-util",
609  "http",
610  "http-body",
611  "mime",
612  "rustversion",
613  "tower-layer",
614  "tower-service",
615 ]
616
617 [[package]]
618 name = "backtrace"
619 version = "0.3.67"
620 source = "registry+https://github.com/rust-lang/crates.io-index"
621 checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
622 dependencies = [
623  "addr2line",
624  "cc",
625  "cfg-if",
626  "libc",
627  "miniz_oxide 0.6.2",
628  "object",
629  "rustc-demangle",
630 ]
631
632 [[package]]
633 name = "base32"
634 version = "0.4.0"
635 source = "registry+https://github.com/rust-lang/crates.io-index"
636 checksum = "23ce669cd6c8588f79e15cf450314f9638f967fc5770ff1c7c1deb0925ea7cfa"
637
638 [[package]]
639 name = "base64"
640 version = "0.13.1"
641 source = "registry+https://github.com/rust-lang/crates.io-index"
642 checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
643
644 [[package]]
645 name = "base64"
646 version = "0.21.2"
647 source = "registry+https://github.com/rust-lang/crates.io-index"
648 checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
649
650 [[package]]
651 name = "bcrypt"
652 version = "0.13.0"
653 source = "registry+https://github.com/rust-lang/crates.io-index"
654 checksum = "a7e7c93a3fb23b2fdde989b2c9ec4dd153063ec81f408507f84c090cd91c6641"
655 dependencies = [
656  "base64 0.13.1",
657  "blowfish",
658  "getrandom 0.2.8",
659  "zeroize",
660 ]
661
662 [[package]]
663 name = "better_scoped_tls"
664 version = "0.1.0"
665 source = "registry+https://github.com/rust-lang/crates.io-index"
666 checksum = "b73e8ecdec39e98aa3b19e8cd0b8ed8f77ccb86a6b0b2dc7cd86d105438a2123"
667 dependencies = [
668  "scoped-tls",
669 ]
670
671 [[package]]
672 name = "bincode"
673 version = "1.3.3"
674 source = "registry+https://github.com/rust-lang/crates.io-index"
675 checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
676 dependencies = [
677  "serde",
678 ]
679
680 [[package]]
681 name = "bit-set"
682 version = "0.5.3"
683 source = "registry+https://github.com/rust-lang/crates.io-index"
684 checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
685 dependencies = [
686  "bit-vec",
687 ]
688
689 [[package]]
690 name = "bit-vec"
691 version = "0.6.3"
692 source = "registry+https://github.com/rust-lang/crates.io-index"
693 checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
694
695 [[package]]
696 name = "bitflags"
697 version = "1.3.2"
698 source = "registry+https://github.com/rust-lang/crates.io-index"
699 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
700
701 [[package]]
702 name = "bitflags"
703 version = "2.3.1"
704 source = "registry+https://github.com/rust-lang/crates.io-index"
705 checksum = "6776fc96284a0bb647b615056fc496d1fe1644a7ab01829818a6d91cae888b84"
706
707 [[package]]
708 name = "bitvec"
709 version = "0.19.6"
710 source = "registry+https://github.com/rust-lang/crates.io-index"
711 checksum = "55f93d0ef3363c364d5976646a38f04cf67cfe1d4c8d160cdea02cab2c116b33"
712 dependencies = [
713  "funty",
714  "radium",
715  "tap",
716  "wyz",
717 ]
718
719 [[package]]
720 name = "block-buffer"
721 version = "0.10.3"
722 source = "registry+https://github.com/rust-lang/crates.io-index"
723 checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
724 dependencies = [
725  "generic-array",
726 ]
727
728 [[package]]
729 name = "blowfish"
730 version = "0.9.1"
731 source = "registry+https://github.com/rust-lang/crates.io-index"
732 checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
733 dependencies = [
734  "byteorder",
735  "cipher",
736 ]
737
738 [[package]]
739 name = "brotli"
740 version = "3.3.4"
741 source = "registry+https://github.com/rust-lang/crates.io-index"
742 checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
743 dependencies = [
744  "alloc-no-stdlib",
745  "alloc-stdlib",
746  "brotli-decompressor",
747 ]
748
749 [[package]]
750 name = "brotli-decompressor"
751 version = "2.3.4"
752 source = "registry+https://github.com/rust-lang/crates.io-index"
753 checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744"
754 dependencies = [
755  "alloc-no-stdlib",
756  "alloc-stdlib",
757 ]
758
759 [[package]]
760 name = "bumpalo"
761 version = "3.11.1"
762 source = "registry+https://github.com/rust-lang/crates.io-index"
763 checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
764
765 [[package]]
766 name = "bytemuck"
767 version = "1.12.1"
768 source = "registry+https://github.com/rust-lang/crates.io-index"
769 checksum = "2f5715e491b5a1598fc2bef5a606847b5dc1d48ea625bd3c02c00de8285591da"
770
771 [[package]]
772 name = "byteorder"
773 version = "1.4.3"
774 source = "registry+https://github.com/rust-lang/crates.io-index"
775 checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
776
777 [[package]]
778 name = "bytes"
779 version = "1.4.0"
780 source = "registry+https://github.com/rust-lang/crates.io-index"
781 checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
782
783 [[package]]
784 name = "bytestring"
785 version = "1.1.0"
786 source = "registry+https://github.com/rust-lang/crates.io-index"
787 checksum = "86b6a75fd3048808ef06af5cd79712be8111960adaf89d90250974b38fc3928a"
788 dependencies = [
789  "bytes",
790 ]
791
792 [[package]]
793 name = "captcha"
794 version = "0.0.9"
795 source = "registry+https://github.com/rust-lang/crates.io-index"
796 checksum = "db21780337b425f968a2c3efa842eeaa4fe53d2bcb1eb27d2877460a862fb0ab"
797 dependencies = [
798  "base64 0.13.1",
799  "hound",
800  "image",
801  "lodepng",
802  "rand 0.8.5",
803  "serde_json",
804 ]
805
806 [[package]]
807 name = "cc"
808 version = "1.0.73"
809 source = "registry+https://github.com/rust-lang/crates.io-index"
810 checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
811 dependencies = [
812  "jobserver",
813 ]
814
815 [[package]]
816 name = "cesu8"
817 version = "1.1.0"
818 source = "registry+https://github.com/rust-lang/crates.io-index"
819 checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
820
821 [[package]]
822 name = "cfg-if"
823 version = "1.0.0"
824 source = "registry+https://github.com/rust-lang/crates.io-index"
825 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
826
827 [[package]]
828 name = "chrono"
829 version = "0.4.26"
830 source = "registry+https://github.com/rust-lang/crates.io-index"
831 checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5"
832 dependencies = [
833  "android-tzdata",
834  "iana-time-zone",
835  "js-sys",
836  "num-traits",
837  "serde",
838  "time 0.1.44",
839  "wasm-bindgen",
840  "winapi",
841 ]
842
843 [[package]]
844 name = "cipher"
845 version = "0.4.3"
846 source = "registry+https://github.com/rust-lang/crates.io-index"
847 checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e"
848 dependencies = [
849  "crypto-common",
850  "inout",
851 ]
852
853 [[package]]
854 name = "clap"
855 version = "4.0.32"
856 source = "registry+https://github.com/rust-lang/crates.io-index"
857 checksum = "a7db700bc935f9e43e88d00b0850dae18a63773cfbec6d8e070fccf7fef89a39"
858 dependencies = [
859  "bitflags 1.3.2",
860  "clap_derive",
861  "clap_lex",
862  "is-terminal",
863  "once_cell",
864  "strsim",
865  "termcolor",
866 ]
867
868 [[package]]
869 name = "clap_derive"
870 version = "4.0.21"
871 source = "registry+https://github.com/rust-lang/crates.io-index"
872 checksum = "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014"
873 dependencies = [
874  "heck 0.4.0",
875  "proc-macro-error",
876  "proc-macro2",
877  "quote",
878  "syn 1.0.103",
879 ]
880
881 [[package]]
882 name = "clap_lex"
883 version = "0.3.0"
884 source = "registry+https://github.com/rust-lang/crates.io-index"
885 checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8"
886 dependencies = [
887  "os_str_bytes",
888 ]
889
890 [[package]]
891 name = "clokwerk"
892 version = "0.3.5"
893 source = "registry+https://github.com/rust-lang/crates.io-index"
894 checksum = "7a99373edf782eec8fde0d52bd2f60e4ae5eaca31f1d2cf5aec68243849a37a9"
895 dependencies = [
896  "chrono",
897 ]
898
899 [[package]]
900 name = "codespan-reporting"
901 version = "0.11.1"
902 source = "registry+https://github.com/rust-lang/crates.io-index"
903 checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
904 dependencies = [
905  "termcolor",
906  "unicode-width",
907 ]
908
909 [[package]]
910 name = "color-eyre"
911 version = "0.6.2"
912 source = "registry+https://github.com/rust-lang/crates.io-index"
913 checksum = "5a667583cca8c4f8436db8de46ea8233c42a7d9ae424a82d338f2e4675229204"
914 dependencies = [
915  "backtrace",
916  "color-spantrace",
917  "eyre",
918  "indenter",
919  "once_cell",
920  "owo-colors",
921  "tracing-error",
922 ]
923
924 [[package]]
925 name = "color-spantrace"
926 version = "0.2.0"
927 source = "registry+https://github.com/rust-lang/crates.io-index"
928 checksum = "1ba75b3d9449ecdccb27ecbc479fdc0b87fa2dd43d2f8298f9bf0e59aacc8dce"
929 dependencies = [
930  "once_cell",
931  "owo-colors",
932  "tracing-core",
933  "tracing-error",
934 ]
935
936 [[package]]
937 name = "color_quant"
938 version = "1.1.0"
939 source = "registry+https://github.com/rust-lang/crates.io-index"
940 checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
941
942 [[package]]
943 name = "combine"
944 version = "4.6.6"
945 source = "registry+https://github.com/rust-lang/crates.io-index"
946 checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
947 dependencies = [
948  "bytes",
949  "memchr",
950 ]
951
952 [[package]]
953 name = "config"
954 version = "0.13.3"
955 source = "registry+https://github.com/rust-lang/crates.io-index"
956 checksum = "d379af7f68bfc21714c6c7dea883544201741d2ce8274bb12fa54f89507f52a7"
957 dependencies = [
958  "async-trait",
959  "json5",
960  "lazy_static",
961  "nom 7.1.1",
962  "pathdiff",
963  "ron",
964  "rust-ini",
965  "serde",
966  "serde_json",
967  "toml 0.5.9",
968  "yaml-rust",
969 ]
970
971 [[package]]
972 name = "console-api"
973 version = "0.5.0"
974 source = "registry+https://github.com/rust-lang/crates.io-index"
975 checksum = "c2895653b4d9f1538a83970077cb01dfc77a4810524e51a110944688e916b18e"
976 dependencies = [
977  "prost 0.11.0",
978  "prost-types 0.11.1",
979  "tonic 0.9.2",
980  "tracing-core",
981 ]
982
983 [[package]]
984 name = "console-subscriber"
985 version = "0.1.9"
986 source = "registry+https://github.com/rust-lang/crates.io-index"
987 checksum = "57ab2224a0311582eb03adba4caaf18644f7b1f10a760803a803b9b605187fc7"
988 dependencies = [
989  "console-api",
990  "crossbeam-channel",
991  "crossbeam-utils",
992  "futures",
993  "hdrhistogram",
994  "humantime",
995  "prost-types 0.11.1",
996  "serde",
997  "serde_json",
998  "thread_local",
999  "tokio",
1000  "tokio-stream",
1001  "tonic 0.9.2",
1002  "tracing",
1003  "tracing-core",
1004  "tracing-subscriber",
1005 ]
1006
1007 [[package]]
1008 name = "const_format"
1009 version = "0.2.31"
1010 source = "registry+https://github.com/rust-lang/crates.io-index"
1011 checksum = "c990efc7a285731f9a4378d81aff2f0e85a2c8781a05ef0f8baa8dac54d0ff48"
1012 dependencies = [
1013  "const_format_proc_macros",
1014 ]
1015
1016 [[package]]
1017 name = "const_format_proc_macros"
1018 version = "0.2.31"
1019 source = "registry+https://github.com/rust-lang/crates.io-index"
1020 checksum = "e026b6ce194a874cb9cf32cd5772d1ef9767cc8fcb5765948d74f37a9d8b2bf6"
1021 dependencies = [
1022  "proc-macro2",
1023  "quote",
1024  "unicode-xid",
1025 ]
1026
1027 [[package]]
1028 name = "constant_time_eq"
1029 version = "0.2.4"
1030 source = "registry+https://github.com/rust-lang/crates.io-index"
1031 checksum = "f3ad85c1f65dc7b37604eb0e89748faf0b9653065f2a8ef69f96a687ec1e9279"
1032
1033 [[package]]
1034 name = "convert_case"
1035 version = "0.4.0"
1036 source = "registry+https://github.com/rust-lang/crates.io-index"
1037 checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
1038
1039 [[package]]
1040 name = "cookie"
1041 version = "0.16.2"
1042 source = "registry+https://github.com/rust-lang/crates.io-index"
1043 checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
1044 dependencies = [
1045  "percent-encoding",
1046  "time 0.3.15",
1047  "version_check",
1048 ]
1049
1050 [[package]]
1051 name = "core-foundation"
1052 version = "0.9.3"
1053 source = "registry+https://github.com/rust-lang/crates.io-index"
1054 checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
1055 dependencies = [
1056  "core-foundation-sys",
1057  "libc",
1058 ]
1059
1060 [[package]]
1061 name = "core-foundation-sys"
1062 version = "0.8.3"
1063 source = "registry+https://github.com/rust-lang/crates.io-index"
1064 checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
1065
1066 [[package]]
1067 name = "cpufeatures"
1068 version = "0.2.5"
1069 source = "registry+https://github.com/rust-lang/crates.io-index"
1070 checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
1071 dependencies = [
1072  "libc",
1073 ]
1074
1075 [[package]]
1076 name = "crc32fast"
1077 version = "1.3.2"
1078 source = "registry+https://github.com/rust-lang/crates.io-index"
1079 checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
1080 dependencies = [
1081  "cfg-if",
1082 ]
1083
1084 [[package]]
1085 name = "crossbeam-channel"
1086 version = "0.5.6"
1087 source = "registry+https://github.com/rust-lang/crates.io-index"
1088 checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
1089 dependencies = [
1090  "cfg-if",
1091  "crossbeam-utils",
1092 ]
1093
1094 [[package]]
1095 name = "crossbeam-epoch"
1096 version = "0.9.13"
1097 source = "registry+https://github.com/rust-lang/crates.io-index"
1098 checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a"
1099 dependencies = [
1100  "autocfg",
1101  "cfg-if",
1102  "crossbeam-utils",
1103  "memoffset",
1104  "scopeguard",
1105 ]
1106
1107 [[package]]
1108 name = "crossbeam-utils"
1109 version = "0.8.12"
1110 source = "registry+https://github.com/rust-lang/crates.io-index"
1111 checksum = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac"
1112 dependencies = [
1113  "cfg-if",
1114 ]
1115
1116 [[package]]
1117 name = "crypto-common"
1118 version = "0.1.6"
1119 source = "registry+https://github.com/rust-lang/crates.io-index"
1120 checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
1121 dependencies = [
1122  "generic-array",
1123  "typenum",
1124 ]
1125
1126 [[package]]
1127 name = "cxx"
1128 version = "1.0.80"
1129 source = "registry+https://github.com/rust-lang/crates.io-index"
1130 checksum = "6b7d4e43b25d3c994662706a1d4fcfc32aaa6afd287502c111b237093bb23f3a"
1131 dependencies = [
1132  "cc",
1133  "cxxbridge-flags",
1134  "cxxbridge-macro",
1135  "link-cplusplus",
1136 ]
1137
1138 [[package]]
1139 name = "cxx-build"
1140 version = "1.0.80"
1141 source = "registry+https://github.com/rust-lang/crates.io-index"
1142 checksum = "84f8829ddc213e2c1368e51a2564c552b65a8cb6a28f31e576270ac81d5e5827"
1143 dependencies = [
1144  "cc",
1145  "codespan-reporting",
1146  "once_cell",
1147  "proc-macro2",
1148  "quote",
1149  "scratch",
1150  "syn 1.0.103",
1151 ]
1152
1153 [[package]]
1154 name = "cxxbridge-flags"
1155 version = "1.0.80"
1156 source = "registry+https://github.com/rust-lang/crates.io-index"
1157 checksum = "e72537424b474af1460806647c41d4b6d35d09ef7fe031c5c2fa5766047cc56a"
1158
1159 [[package]]
1160 name = "cxxbridge-macro"
1161 version = "1.0.80"
1162 source = "registry+https://github.com/rust-lang/crates.io-index"
1163 checksum = "309e4fb93eed90e1e14bea0da16b209f81813ba9fc7830c20ed151dd7bc0a4d7"
1164 dependencies = [
1165  "proc-macro2",
1166  "quote",
1167  "syn 1.0.103",
1168 ]
1169
1170 [[package]]
1171 name = "darling"
1172 version = "0.13.4"
1173 source = "registry+https://github.com/rust-lang/crates.io-index"
1174 checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c"
1175 dependencies = [
1176  "darling_core 0.13.4",
1177  "darling_macro 0.13.4",
1178 ]
1179
1180 [[package]]
1181 name = "darling"
1182 version = "0.14.1"
1183 source = "registry+https://github.com/rust-lang/crates.io-index"
1184 checksum = "4529658bdda7fd6769b8614be250cdcfc3aeb0ee72fe66f9e41e5e5eb73eac02"
1185 dependencies = [
1186  "darling_core 0.14.1",
1187  "darling_macro 0.14.1",
1188 ]
1189
1190 [[package]]
1191 name = "darling_core"
1192 version = "0.13.4"
1193 source = "registry+https://github.com/rust-lang/crates.io-index"
1194 checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
1195 dependencies = [
1196  "fnv",
1197  "ident_case",
1198  "proc-macro2",
1199  "quote",
1200  "strsim",
1201  "syn 1.0.103",
1202 ]
1203
1204 [[package]]
1205 name = "darling_core"
1206 version = "0.14.1"
1207 source = "registry+https://github.com/rust-lang/crates.io-index"
1208 checksum = "649c91bc01e8b1eac09fb91e8dbc7d517684ca6be8ebc75bb9cafc894f9fdb6f"
1209 dependencies = [
1210  "fnv",
1211  "ident_case",
1212  "proc-macro2",
1213  "quote",
1214  "strsim",
1215  "syn 1.0.103",
1216 ]
1217
1218 [[package]]
1219 name = "darling_macro"
1220 version = "0.13.4"
1221 source = "registry+https://github.com/rust-lang/crates.io-index"
1222 checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
1223 dependencies = [
1224  "darling_core 0.13.4",
1225  "quote",
1226  "syn 1.0.103",
1227 ]
1228
1229 [[package]]
1230 name = "darling_macro"
1231 version = "0.14.1"
1232 source = "registry+https://github.com/rust-lang/crates.io-index"
1233 checksum = "ddfc69c5bfcbd2fc09a0f38451d2daf0e372e367986a83906d1b0dbc88134fb5"
1234 dependencies = [
1235  "darling_core 0.14.1",
1236  "quote",
1237  "syn 1.0.103",
1238 ]
1239
1240 [[package]]
1241 name = "dashmap"
1242 version = "5.4.0"
1243 source = "registry+https://github.com/rust-lang/crates.io-index"
1244 checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
1245 dependencies = [
1246  "cfg-if",
1247  "hashbrown",
1248  "lock_api",
1249  "once_cell",
1250  "parking_lot_core 0.9.4",
1251 ]
1252
1253 [[package]]
1254 name = "deadpool"
1255 version = "0.9.5"
1256 source = "registry+https://github.com/rust-lang/crates.io-index"
1257 checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e"
1258 dependencies = [
1259  "async-trait",
1260  "deadpool-runtime",
1261  "num_cpus",
1262  "retain_mut",
1263  "tokio",
1264 ]
1265
1266 [[package]]
1267 name = "deadpool-runtime"
1268 version = "0.1.2"
1269 source = "registry+https://github.com/rust-lang/crates.io-index"
1270 checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1"
1271 dependencies = [
1272  "tokio",
1273 ]
1274
1275 [[package]]
1276 name = "debug_unreachable"
1277 version = "0.1.1"
1278 source = "registry+https://github.com/rust-lang/crates.io-index"
1279 checksum = "9a032eac705ca39214d169f83e3d3da290af06d8d1d344d1baad2fd002dca4b3"
1280 dependencies = [
1281  "unreachable",
1282 ]
1283
1284 [[package]]
1285 name = "deno_ast"
1286 version = "0.20.0"
1287 source = "registry+https://github.com/rust-lang/crates.io-index"
1288 checksum = "322f52615649f4f096eed78ec8e2a7eb68ff0bf5f330d59302c5479c7a8fa158"
1289 dependencies = [
1290  "dprint-swc-ext",
1291  "serde",
1292  "swc_atoms",
1293  "swc_common",
1294  "swc_ecma_ast",
1295  "swc_ecma_parser",
1296  "text_lines",
1297 ]
1298
1299 [[package]]
1300 name = "derivative"
1301 version = "2.2.0"
1302 source = "registry+https://github.com/rust-lang/crates.io-index"
1303 checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
1304 dependencies = [
1305  "proc-macro2",
1306  "quote",
1307  "syn 1.0.103",
1308 ]
1309
1310 [[package]]
1311 name = "derive_builder"
1312 version = "0.12.0"
1313 source = "registry+https://github.com/rust-lang/crates.io-index"
1314 checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8"
1315 dependencies = [
1316  "derive_builder_macro",
1317 ]
1318
1319 [[package]]
1320 name = "derive_builder_core"
1321 version = "0.12.0"
1322 source = "registry+https://github.com/rust-lang/crates.io-index"
1323 checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f"
1324 dependencies = [
1325  "darling 0.14.1",
1326  "proc-macro2",
1327  "quote",
1328  "syn 1.0.103",
1329 ]
1330
1331 [[package]]
1332 name = "derive_builder_macro"
1333 version = "0.12.0"
1334 source = "registry+https://github.com/rust-lang/crates.io-index"
1335 checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e"
1336 dependencies = [
1337  "derive_builder_core",
1338  "syn 1.0.103",
1339 ]
1340
1341 [[package]]
1342 name = "derive_more"
1343 version = "0.99.17"
1344 source = "registry+https://github.com/rust-lang/crates.io-index"
1345 checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
1346 dependencies = [
1347  "convert_case",
1348  "proc-macro2",
1349  "quote",
1350  "rustc_version",
1351  "syn 1.0.103",
1352 ]
1353
1354 [[package]]
1355 name = "deser-hjson"
1356 version = "1.0.2"
1357 source = "registry+https://github.com/rust-lang/crates.io-index"
1358 checksum = "1f486ff51f3ecdf9364736375a4b358b6eb9f02555d5324fa4837c00b5aa23f5"
1359 dependencies = [
1360  "serde",
1361 ]
1362
1363 [[package]]
1364 name = "diesel"
1365 version = "2.1.0"
1366 source = "registry+https://github.com/rust-lang/crates.io-index"
1367 checksum = "f7a532c1f99a0f596f6960a60d1e119e91582b24b39e2d83a190e61262c3ef0c"
1368 dependencies = [
1369  "bitflags 2.3.1",
1370  "byteorder",
1371  "chrono",
1372  "diesel_derives",
1373  "itoa",
1374  "pq-sys",
1375  "serde_json",
1376  "uuid",
1377 ]
1378
1379 [[package]]
1380 name = "diesel-async"
1381 version = "0.3.1"
1382 source = "registry+https://github.com/rust-lang/crates.io-index"
1383 checksum = "a40df24b390b2437af8b934b39acd277c246a08004afb91b8ccbe3137ffd4edc"
1384 dependencies = [
1385  "async-trait",
1386  "deadpool",
1387  "diesel",
1388  "futures-util",
1389  "scoped-futures",
1390  "tokio",
1391  "tokio-postgres",
1392 ]
1393
1394 [[package]]
1395 name = "diesel-derive-enum"
1396 version = "2.1.0"
1397 source = "registry+https://github.com/rust-lang/crates.io-index"
1398 checksum = "81c5131a2895ef64741dad1d483f358c2a229a3a2d1b256778cdc5e146db64d4"
1399 dependencies = [
1400  "heck 0.4.0",
1401  "proc-macro2",
1402  "quote",
1403  "syn 2.0.18",
1404 ]
1405
1406 [[package]]
1407 name = "diesel-derive-newtype"
1408 version = "2.1.0"
1409 source = "registry+https://github.com/rust-lang/crates.io-index"
1410 checksum = "c7267437d5b12df60ae29bd97f8d120f1c3a6272d6f213551afa56bbb2ecfbb7"
1411 dependencies = [
1412  "proc-macro2",
1413  "quote",
1414  "syn 2.0.18",
1415 ]
1416
1417 [[package]]
1418 name = "diesel_derives"
1419 version = "2.1.0"
1420 source = "registry+https://github.com/rust-lang/crates.io-index"
1421 checksum = "74398b79d81e52e130d991afeed9c86034bb1b7735f46d2f5bf7deb261d80303"
1422 dependencies = [
1423  "diesel_table_macro_syntax",
1424  "proc-macro2",
1425  "quote",
1426  "syn 2.0.18",
1427 ]
1428
1429 [[package]]
1430 name = "diesel_ltree"
1431 version = "0.3.0"
1432 source = "registry+https://github.com/rust-lang/crates.io-index"
1433 checksum = "92d9f0b872d6c87b68a71f105802b941a7262788bf69d1bcd05654669cdbd55d"
1434 dependencies = [
1435  "byteorder",
1436  "diesel",
1437 ]
1438
1439 [[package]]
1440 name = "diesel_migrations"
1441 version = "2.1.0"
1442 source = "registry+https://github.com/rust-lang/crates.io-index"
1443 checksum = "6036b3f0120c5961381b570ee20a02432d7e2d27ea60de9578799cf9156914ac"
1444 dependencies = [
1445  "diesel",
1446  "migrations_internals",
1447  "migrations_macros",
1448 ]
1449
1450 [[package]]
1451 name = "diesel_table_macro_syntax"
1452 version = "0.1.0"
1453 source = "registry+https://github.com/rust-lang/crates.io-index"
1454 checksum = "fc5557efc453706fed5e4fa85006fe9817c224c3f480a34c7e5959fd700921c5"
1455 dependencies = [
1456  "syn 2.0.18",
1457 ]
1458
1459 [[package]]
1460 name = "digest"
1461 version = "0.10.5"
1462 source = "registry+https://github.com/rust-lang/crates.io-index"
1463 checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c"
1464 dependencies = [
1465  "block-buffer",
1466  "crypto-common",
1467  "subtle",
1468 ]
1469
1470 [[package]]
1471 name = "diligent-date-parser"
1472 version = "0.1.3"
1473 source = "registry+https://github.com/rust-lang/crates.io-index"
1474 checksum = "c2d0fd95c7c02e2d6c588c6c5628466fff9bdde4b8c6196465e087b08e792720"
1475 dependencies = [
1476  "chrono",
1477 ]
1478
1479 [[package]]
1480 name = "displaydoc"
1481 version = "0.2.4"
1482 source = "registry+https://github.com/rust-lang/crates.io-index"
1483 checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
1484 dependencies = [
1485  "proc-macro2",
1486  "quote",
1487  "syn 2.0.18",
1488 ]
1489
1490 [[package]]
1491 name = "dlv-list"
1492 version = "0.3.0"
1493 source = "registry+https://github.com/rust-lang/crates.io-index"
1494 checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
1495
1496 [[package]]
1497 name = "doku"
1498 version = "0.21.1"
1499 source = "registry+https://github.com/rust-lang/crates.io-index"
1500 checksum = "d018fadaf95088d2c12b66fe5b9d7c04a027b996c42a7b403b83fbd7a1c31531"
1501 dependencies = [
1502  "doku-derive",
1503  "serde",
1504  "serde_json",
1505  "url",
1506 ]
1507
1508 [[package]]
1509 name = "doku-derive"
1510 version = "0.21.1"
1511 source = "registry+https://github.com/rust-lang/crates.io-index"
1512 checksum = "74073dd10495ce912909655131925b0459d49363751b93676148d843097fe825"
1513 dependencies = [
1514  "darling 0.13.4",
1515  "proc-macro2",
1516  "quote",
1517  "syn 1.0.103",
1518 ]
1519
1520 [[package]]
1521 name = "downcast-rs"
1522 version = "1.2.0"
1523 source = "registry+https://github.com/rust-lang/crates.io-index"
1524 checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
1525
1526 [[package]]
1527 name = "dprint-core"
1528 version = "0.59.0"
1529 source = "registry+https://github.com/rust-lang/crates.io-index"
1530 checksum = "84600c297cc99fc088a9a916286d71915c988fa3a6f1bbc994ad9b93dde80c03"
1531 dependencies = [
1532  "anyhow",
1533  "bumpalo",
1534  "indexmap",
1535  "rustc-hash",
1536  "serde",
1537 ]
1538
1539 [[package]]
1540 name = "dprint-plugin-typescript"
1541 version = "0.77.0"
1542 source = "registry+https://github.com/rust-lang/crates.io-index"
1543 checksum = "0e301864e67893077d67258287d90441e8b22fa5e571bd31f9b43c5de10db546"
1544 dependencies = [
1545  "anyhow",
1546  "deno_ast",
1547  "dprint-core",
1548  "rustc-hash",
1549  "serde",
1550 ]
1551
1552 [[package]]
1553 name = "dprint-swc-ext"
1554 version = "0.5.0"
1555 source = "registry+https://github.com/rust-lang/crates.io-index"
1556 checksum = "f8ac3ba92d2cf3b87b8f48551d1720ff63a134545c830476aaffd8cf9d80e84e"
1557 dependencies = [
1558  "bumpalo",
1559  "num-bigint",
1560  "rustc-hash",
1561  "swc_atoms",
1562  "swc_common",
1563  "swc_ecma_ast",
1564  "swc_ecma_parser",
1565  "text_lines",
1566 ]
1567
1568 [[package]]
1569 name = "dyn-clone"
1570 version = "1.0.11"
1571 source = "registry+https://github.com/rust-lang/crates.io-index"
1572 checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30"
1573
1574 [[package]]
1575 name = "either"
1576 version = "1.8.0"
1577 source = "registry+https://github.com/rust-lang/crates.io-index"
1578 checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
1579
1580 [[package]]
1581 name = "email-encoding"
1582 version = "0.1.3"
1583 source = "registry+https://github.com/rust-lang/crates.io-index"
1584 checksum = "34dd14c63662e0206599796cd5e1ad0268ab2b9d19b868d6050d688eba2bbf98"
1585 dependencies = [
1586  "base64 0.13.1",
1587  "memchr",
1588 ]
1589
1590 [[package]]
1591 name = "email_address"
1592 version = "0.2.3"
1593 source = "registry+https://github.com/rust-lang/crates.io-index"
1594 checksum = "b1b32a7a2580c4473f10f66b512c34bdd7d33c5e3473227ca833abdb5afe4809"
1595
1596 [[package]]
1597 name = "encoding"
1598 version = "0.2.33"
1599 source = "registry+https://github.com/rust-lang/crates.io-index"
1600 checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec"
1601 dependencies = [
1602  "encoding-index-japanese",
1603  "encoding-index-korean",
1604  "encoding-index-simpchinese",
1605  "encoding-index-singlebyte",
1606  "encoding-index-tradchinese",
1607 ]
1608
1609 [[package]]
1610 name = "encoding-index-japanese"
1611 version = "1.20141219.5"
1612 source = "registry+https://github.com/rust-lang/crates.io-index"
1613 checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91"
1614 dependencies = [
1615  "encoding_index_tests",
1616 ]
1617
1618 [[package]]
1619 name = "encoding-index-korean"
1620 version = "1.20141219.5"
1621 source = "registry+https://github.com/rust-lang/crates.io-index"
1622 checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81"
1623 dependencies = [
1624  "encoding_index_tests",
1625 ]
1626
1627 [[package]]
1628 name = "encoding-index-simpchinese"
1629 version = "1.20141219.5"
1630 source = "registry+https://github.com/rust-lang/crates.io-index"
1631 checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7"
1632 dependencies = [
1633  "encoding_index_tests",
1634 ]
1635
1636 [[package]]
1637 name = "encoding-index-singlebyte"
1638 version = "1.20141219.5"
1639 source = "registry+https://github.com/rust-lang/crates.io-index"
1640 checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a"
1641 dependencies = [
1642  "encoding_index_tests",
1643 ]
1644
1645 [[package]]
1646 name = "encoding-index-tradchinese"
1647 version = "1.20141219.5"
1648 source = "registry+https://github.com/rust-lang/crates.io-index"
1649 checksum = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18"
1650 dependencies = [
1651  "encoding_index_tests",
1652 ]
1653
1654 [[package]]
1655 name = "encoding_index_tests"
1656 version = "0.1.4"
1657 source = "registry+https://github.com/rust-lang/crates.io-index"
1658 checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569"
1659
1660 [[package]]
1661 name = "encoding_rs"
1662 version = "0.8.31"
1663 source = "registry+https://github.com/rust-lang/crates.io-index"
1664 checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
1665 dependencies = [
1666  "cfg-if",
1667 ]
1668
1669 [[package]]
1670 name = "entities"
1671 version = "1.0.1"
1672 source = "registry+https://github.com/rust-lang/crates.io-index"
1673 checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
1674
1675 [[package]]
1676 name = "enum-map"
1677 version = "2.5.0"
1678 source = "registry+https://github.com/rust-lang/crates.io-index"
1679 checksum = "988f0d17a0fa38291e5f41f71ea8d46a5d5497b9054d5a759fae2cbb819f2356"
1680 dependencies = [
1681  "enum-map-derive",
1682 ]
1683
1684 [[package]]
1685 name = "enum-map-derive"
1686 version = "0.11.0"
1687 source = "registry+https://github.com/rust-lang/crates.io-index"
1688 checksum = "2a4da76b3b6116d758c7ba93f7ec6a35d2e2cf24feda76c6e38a375f4d5c59f2"
1689 dependencies = [
1690  "proc-macro2",
1691  "quote",
1692  "syn 1.0.103",
1693 ]
1694
1695 [[package]]
1696 name = "enum_delegate"
1697 version = "0.2.0"
1698 source = "registry+https://github.com/rust-lang/crates.io-index"
1699 checksum = "a8ea75f31022cba043afe037940d73684327e915f88f62478e778c3de914cd0a"
1700 dependencies = [
1701  "enum_delegate_lib",
1702  "proc-macro2",
1703  "quote",
1704  "syn 1.0.103",
1705 ]
1706
1707 [[package]]
1708 name = "enum_delegate_lib"
1709 version = "0.2.0"
1710 source = "registry+https://github.com/rust-lang/crates.io-index"
1711 checksum = "2e1f6c3800b304a6be0012039e2a45a322a093539c45ab818d9e6895a39c90fe"
1712 dependencies = [
1713  "proc-macro2",
1714  "quote",
1715  "rand 0.8.5",
1716  "syn 1.0.103",
1717 ]
1718
1719 [[package]]
1720 name = "enum_kind"
1721 version = "0.2.2"
1722 source = "registry+https://github.com/rust-lang/crates.io-index"
1723 checksum = "9895954c6ec59d897ed28a64815f2ceb57653fcaaebd317f2edc78b74f5495b6"
1724 dependencies = [
1725  "pmutil",
1726  "proc-macro2",
1727  "swc_macros_common",
1728  "syn 1.0.103",
1729 ]
1730
1731 [[package]]
1732 name = "errno"
1733 version = "0.2.8"
1734 source = "registry+https://github.com/rust-lang/crates.io-index"
1735 checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
1736 dependencies = [
1737  "errno-dragonfly",
1738  "libc",
1739  "winapi",
1740 ]
1741
1742 [[package]]
1743 name = "errno-dragonfly"
1744 version = "0.1.2"
1745 source = "registry+https://github.com/rust-lang/crates.io-index"
1746 checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
1747 dependencies = [
1748  "cc",
1749  "libc",
1750 ]
1751
1752 [[package]]
1753 name = "eyre"
1754 version = "0.6.8"
1755 source = "registry+https://github.com/rust-lang/crates.io-index"
1756 checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb"
1757 dependencies = [
1758  "indenter",
1759  "once_cell",
1760 ]
1761
1762 [[package]]
1763 name = "fallible-iterator"
1764 version = "0.2.0"
1765 source = "registry+https://github.com/rust-lang/crates.io-index"
1766 checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
1767
1768 [[package]]
1769 name = "fallible_collections"
1770 version = "0.4.5"
1771 source = "registry+https://github.com/rust-lang/crates.io-index"
1772 checksum = "c195cf4b2285d3c993eb887b4dc56b0d5728bbe1d0f9a99c0ac6bec2da3e4d85"
1773 dependencies = [
1774  "hashbrown",
1775 ]
1776
1777 [[package]]
1778 name = "fancy-regex"
1779 version = "0.7.1"
1780 source = "registry+https://github.com/rust-lang/crates.io-index"
1781 checksum = "9d6b8560a05112eb52f04b00e5d3790c0dd75d9d980eb8a122fb23b92a623ccf"
1782 dependencies = [
1783  "bit-set",
1784  "regex",
1785 ]
1786
1787 [[package]]
1788 name = "fastrand"
1789 version = "1.8.0"
1790 source = "registry+https://github.com/rust-lang/crates.io-index"
1791 checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
1792 dependencies = [
1793  "instant",
1794 ]
1795
1796 [[package]]
1797 name = "fixedbitset"
1798 version = "0.4.2"
1799 source = "registry+https://github.com/rust-lang/crates.io-index"
1800 checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
1801
1802 [[package]]
1803 name = "flate2"
1804 version = "1.0.24"
1805 source = "registry+https://github.com/rust-lang/crates.io-index"
1806 checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
1807 dependencies = [
1808  "crc32fast",
1809  "miniz_oxide 0.5.4",
1810 ]
1811
1812 [[package]]
1813 name = "fnv"
1814 version = "1.0.7"
1815 source = "registry+https://github.com/rust-lang/crates.io-index"
1816 checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1817
1818 [[package]]
1819 name = "foreign-types"
1820 version = "0.3.2"
1821 source = "registry+https://github.com/rust-lang/crates.io-index"
1822 checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
1823 dependencies = [
1824  "foreign-types-shared",
1825 ]
1826
1827 [[package]]
1828 name = "foreign-types-shared"
1829 version = "0.1.1"
1830 source = "registry+https://github.com/rust-lang/crates.io-index"
1831 checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
1832
1833 [[package]]
1834 name = "form_urlencoded"
1835 version = "1.2.0"
1836 source = "registry+https://github.com/rust-lang/crates.io-index"
1837 checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
1838 dependencies = [
1839  "percent-encoding",
1840 ]
1841
1842 [[package]]
1843 name = "from_variant"
1844 version = "0.1.5"
1845 source = "registry+https://github.com/rust-lang/crates.io-index"
1846 checksum = "1d449976075322384507443937df2f1d5577afbf4282f12a5a66ef29fa3e6307"
1847 dependencies = [
1848  "pmutil",
1849  "proc-macro2",
1850  "swc_macros_common",
1851  "syn 1.0.103",
1852 ]
1853
1854 [[package]]
1855 name = "fs2"
1856 version = "0.4.3"
1857 source = "registry+https://github.com/rust-lang/crates.io-index"
1858 checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
1859 dependencies = [
1860  "libc",
1861  "winapi",
1862 ]
1863
1864 [[package]]
1865 name = "funty"
1866 version = "1.1.0"
1867 source = "registry+https://github.com/rust-lang/crates.io-index"
1868 checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7"
1869
1870 [[package]]
1871 name = "futf"
1872 version = "0.1.5"
1873 source = "registry+https://github.com/rust-lang/crates.io-index"
1874 checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
1875 dependencies = [
1876  "mac",
1877  "new_debug_unreachable",
1878 ]
1879
1880 [[package]]
1881 name = "futures"
1882 version = "0.3.28"
1883 source = "registry+https://github.com/rust-lang/crates.io-index"
1884 checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
1885 dependencies = [
1886  "futures-channel",
1887  "futures-core",
1888  "futures-executor",
1889  "futures-io",
1890  "futures-sink",
1891  "futures-task",
1892  "futures-util",
1893 ]
1894
1895 [[package]]
1896 name = "futures-channel"
1897 version = "0.3.28"
1898 source = "registry+https://github.com/rust-lang/crates.io-index"
1899 checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
1900 dependencies = [
1901  "futures-core",
1902  "futures-sink",
1903 ]
1904
1905 [[package]]
1906 name = "futures-core"
1907 version = "0.3.28"
1908 source = "registry+https://github.com/rust-lang/crates.io-index"
1909 checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
1910
1911 [[package]]
1912 name = "futures-executor"
1913 version = "0.3.28"
1914 source = "registry+https://github.com/rust-lang/crates.io-index"
1915 checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
1916 dependencies = [
1917  "futures-core",
1918  "futures-task",
1919  "futures-util",
1920 ]
1921
1922 [[package]]
1923 name = "futures-io"
1924 version = "0.3.28"
1925 source = "registry+https://github.com/rust-lang/crates.io-index"
1926 checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
1927
1928 [[package]]
1929 name = "futures-macro"
1930 version = "0.3.28"
1931 source = "registry+https://github.com/rust-lang/crates.io-index"
1932 checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
1933 dependencies = [
1934  "proc-macro2",
1935  "quote",
1936  "syn 2.0.18",
1937 ]
1938
1939 [[package]]
1940 name = "futures-sink"
1941 version = "0.3.28"
1942 source = "registry+https://github.com/rust-lang/crates.io-index"
1943 checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
1944
1945 [[package]]
1946 name = "futures-task"
1947 version = "0.3.28"
1948 source = "registry+https://github.com/rust-lang/crates.io-index"
1949 checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
1950
1951 [[package]]
1952 name = "futures-util"
1953 version = "0.3.28"
1954 source = "registry+https://github.com/rust-lang/crates.io-index"
1955 checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
1956 dependencies = [
1957  "futures-channel",
1958  "futures-core",
1959  "futures-io",
1960  "futures-macro",
1961  "futures-sink",
1962  "futures-task",
1963  "memchr",
1964  "pin-project-lite",
1965  "pin-utils",
1966  "slab",
1967 ]
1968
1969 [[package]]
1970 name = "fxhash"
1971 version = "0.2.1"
1972 source = "registry+https://github.com/rust-lang/crates.io-index"
1973 checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
1974 dependencies = [
1975  "byteorder",
1976 ]
1977
1978 [[package]]
1979 name = "generic-array"
1980 version = "0.14.6"
1981 source = "registry+https://github.com/rust-lang/crates.io-index"
1982 checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
1983 dependencies = [
1984  "typenum",
1985  "version_check",
1986 ]
1987
1988 [[package]]
1989 name = "getrandom"
1990 version = "0.1.16"
1991 source = "registry+https://github.com/rust-lang/crates.io-index"
1992 checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
1993 dependencies = [
1994  "cfg-if",
1995  "libc",
1996  "wasi 0.9.0+wasi-snapshot-preview1",
1997 ]
1998
1999 [[package]]
2000 name = "getrandom"
2001 version = "0.2.8"
2002 source = "registry+https://github.com/rust-lang/crates.io-index"
2003 checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
2004 dependencies = [
2005  "cfg-if",
2006  "js-sys",
2007  "libc",
2008  "wasi 0.11.0+wasi-snapshot-preview1",
2009  "wasm-bindgen",
2010 ]
2011
2012 [[package]]
2013 name = "gimli"
2014 version = "0.27.0"
2015 source = "registry+https://github.com/rust-lang/crates.io-index"
2016 checksum = "dec7af912d60cdbd3677c1af9352ebae6fb8394d165568a2234df0fa00f87793"
2017
2018 [[package]]
2019 name = "h2"
2020 version = "0.3.14"
2021 source = "registry+https://github.com/rust-lang/crates.io-index"
2022 checksum = "5ca32592cf21ac7ccab1825cd87f6c9b3d9022c44d086172ed0966bec8af30be"
2023 dependencies = [
2024  "bytes",
2025  "fnv",
2026  "futures-core",
2027  "futures-sink",
2028  "futures-util",
2029  "http",
2030  "indexmap",
2031  "slab",
2032  "tokio",
2033  "tokio-util 0.7.4",
2034  "tracing",
2035 ]
2036
2037 [[package]]
2038 name = "half"
2039 version = "1.8.2"
2040 source = "registry+https://github.com/rust-lang/crates.io-index"
2041 checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
2042
2043 [[package]]
2044 name = "hashbrown"
2045 version = "0.12.3"
2046 source = "registry+https://github.com/rust-lang/crates.io-index"
2047 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2048 dependencies = [
2049  "ahash 0.7.6",
2050 ]
2051
2052 [[package]]
2053 name = "hdrhistogram"
2054 version = "7.5.2"
2055 source = "registry+https://github.com/rust-lang/crates.io-index"
2056 checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8"
2057 dependencies = [
2058  "base64 0.13.1",
2059  "byteorder",
2060  "flate2",
2061  "nom 7.1.1",
2062  "num-traits",
2063 ]
2064
2065 [[package]]
2066 name = "heck"
2067 version = "0.3.3"
2068 source = "registry+https://github.com/rust-lang/crates.io-index"
2069 checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
2070 dependencies = [
2071  "unicode-segmentation",
2072 ]
2073
2074 [[package]]
2075 name = "heck"
2076 version = "0.4.0"
2077 source = "registry+https://github.com/rust-lang/crates.io-index"
2078 checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
2079
2080 [[package]]
2081 name = "hermit-abi"
2082 version = "0.1.19"
2083 source = "registry+https://github.com/rust-lang/crates.io-index"
2084 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2085 dependencies = [
2086  "libc",
2087 ]
2088
2089 [[package]]
2090 name = "hermit-abi"
2091 version = "0.2.6"
2092 source = "registry+https://github.com/rust-lang/crates.io-index"
2093 checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
2094 dependencies = [
2095  "libc",
2096 ]
2097
2098 [[package]]
2099 name = "hex"
2100 version = "0.4.3"
2101 source = "registry+https://github.com/rust-lang/crates.io-index"
2102 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2103
2104 [[package]]
2105 name = "hmac"
2106 version = "0.12.1"
2107 source = "registry+https://github.com/rust-lang/crates.io-index"
2108 checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
2109 dependencies = [
2110  "digest",
2111 ]
2112
2113 [[package]]
2114 name = "hostname"
2115 version = "0.3.1"
2116 source = "registry+https://github.com/rust-lang/crates.io-index"
2117 checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
2118 dependencies = [
2119  "libc",
2120  "match_cfg",
2121  "winapi",
2122 ]
2123
2124 [[package]]
2125 name = "hound"
2126 version = "3.5.0"
2127 source = "registry+https://github.com/rust-lang/crates.io-index"
2128 checksum = "4d13cdbd5dbb29f9c88095bbdc2590c9cba0d0a1269b983fef6b2cdd7e9f4db1"
2129
2130 [[package]]
2131 name = "html-escape"
2132 version = "0.2.13"
2133 source = "registry+https://github.com/rust-lang/crates.io-index"
2134 checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
2135 dependencies = [
2136  "utf8-width",
2137 ]
2138
2139 [[package]]
2140 name = "html2md"
2141 version = "0.2.14"
2142 source = "registry+https://github.com/rust-lang/crates.io-index"
2143 checksum = "be92446e11d68f5d71367d571c229d09ced1f24ab6d08ea0bff329d5f6c0b2a3"
2144 dependencies = [
2145  "html5ever 0.26.0",
2146  "jni",
2147  "lazy_static",
2148  "markup5ever_rcdom 0.2.0",
2149  "percent-encoding",
2150  "regex",
2151 ]
2152
2153 [[package]]
2154 name = "html2text"
2155 version = "0.6.0"
2156 source = "registry+https://github.com/rust-lang/crates.io-index"
2157 checksum = "74cda84f06c1cc83476f79ae8e2e892b626bdadafcb227baec54c918cadc18a0"
2158 dependencies = [
2159  "html5ever 0.26.0",
2160  "markup5ever 0.11.0",
2161  "tendril",
2162  "unicode-width",
2163  "xml5ever 0.17.0",
2164 ]
2165
2166 [[package]]
2167 name = "html5ever"
2168 version = "0.25.2"
2169 source = "registry+https://github.com/rust-lang/crates.io-index"
2170 checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148"
2171 dependencies = [
2172  "log",
2173  "mac",
2174  "markup5ever 0.10.1",
2175  "proc-macro2",
2176  "quote",
2177  "syn 1.0.103",
2178 ]
2179
2180 [[package]]
2181 name = "html5ever"
2182 version = "0.26.0"
2183 source = "registry+https://github.com/rust-lang/crates.io-index"
2184 checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
2185 dependencies = [
2186  "log",
2187  "mac",
2188  "markup5ever 0.11.0",
2189  "proc-macro2",
2190  "quote",
2191  "syn 1.0.103",
2192 ]
2193
2194 [[package]]
2195 name = "http"
2196 version = "0.2.9"
2197 source = "registry+https://github.com/rust-lang/crates.io-index"
2198 checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
2199 dependencies = [
2200  "bytes",
2201  "fnv",
2202  "itoa",
2203 ]
2204
2205 [[package]]
2206 name = "http-body"
2207 version = "0.4.5"
2208 source = "registry+https://github.com/rust-lang/crates.io-index"
2209 checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
2210 dependencies = [
2211  "bytes",
2212  "http",
2213  "pin-project-lite",
2214 ]
2215
2216 [[package]]
2217 name = "http-range-header"
2218 version = "0.3.0"
2219 source = "registry+https://github.com/rust-lang/crates.io-index"
2220 checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29"
2221
2222 [[package]]
2223 name = "http-signature-normalization"
2224 version = "0.6.0"
2225 source = "registry+https://github.com/rust-lang/crates.io-index"
2226 checksum = "f8f45adbef81d7ea3bd7e9bcc6734b7245dad05a14abdcc7ddc0988791d63515"
2227 dependencies = [
2228  "httpdate",
2229 ]
2230
2231 [[package]]
2232 name = "http-signature-normalization"
2233 version = "0.7.0"
2234 source = "registry+https://github.com/rust-lang/crates.io-index"
2235 checksum = "b95e3149194de5f3f9d5225bcc6a8677979f8ff8ce39c85654730ad4824f101e"
2236 dependencies = [
2237  "httpdate",
2238 ]
2239
2240 [[package]]
2241 name = "http-signature-normalization-actix"
2242 version = "0.6.2"
2243 source = "registry+https://github.com/rust-lang/crates.io-index"
2244 checksum = "7483d0ee4d093fa4bfe5956cd405492c07808a5064a29cfe3960d474f21f39c2"
2245 dependencies = [
2246  "actix-http",
2247  "actix-rt",
2248  "actix-web",
2249  "base64 0.13.1",
2250  "futures-util",
2251  "http-signature-normalization 0.6.0",
2252  "sha2",
2253  "thiserror",
2254  "tokio",
2255  "tracing",
2256  "tracing-error",
2257  "tracing-futures",
2258 ]
2259
2260 [[package]]
2261 name = "http-signature-normalization-reqwest"
2262 version = "0.8.0"
2263 source = "registry+https://github.com/rust-lang/crates.io-index"
2264 checksum = "3c382c69a07b21accae86298d520579403af6479b1cd1c389e3ee11f01d48627"
2265 dependencies = [
2266  "base64 0.13.1",
2267  "http-signature-normalization 0.7.0",
2268  "httpdate",
2269  "reqwest",
2270  "reqwest-middleware",
2271  "sha2",
2272  "thiserror",
2273  "tokio",
2274 ]
2275
2276 [[package]]
2277 name = "httparse"
2278 version = "1.8.0"
2279 source = "registry+https://github.com/rust-lang/crates.io-index"
2280 checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2281
2282 [[package]]
2283 name = "httpdate"
2284 version = "1.0.2"
2285 source = "registry+https://github.com/rust-lang/crates.io-index"
2286 checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2287
2288 [[package]]
2289 name = "humantime"
2290 version = "2.1.0"
2291 source = "registry+https://github.com/rust-lang/crates.io-index"
2292 checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2293
2294 [[package]]
2295 name = "hyper"
2296 version = "0.14.25"
2297 source = "registry+https://github.com/rust-lang/crates.io-index"
2298 checksum = "cc5e554ff619822309ffd57d8734d77cd5ce6238bc956f037ea06c58238c9899"
2299 dependencies = [
2300  "bytes",
2301  "futures-channel",
2302  "futures-core",
2303  "futures-util",
2304  "h2",
2305  "http",
2306  "http-body",
2307  "httparse",
2308  "httpdate",
2309  "itoa",
2310  "pin-project-lite",
2311  "socket2 0.4.9",
2312  "tokio",
2313  "tower-service",
2314  "tracing",
2315  "want",
2316 ]
2317
2318 [[package]]
2319 name = "hyper-timeout"
2320 version = "0.4.1"
2321 source = "registry+https://github.com/rust-lang/crates.io-index"
2322 checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
2323 dependencies = [
2324  "hyper",
2325  "pin-project-lite",
2326  "tokio",
2327  "tokio-io-timeout",
2328 ]
2329
2330 [[package]]
2331 name = "hyper-tls"
2332 version = "0.5.0"
2333 source = "registry+https://github.com/rust-lang/crates.io-index"
2334 checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
2335 dependencies = [
2336  "bytes",
2337  "hyper",
2338  "native-tls",
2339  "tokio",
2340  "tokio-native-tls",
2341 ]
2342
2343 [[package]]
2344 name = "iana-time-zone"
2345 version = "0.1.51"
2346 source = "registry+https://github.com/rust-lang/crates.io-index"
2347 checksum = "f5a6ef98976b22b3b7f2f3a806f858cb862044cfa66805aa3ad84cb3d3b785ed"
2348 dependencies = [
2349  "android_system_properties",
2350  "core-foundation-sys",
2351  "iana-time-zone-haiku",
2352  "js-sys",
2353  "wasm-bindgen",
2354  "winapi",
2355 ]
2356
2357 [[package]]
2358 name = "iana-time-zone-haiku"
2359 version = "0.1.1"
2360 source = "registry+https://github.com/rust-lang/crates.io-index"
2361 checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
2362 dependencies = [
2363  "cxx",
2364  "cxx-build",
2365 ]
2366
2367 [[package]]
2368 name = "ident_case"
2369 version = "1.0.1"
2370 source = "registry+https://github.com/rust-lang/crates.io-index"
2371 checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2372
2373 [[package]]
2374 name = "idna"
2375 version = "0.2.3"
2376 source = "registry+https://github.com/rust-lang/crates.io-index"
2377 checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
2378 dependencies = [
2379  "matches",
2380  "unicode-bidi",
2381  "unicode-normalization",
2382 ]
2383
2384 [[package]]
2385 name = "idna"
2386 version = "0.4.0"
2387 source = "registry+https://github.com/rust-lang/crates.io-index"
2388 checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
2389 dependencies = [
2390  "unicode-bidi",
2391  "unicode-normalization",
2392 ]
2393
2394 [[package]]
2395 name = "image"
2396 version = "0.24.4"
2397 source = "registry+https://github.com/rust-lang/crates.io-index"
2398 checksum = "bd8e4fb07cf672b1642304e731ef8a6a4c7891d67bb4fd4f5ce58cd6ed86803c"
2399 dependencies = [
2400  "bytemuck",
2401  "byteorder",
2402  "color_quant",
2403  "num-rational",
2404  "num-traits",
2405  "png",
2406 ]
2407
2408 [[package]]
2409 name = "indenter"
2410 version = "0.3.3"
2411 source = "registry+https://github.com/rust-lang/crates.io-index"
2412 checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
2413
2414 [[package]]
2415 name = "indexmap"
2416 version = "1.9.1"
2417 source = "registry+https://github.com/rust-lang/crates.io-index"
2418 checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
2419 dependencies = [
2420  "autocfg",
2421  "hashbrown",
2422  "serde",
2423 ]
2424
2425 [[package]]
2426 name = "inout"
2427 version = "0.1.3"
2428 source = "registry+https://github.com/rust-lang/crates.io-index"
2429 checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
2430 dependencies = [
2431  "generic-array",
2432 ]
2433
2434 [[package]]
2435 name = "instant"
2436 version = "0.1.12"
2437 source = "registry+https://github.com/rust-lang/crates.io-index"
2438 checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
2439 dependencies = [
2440  "cfg-if",
2441 ]
2442
2443 [[package]]
2444 name = "io-lifetimes"
2445 version = "1.0.3"
2446 source = "registry+https://github.com/rust-lang/crates.io-index"
2447 checksum = "46112a93252b123d31a119a8d1a1ac19deac4fac6e0e8b0df58f0d4e5870e63c"
2448 dependencies = [
2449  "libc",
2450  "windows-sys 0.42.0",
2451 ]
2452
2453 [[package]]
2454 name = "ipnet"
2455 version = "2.5.0"
2456 source = "registry+https://github.com/rust-lang/crates.io-index"
2457 checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
2458
2459 [[package]]
2460 name = "is-macro"
2461 version = "0.2.2"
2462 source = "registry+https://github.com/rust-lang/crates.io-index"
2463 checksum = "8a7d079e129b77477a49c5c4f1cfe9ce6c2c909ef52520693e8e811a714c7b20"
2464 dependencies = [
2465  "Inflector",
2466  "pmutil",
2467  "proc-macro2",
2468  "quote",
2469  "syn 1.0.103",
2470 ]
2471
2472 [[package]]
2473 name = "is-terminal"
2474 version = "0.4.2"
2475 source = "registry+https://github.com/rust-lang/crates.io-index"
2476 checksum = "28dfb6c8100ccc63462345b67d1bbc3679177c75ee4bf59bf29c8b1d110b8189"
2477 dependencies = [
2478  "hermit-abi 0.2.6",
2479  "io-lifetimes",
2480  "rustix",
2481  "windows-sys 0.42.0",
2482 ]
2483
2484 [[package]]
2485 name = "itertools"
2486 version = "0.10.5"
2487 source = "registry+https://github.com/rust-lang/crates.io-index"
2488 checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
2489 dependencies = [
2490  "either",
2491 ]
2492
2493 [[package]]
2494 name = "itoa"
2495 version = "1.0.6"
2496 source = "registry+https://github.com/rust-lang/crates.io-index"
2497 checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
2498
2499 [[package]]
2500 name = "jni"
2501 version = "0.19.0"
2502 source = "registry+https://github.com/rust-lang/crates.io-index"
2503 checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec"
2504 dependencies = [
2505  "cesu8",
2506  "combine",
2507  "jni-sys",
2508  "log",
2509  "thiserror",
2510  "walkdir",
2511 ]
2512
2513 [[package]]
2514 name = "jni-sys"
2515 version = "0.3.0"
2516 source = "registry+https://github.com/rust-lang/crates.io-index"
2517 checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
2518
2519 [[package]]
2520 name = "jobserver"
2521 version = "0.1.26"
2522 source = "registry+https://github.com/rust-lang/crates.io-index"
2523 checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
2524 dependencies = [
2525  "libc",
2526 ]
2527
2528 [[package]]
2529 name = "js-sys"
2530 version = "0.3.60"
2531 source = "registry+https://github.com/rust-lang/crates.io-index"
2532 checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
2533 dependencies = [
2534  "wasm-bindgen",
2535 ]
2536
2537 [[package]]
2538 name = "json5"
2539 version = "0.4.1"
2540 source = "registry+https://github.com/rust-lang/crates.io-index"
2541 checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
2542 dependencies = [
2543  "pest",
2544  "pest_derive",
2545  "serde",
2546 ]
2547
2548 [[package]]
2549 name = "jsonwebtoken"
2550 version = "8.1.1"
2551 source = "registry+https://github.com/rust-lang/crates.io-index"
2552 checksum = "1aa4b4af834c6cfd35d8763d359661b90f2e45d8f750a0849156c7f4671af09c"
2553 dependencies = [
2554  "base64 0.13.1",
2555  "pem",
2556  "ring",
2557  "serde",
2558  "serde_json",
2559  "simple_asn1",
2560 ]
2561
2562 [[package]]
2563 name = "language-tags"
2564 version = "0.3.2"
2565 source = "registry+https://github.com/rust-lang/crates.io-index"
2566 checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
2567
2568 [[package]]
2569 name = "lazy_static"
2570 version = "1.4.0"
2571 source = "registry+https://github.com/rust-lang/crates.io-index"
2572 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2573
2574 [[package]]
2575 name = "lemmy_api"
2576 version = "0.18.1-rc.9"
2577 dependencies = [
2578  "actix-web",
2579  "anyhow",
2580  "async-trait",
2581  "base64 0.13.1",
2582  "bcrypt",
2583  "captcha",
2584  "chrono",
2585  "lemmy_api_common",
2586  "lemmy_db_schema",
2587  "lemmy_db_views",
2588  "lemmy_db_views_actor",
2589  "lemmy_db_views_moderator",
2590  "lemmy_utils",
2591  "serde",
2592  "serial_test",
2593  "tokio",
2594  "tracing",
2595  "uuid",
2596  "wav",
2597 ]
2598
2599 [[package]]
2600 name = "lemmy_api_common"
2601 version = "0.18.1-rc.9"
2602 dependencies = [
2603  "actix-web",
2604  "anyhow",
2605  "chrono",
2606  "encoding",
2607  "futures",
2608  "lemmy_db_schema",
2609  "lemmy_db_views",
2610  "lemmy_db_views_actor",
2611  "lemmy_db_views_moderator",
2612  "lemmy_utils",
2613  "percent-encoding",
2614  "regex",
2615  "reqwest",
2616  "reqwest-middleware",
2617  "rosetta-i18n",
2618  "serde",
2619  "serde_with",
2620  "tokio",
2621  "tracing",
2622  "ts-rs",
2623  "url",
2624  "uuid",
2625  "webpage",
2626 ]
2627
2628 [[package]]
2629 name = "lemmy_api_crud"
2630 version = "0.18.1-rc.9"
2631 dependencies = [
2632  "activitypub_federation",
2633  "actix-web",
2634  "async-trait",
2635  "bcrypt",
2636  "chrono",
2637  "lemmy_api_common",
2638  "lemmy_db_schema",
2639  "lemmy_db_views",
2640  "lemmy_db_views_actor",
2641  "lemmy_utils",
2642  "serde",
2643  "tracing",
2644  "url",
2645  "uuid",
2646  "webmention",
2647 ]
2648
2649 [[package]]
2650 name = "lemmy_apub"
2651 version = "0.18.1-rc.9"
2652 dependencies = [
2653  "activitypub_federation",
2654  "actix-web",
2655  "anyhow",
2656  "assert-json-diff",
2657  "async-trait",
2658  "chrono",
2659  "diesel",
2660  "enum_delegate",
2661  "futures",
2662  "html2md",
2663  "http",
2664  "http-signature-normalization-actix",
2665  "itertools",
2666  "lemmy_api_common",
2667  "lemmy_db_schema",
2668  "lemmy_db_views",
2669  "lemmy_db_views_actor",
2670  "lemmy_utils",
2671  "once_cell",
2672  "reqwest",
2673  "reqwest-middleware",
2674  "serde",
2675  "serde_json",
2676  "serde_with",
2677  "serial_test",
2678  "sha2",
2679  "strum_macros",
2680  "task-local-extensions",
2681  "tokio",
2682  "tracing",
2683  "url",
2684  "uuid",
2685 ]
2686
2687 [[package]]
2688 name = "lemmy_db_schema"
2689 version = "0.18.1-rc.9"
2690 dependencies = [
2691  "activitypub_federation",
2692  "async-trait",
2693  "bcrypt",
2694  "chrono",
2695  "deadpool",
2696  "diesel",
2697  "diesel-async",
2698  "diesel-derive-enum",
2699  "diesel-derive-newtype",
2700  "diesel_ltree",
2701  "diesel_migrations",
2702  "futures-util",
2703  "lemmy_utils",
2704  "once_cell",
2705  "regex",
2706  "rustls 0.21.2",
2707  "serde",
2708  "serde_json",
2709  "serde_with",
2710  "serial_test",
2711  "sha2",
2712  "strum",
2713  "strum_macros",
2714  "tokio",
2715  "tokio-postgres",
2716  "tokio-postgres-rustls",
2717  "tracing",
2718  "ts-rs",
2719  "typed-builder",
2720  "url",
2721  "uuid",
2722 ]
2723
2724 [[package]]
2725 name = "lemmy_db_views"
2726 version = "0.18.1-rc.9"
2727 dependencies = [
2728  "diesel",
2729  "diesel-async",
2730  "diesel_ltree",
2731  "lemmy_db_schema",
2732  "serde",
2733  "serde_with",
2734  "serial_test",
2735  "tokio",
2736  "tracing",
2737  "ts-rs",
2738  "typed-builder",
2739 ]
2740
2741 [[package]]
2742 name = "lemmy_db_views_actor"
2743 version = "0.18.1-rc.9"
2744 dependencies = [
2745  "diesel",
2746  "diesel-async",
2747  "lemmy_db_schema",
2748  "serde",
2749  "serde_with",
2750  "ts-rs",
2751  "typed-builder",
2752 ]
2753
2754 [[package]]
2755 name = "lemmy_db_views_moderator"
2756 version = "0.18.1-rc.9"
2757 dependencies = [
2758  "diesel",
2759  "diesel-async",
2760  "lemmy_db_schema",
2761  "serde",
2762  "serde_with",
2763  "ts-rs",
2764 ]
2765
2766 [[package]]
2767 name = "lemmy_routes"
2768 version = "0.18.1-rc.9"
2769 dependencies = [
2770  "activitypub_federation",
2771  "actix-web",
2772  "anyhow",
2773  "chrono",
2774  "futures",
2775  "lemmy_api_common",
2776  "lemmy_db_schema",
2777  "lemmy_db_views",
2778  "lemmy_db_views_actor",
2779  "lemmy_utils",
2780  "once_cell",
2781  "reqwest",
2782  "reqwest-middleware",
2783  "rss",
2784  "serde",
2785  "strum",
2786  "tokio",
2787  "tracing",
2788  "url",
2789 ]
2790
2791 [[package]]
2792 name = "lemmy_server"
2793 version = "0.18.1-rc.9"
2794 dependencies = [
2795  "activitypub_federation",
2796  "actix-cors",
2797  "actix-web",
2798  "chrono",
2799  "clokwerk",
2800  "console-subscriber",
2801  "diesel",
2802  "diesel-async",
2803  "doku",
2804  "futures-util",
2805  "lemmy_api",
2806  "lemmy_api_common",
2807  "lemmy_api_crud",
2808  "lemmy_apub",
2809  "lemmy_db_schema",
2810  "lemmy_routes",
2811  "lemmy_utils",
2812  "opentelemetry 0.17.0",
2813  "opentelemetry-otlp 0.10.0",
2814  "pict-rs",
2815  "reqwest",
2816  "reqwest-middleware",
2817  "reqwest-tracing",
2818  "rustls 0.21.2",
2819  "serde",
2820  "serde_json",
2821  "tokio",
2822  "tokio-postgres",
2823  "tokio-postgres-rustls",
2824  "tracing",
2825  "tracing-actix-web 0.6.2",
2826  "tracing-error",
2827  "tracing-log",
2828  "tracing-opentelemetry 0.17.4",
2829  "tracing-subscriber",
2830  "url",
2831 ]
2832
2833 [[package]]
2834 name = "lemmy_utils"
2835 version = "0.18.1-rc.9"
2836 dependencies = [
2837  "actix-web",
2838  "anyhow",
2839  "chrono",
2840  "deser-hjson",
2841  "diesel",
2842  "doku",
2843  "enum-map",
2844  "futures",
2845  "html2text",
2846  "http",
2847  "itertools",
2848  "jsonwebtoken",
2849  "lettre",
2850  "markdown-it",
2851  "once_cell",
2852  "openssl",
2853  "percent-encoding",
2854  "regex",
2855  "reqwest",
2856  "reqwest-middleware",
2857  "rosetta-build",
2858  "rosetta-i18n",
2859  "serde",
2860  "serde_json",
2861  "smart-default",
2862  "strum",
2863  "strum_macros",
2864  "tokio",
2865  "totp-rs",
2866  "tracing",
2867  "tracing-error",
2868  "typed-builder",
2869  "url",
2870  "uuid",
2871 ]
2872
2873 [[package]]
2874 name = "lettre"
2875 version = "0.10.1"
2876 source = "registry+https://github.com/rust-lang/crates.io-index"
2877 checksum = "2eabca5e0b4d0e98e7f2243fb5b7520b6af2b65d8f87bcc86f2c75185a6ff243"
2878 dependencies = [
2879  "base64 0.13.1",
2880  "email-encoding",
2881  "email_address",
2882  "fastrand",
2883  "futures-util",
2884  "hostname",
2885  "httpdate",
2886  "idna 0.2.3",
2887  "mime",
2888  "native-tls",
2889  "nom 7.1.1",
2890  "once_cell",
2891  "quoted_printable",
2892  "socket2 0.4.9",
2893 ]
2894
2895 [[package]]
2896 name = "lexical"
2897 version = "6.1.1"
2898 source = "registry+https://github.com/rust-lang/crates.io-index"
2899 checksum = "c7aefb36fd43fef7003334742cbf77b243fcd36418a1d1bdd480d613a67968f6"
2900 dependencies = [
2901  "lexical-core 0.8.5",
2902 ]
2903
2904 [[package]]
2905 name = "lexical-core"
2906 version = "0.7.6"
2907 source = "registry+https://github.com/rust-lang/crates.io-index"
2908 checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"
2909 dependencies = [
2910  "arrayvec",
2911  "bitflags 1.3.2",
2912  "cfg-if",
2913  "ryu",
2914  "static_assertions",
2915 ]
2916
2917 [[package]]
2918 name = "lexical-core"
2919 version = "0.8.5"
2920 source = "registry+https://github.com/rust-lang/crates.io-index"
2921 checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
2922 dependencies = [
2923  "lexical-parse-float",
2924  "lexical-parse-integer",
2925  "lexical-util",
2926  "lexical-write-float",
2927  "lexical-write-integer",
2928 ]
2929
2930 [[package]]
2931 name = "lexical-parse-float"
2932 version = "0.8.5"
2933 source = "registry+https://github.com/rust-lang/crates.io-index"
2934 checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
2935 dependencies = [
2936  "lexical-parse-integer",
2937  "lexical-util",
2938  "static_assertions",
2939 ]
2940
2941 [[package]]
2942 name = "lexical-parse-integer"
2943 version = "0.8.6"
2944 source = "registry+https://github.com/rust-lang/crates.io-index"
2945 checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
2946 dependencies = [
2947  "lexical-util",
2948  "static_assertions",
2949 ]
2950
2951 [[package]]
2952 name = "lexical-util"
2953 version = "0.8.5"
2954 source = "registry+https://github.com/rust-lang/crates.io-index"
2955 checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
2956 dependencies = [
2957  "static_assertions",
2958 ]
2959
2960 [[package]]
2961 name = "lexical-write-float"
2962 version = "0.8.5"
2963 source = "registry+https://github.com/rust-lang/crates.io-index"
2964 checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
2965 dependencies = [
2966  "lexical-util",
2967  "lexical-write-integer",
2968  "static_assertions",
2969 ]
2970
2971 [[package]]
2972 name = "lexical-write-integer"
2973 version = "0.8.5"
2974 source = "registry+https://github.com/rust-lang/crates.io-index"
2975 checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
2976 dependencies = [
2977  "lexical-util",
2978  "static_assertions",
2979 ]
2980
2981 [[package]]
2982 name = "libc"
2983 version = "0.2.146"
2984 source = "registry+https://github.com/rust-lang/crates.io-index"
2985 checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b"
2986
2987 [[package]]
2988 name = "line-wrap"
2989 version = "0.1.1"
2990 source = "registry+https://github.com/rust-lang/crates.io-index"
2991 checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
2992 dependencies = [
2993  "safemem",
2994 ]
2995
2996 [[package]]
2997 name = "link-cplusplus"
2998 version = "1.0.7"
2999 source = "registry+https://github.com/rust-lang/crates.io-index"
3000 checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369"
3001 dependencies = [
3002  "cc",
3003 ]
3004
3005 [[package]]
3006 name = "linked-hash-map"
3007 version = "0.5.6"
3008 source = "registry+https://github.com/rust-lang/crates.io-index"
3009 checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
3010
3011 [[package]]
3012 name = "linkify"
3013 version = "0.9.0"
3014 source = "registry+https://github.com/rust-lang/crates.io-index"
3015 checksum = "96dd5884008358112bc66093362197c7248ece00d46624e2cf71e50029f8cff5"
3016 dependencies = [
3017  "memchr",
3018 ]
3019
3020 [[package]]
3021 name = "linux-raw-sys"
3022 version = "0.1.4"
3023 source = "registry+https://github.com/rust-lang/crates.io-index"
3024 checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
3025
3026 [[package]]
3027 name = "local-channel"
3028 version = "0.1.3"
3029 source = "registry+https://github.com/rust-lang/crates.io-index"
3030 checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
3031 dependencies = [
3032  "futures-core",
3033  "futures-sink",
3034  "futures-util",
3035  "local-waker",
3036 ]
3037
3038 [[package]]
3039 name = "local-waker"
3040 version = "0.1.3"
3041 source = "registry+https://github.com/rust-lang/crates.io-index"
3042 checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
3043
3044 [[package]]
3045 name = "lock_api"
3046 version = "0.4.9"
3047 source = "registry+https://github.com/rust-lang/crates.io-index"
3048 checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
3049 dependencies = [
3050  "autocfg",
3051  "scopeguard",
3052 ]
3053
3054 [[package]]
3055 name = "lodepng"
3056 version = "3.7.2"
3057 source = "registry+https://github.com/rust-lang/crates.io-index"
3058 checksum = "f0ad39f75bbaa4b10bb6f2316543632a8046a5bcf9c785488d79720b21f044f8"
3059 dependencies = [
3060  "crc32fast",
3061  "fallible_collections",
3062  "flate2",
3063  "libc",
3064  "rgb",
3065 ]
3066
3067 [[package]]
3068 name = "log"
3069 version = "0.4.17"
3070 source = "registry+https://github.com/rust-lang/crates.io-index"
3071 checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
3072 dependencies = [
3073  "cfg-if",
3074 ]
3075
3076 [[package]]
3077 name = "mac"
3078 version = "0.1.1"
3079 source = "registry+https://github.com/rust-lang/crates.io-index"
3080 checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
3081
3082 [[package]]
3083 name = "markdown-it"
3084 version = "0.5.0"
3085 source = "registry+https://github.com/rust-lang/crates.io-index"
3086 checksum = "53107ab22a09ae3b2eaedccf1d1c6aa58c1aa77e15689a799e0d8eda2b1a7d54"
3087 dependencies = [
3088  "argparse",
3089  "const_format",
3090  "derivative",
3091  "derive_more",
3092  "downcast-rs",
3093  "entities",
3094  "html-escape",
3095  "linkify",
3096  "mdurl",
3097  "once_cell",
3098  "readonly",
3099  "regex",
3100  "stacker",
3101  "syntect",
3102  "unicode-general-category",
3103 ]
3104
3105 [[package]]
3106 name = "markup5ever"
3107 version = "0.10.1"
3108 source = "registry+https://github.com/rust-lang/crates.io-index"
3109 checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd"
3110 dependencies = [
3111  "log",
3112  "phf 0.8.0",
3113  "phf_codegen 0.8.0",
3114  "string_cache",
3115  "string_cache_codegen",
3116  "tendril",
3117 ]
3118
3119 [[package]]
3120 name = "markup5ever"
3121 version = "0.11.0"
3122 source = "registry+https://github.com/rust-lang/crates.io-index"
3123 checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
3124 dependencies = [
3125  "log",
3126  "phf 0.10.1",
3127  "phf_codegen 0.10.0",
3128  "string_cache",
3129  "string_cache_codegen",
3130  "tendril",
3131 ]
3132
3133 [[package]]
3134 name = "markup5ever_rcdom"
3135 version = "0.1.0"
3136 source = "registry+https://github.com/rust-lang/crates.io-index"
3137 checksum = "f015da43bcd8d4f144559a3423f4591d69b8ce0652c905374da7205df336ae2b"
3138 dependencies = [
3139  "html5ever 0.25.2",
3140  "markup5ever 0.10.1",
3141  "tendril",
3142  "xml5ever 0.16.2",
3143 ]
3144
3145 [[package]]
3146 name = "markup5ever_rcdom"
3147 version = "0.2.0"
3148 source = "registry+https://github.com/rust-lang/crates.io-index"
3149 checksum = "b9521dd6750f8e80ee6c53d65e2e4656d7de37064f3a7a5d2d11d05df93839c2"
3150 dependencies = [
3151  "html5ever 0.26.0",
3152  "markup5ever 0.11.0",
3153  "tendril",
3154  "xml5ever 0.17.0",
3155 ]
3156
3157 [[package]]
3158 name = "match_cfg"
3159 version = "0.1.0"
3160 source = "registry+https://github.com/rust-lang/crates.io-index"
3161 checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
3162
3163 [[package]]
3164 name = "matchers"
3165 version = "0.1.0"
3166 source = "registry+https://github.com/rust-lang/crates.io-index"
3167 checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
3168 dependencies = [
3169  "regex-automata",
3170 ]
3171
3172 [[package]]
3173 name = "matches"
3174 version = "0.1.9"
3175 source = "registry+https://github.com/rust-lang/crates.io-index"
3176 checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
3177
3178 [[package]]
3179 name = "matchit"
3180 version = "0.5.0"
3181 source = "registry+https://github.com/rust-lang/crates.io-index"
3182 checksum = "73cbba799671b762df5a175adf59ce145165747bb891505c43d09aefbbf38beb"
3183
3184 [[package]]
3185 name = "matchit"
3186 version = "0.7.0"
3187 source = "registry+https://github.com/rust-lang/crates.io-index"
3188 checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40"
3189
3190 [[package]]
3191 name = "md-5"
3192 version = "0.10.5"
3193 source = "registry+https://github.com/rust-lang/crates.io-index"
3194 checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
3195 dependencies = [
3196  "digest",
3197 ]
3198
3199 [[package]]
3200 name = "mdurl"
3201 version = "0.3.1"
3202 source = "registry+https://github.com/rust-lang/crates.io-index"
3203 checksum = "5736ba45bbac8f7ccc99a897f88ce85e508a18baec973a040f2514e6cdbff0d2"
3204 dependencies = [
3205  "idna 0.2.3",
3206  "once_cell",
3207  "regex",
3208 ]
3209
3210 [[package]]
3211 name = "memchr"
3212 version = "2.5.0"
3213 source = "registry+https://github.com/rust-lang/crates.io-index"
3214 checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
3215
3216 [[package]]
3217 name = "memoffset"
3218 version = "0.7.1"
3219 source = "registry+https://github.com/rust-lang/crates.io-index"
3220 checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
3221 dependencies = [
3222  "autocfg",
3223 ]
3224
3225 [[package]]
3226 name = "migrations_internals"
3227 version = "2.1.0"
3228 source = "registry+https://github.com/rust-lang/crates.io-index"
3229 checksum = "0f23f71580015254b020e856feac3df5878c2c7a8812297edd6c0a485ac9dada"
3230 dependencies = [
3231  "serde",
3232  "toml 0.7.4",
3233 ]
3234
3235 [[package]]
3236 name = "migrations_macros"
3237 version = "2.1.0"
3238 source = "registry+https://github.com/rust-lang/crates.io-index"
3239 checksum = "cce3325ac70e67bbab5bd837a31cae01f1a6db64e0e744a33cb03a543469ef08"
3240 dependencies = [
3241  "migrations_internals",
3242  "proc-macro2",
3243  "quote",
3244 ]
3245
3246 [[package]]
3247 name = "mime"
3248 version = "0.3.16"
3249 source = "registry+https://github.com/rust-lang/crates.io-index"
3250 checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
3251
3252 [[package]]
3253 name = "mime_guess"
3254 version = "2.0.4"
3255 source = "registry+https://github.com/rust-lang/crates.io-index"
3256 checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
3257 dependencies = [
3258  "mime",
3259  "unicase",
3260 ]
3261
3262 [[package]]
3263 name = "minimal-lexical"
3264 version = "0.2.1"
3265 source = "registry+https://github.com/rust-lang/crates.io-index"
3266 checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
3267
3268 [[package]]
3269 name = "miniz_oxide"
3270 version = "0.5.4"
3271 source = "registry+https://github.com/rust-lang/crates.io-index"
3272 checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
3273 dependencies = [
3274  "adler",
3275 ]
3276
3277 [[package]]
3278 name = "miniz_oxide"
3279 version = "0.6.2"
3280 source = "registry+https://github.com/rust-lang/crates.io-index"
3281 checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
3282 dependencies = [
3283  "adler",
3284 ]
3285
3286 [[package]]
3287 name = "mio"
3288 version = "0.8.4"
3289 source = "registry+https://github.com/rust-lang/crates.io-index"
3290 checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
3291 dependencies = [
3292  "libc",
3293  "log",
3294  "wasi 0.11.0+wasi-snapshot-preview1",
3295  "windows-sys 0.36.1",
3296 ]
3297
3298 [[package]]
3299 name = "multimap"
3300 version = "0.8.3"
3301 source = "registry+https://github.com/rust-lang/crates.io-index"
3302 checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
3303
3304 [[package]]
3305 name = "native-tls"
3306 version = "0.2.10"
3307 source = "registry+https://github.com/rust-lang/crates.io-index"
3308 checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
3309 dependencies = [
3310  "lazy_static",
3311  "libc",
3312  "log",
3313  "openssl",
3314  "openssl-probe",
3315  "openssl-sys",
3316  "schannel",
3317  "security-framework",
3318  "security-framework-sys",
3319  "tempfile",
3320 ]
3321
3322 [[package]]
3323 name = "never"
3324 version = "0.1.0"
3325 source = "registry+https://github.com/rust-lang/crates.io-index"
3326 checksum = "c96aba5aa877601bb3f6dd6a63a969e1f82e60646e81e71b14496995e9853c91"
3327
3328 [[package]]
3329 name = "new_debug_unreachable"
3330 version = "1.0.4"
3331 source = "registry+https://github.com/rust-lang/crates.io-index"
3332 checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
3333
3334 [[package]]
3335 name = "nom"
3336 version = "6.1.2"
3337 source = "registry+https://github.com/rust-lang/crates.io-index"
3338 checksum = "e7413f999671bd4745a7b624bd370a569fb6bc574b23c83a3c5ed2e453f3d5e2"
3339 dependencies = [
3340  "bitvec",
3341  "funty",
3342  "lexical-core 0.7.6",
3343  "memchr",
3344  "version_check",
3345 ]
3346
3347 [[package]]
3348 name = "nom"
3349 version = "7.1.1"
3350 source = "registry+https://github.com/rust-lang/crates.io-index"
3351 checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
3352 dependencies = [
3353  "memchr",
3354  "minimal-lexical",
3355 ]
3356
3357 [[package]]
3358 name = "nu-ansi-term"
3359 version = "0.46.0"
3360 source = "registry+https://github.com/rust-lang/crates.io-index"
3361 checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
3362 dependencies = [
3363  "overload",
3364  "winapi",
3365 ]
3366
3367 [[package]]
3368 name = "num-bigint"
3369 version = "0.4.3"
3370 source = "registry+https://github.com/rust-lang/crates.io-index"
3371 checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
3372 dependencies = [
3373  "autocfg",
3374  "num-integer",
3375  "num-traits",
3376  "serde",
3377 ]
3378
3379 [[package]]
3380 name = "num-integer"
3381 version = "0.1.45"
3382 source = "registry+https://github.com/rust-lang/crates.io-index"
3383 checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
3384 dependencies = [
3385  "autocfg",
3386  "num-traits",
3387 ]
3388
3389 [[package]]
3390 name = "num-rational"
3391 version = "0.4.1"
3392 source = "registry+https://github.com/rust-lang/crates.io-index"
3393 checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
3394 dependencies = [
3395  "autocfg",
3396  "num-integer",
3397  "num-traits",
3398 ]
3399
3400 [[package]]
3401 name = "num-traits"
3402 version = "0.2.15"
3403 source = "registry+https://github.com/rust-lang/crates.io-index"
3404 checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
3405 dependencies = [
3406  "autocfg",
3407 ]
3408
3409 [[package]]
3410 name = "num_cpus"
3411 version = "1.13.1"
3412 source = "registry+https://github.com/rust-lang/crates.io-index"
3413 checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
3414 dependencies = [
3415  "hermit-abi 0.1.19",
3416  "libc",
3417 ]
3418
3419 [[package]]
3420 name = "num_threads"
3421 version = "0.1.6"
3422 source = "registry+https://github.com/rust-lang/crates.io-index"
3423 checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
3424 dependencies = [
3425  "libc",
3426 ]
3427
3428 [[package]]
3429 name = "object"
3430 version = "0.30.0"
3431 source = "registry+https://github.com/rust-lang/crates.io-index"
3432 checksum = "239da7f290cfa979f43f85a8efeee9a8a76d0827c356d37f9d3d7254d6b537fb"
3433 dependencies = [
3434  "memchr",
3435 ]
3436
3437 [[package]]
3438 name = "once_cell"
3439 version = "1.18.0"
3440 source = "registry+https://github.com/rust-lang/crates.io-index"
3441 checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
3442
3443 [[package]]
3444 name = "openssl"
3445 version = "0.10.54"
3446 source = "registry+https://github.com/rust-lang/crates.io-index"
3447 checksum = "69b3f656a17a6cbc115b5c7a40c616947d213ba182135b014d6051b73ab6f019"
3448 dependencies = [
3449  "bitflags 1.3.2",
3450  "cfg-if",
3451  "foreign-types",
3452  "libc",
3453  "once_cell",
3454  "openssl-macros",
3455  "openssl-sys",
3456 ]
3457
3458 [[package]]
3459 name = "openssl-macros"
3460 version = "0.1.0"
3461 source = "registry+https://github.com/rust-lang/crates.io-index"
3462 checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
3463 dependencies = [
3464  "proc-macro2",
3465  "quote",
3466  "syn 1.0.103",
3467 ]
3468
3469 [[package]]
3470 name = "openssl-probe"
3471 version = "0.1.5"
3472 source = "registry+https://github.com/rust-lang/crates.io-index"
3473 checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
3474
3475 [[package]]
3476 name = "openssl-sys"
3477 version = "0.9.88"
3478 source = "registry+https://github.com/rust-lang/crates.io-index"
3479 checksum = "c2ce0f250f34a308dcfdbb351f511359857d4ed2134ba715a4eadd46e1ffd617"
3480 dependencies = [
3481  "cc",
3482  "libc",
3483  "pkg-config",
3484  "vcpkg",
3485 ]
3486
3487 [[package]]
3488 name = "opentelemetry"
3489 version = "0.16.0"
3490 source = "registry+https://github.com/rust-lang/crates.io-index"
3491 checksum = "e1cf9b1c4e9a6c4de793c632496fa490bdc0e1eea73f0c91394f7b6990935d22"
3492 dependencies = [
3493  "async-trait",
3494  "crossbeam-channel",
3495  "futures",
3496  "js-sys",
3497  "lazy_static",
3498  "percent-encoding",
3499  "pin-project",
3500  "rand 0.8.5",
3501  "thiserror",
3502 ]
3503
3504 [[package]]
3505 name = "opentelemetry"
3506 version = "0.17.0"
3507 source = "registry+https://github.com/rust-lang/crates.io-index"
3508 checksum = "6105e89802af13fdf48c49d7646d3b533a70e536d818aae7e78ba0433d01acb8"
3509 dependencies = [
3510  "async-trait",
3511  "crossbeam-channel",
3512  "futures-channel",
3513  "futures-executor",
3514  "futures-util",
3515  "js-sys",
3516  "lazy_static",
3517  "percent-encoding",
3518  "pin-project",
3519  "rand 0.8.5",
3520  "thiserror",
3521  "tokio",
3522  "tokio-stream",
3523 ]
3524
3525 [[package]]
3526 name = "opentelemetry"
3527 version = "0.19.0"
3528 source = "registry+https://github.com/rust-lang/crates.io-index"
3529 checksum = "5f4b8347cc26099d3aeee044065ecc3ae11469796b4d65d065a23a584ed92a6f"
3530 dependencies = [
3531  "opentelemetry_api",
3532  "opentelemetry_sdk",
3533 ]
3534
3535 [[package]]
3536 name = "opentelemetry-otlp"
3537 version = "0.10.0"
3538 source = "registry+https://github.com/rust-lang/crates.io-index"
3539 checksum = "9d1a6ca9de4c8b00aa7f1a153bd76cb263287155cec642680d79d98706f3d28a"
3540 dependencies = [
3541  "async-trait",
3542  "futures",
3543  "futures-util",
3544  "http",
3545  "opentelemetry 0.17.0",
3546  "prost 0.9.0",
3547  "thiserror",
3548  "tokio",
3549  "tonic 0.6.2",
3550  "tonic-build",
3551 ]
3552
3553 [[package]]
3554 name = "opentelemetry-otlp"
3555 version = "0.12.0"
3556 source = "registry+https://github.com/rust-lang/crates.io-index"
3557 checksum = "8af72d59a4484654ea8eb183fea5ae4eb6a41d7ac3e3bae5f4d2a282a3a7d3ca"
3558 dependencies = [
3559  "async-trait",
3560  "futures",
3561  "futures-util",
3562  "http",
3563  "opentelemetry 0.19.0",
3564  "opentelemetry-proto",
3565  "prost 0.11.0",
3566  "thiserror",
3567  "tokio",
3568  "tonic 0.8.2",
3569 ]
3570
3571 [[package]]
3572 name = "opentelemetry-proto"
3573 version = "0.2.0"
3574 source = "registry+https://github.com/rust-lang/crates.io-index"
3575 checksum = "045f8eea8c0fa19f7d48e7bc3128a39c2e5c533d5c61298c548dfefc1064474c"
3576 dependencies = [
3577  "futures",
3578  "futures-util",
3579  "opentelemetry 0.19.0",
3580  "prost 0.11.0",
3581  "tonic 0.8.2",
3582 ]
3583
3584 [[package]]
3585 name = "opentelemetry_api"
3586 version = "0.19.0"
3587 source = "registry+https://github.com/rust-lang/crates.io-index"
3588 checksum = "ed41783a5bf567688eb38372f2b7a8530f5a607a4b49d38dd7573236c23ca7e2"
3589 dependencies = [
3590  "fnv",
3591  "futures-channel",
3592  "futures-util",
3593  "indexmap",
3594  "once_cell",
3595  "pin-project-lite",
3596  "thiserror",
3597  "urlencoding",
3598 ]
3599
3600 [[package]]
3601 name = "opentelemetry_sdk"
3602 version = "0.19.0"
3603 source = "registry+https://github.com/rust-lang/crates.io-index"
3604 checksum = "8b3a2a91fdbfdd4d212c0dcc2ab540de2c2bcbbd90be17de7a7daf8822d010c1"
3605 dependencies = [
3606  "async-trait",
3607  "crossbeam-channel",
3608  "dashmap",
3609  "fnv",
3610  "futures-channel",
3611  "futures-executor",
3612  "futures-util",
3613  "once_cell",
3614  "opentelemetry_api",
3615  "percent-encoding",
3616  "rand 0.8.5",
3617  "thiserror",
3618  "tokio",
3619  "tokio-stream",
3620 ]
3621
3622 [[package]]
3623 name = "ordered-multimap"
3624 version = "0.4.3"
3625 source = "registry+https://github.com/rust-lang/crates.io-index"
3626 checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a"
3627 dependencies = [
3628  "dlv-list",
3629  "hashbrown",
3630 ]
3631
3632 [[package]]
3633 name = "os_str_bytes"
3634 version = "6.4.1"
3635 source = "registry+https://github.com/rust-lang/crates.io-index"
3636 checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
3637
3638 [[package]]
3639 name = "overload"
3640 version = "0.1.1"
3641 source = "registry+https://github.com/rust-lang/crates.io-index"
3642 checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
3643
3644 [[package]]
3645 name = "owo-colors"
3646 version = "3.5.0"
3647 source = "registry+https://github.com/rust-lang/crates.io-index"
3648 checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
3649
3650 [[package]]
3651 name = "parking_lot"
3652 version = "0.11.2"
3653 source = "registry+https://github.com/rust-lang/crates.io-index"
3654 checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
3655 dependencies = [
3656  "instant",
3657  "lock_api",
3658  "parking_lot_core 0.8.6",
3659 ]
3660
3661 [[package]]
3662 name = "parking_lot"
3663 version = "0.12.1"
3664 source = "registry+https://github.com/rust-lang/crates.io-index"
3665 checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
3666 dependencies = [
3667  "lock_api",
3668  "parking_lot_core 0.9.4",
3669 ]
3670
3671 [[package]]
3672 name = "parking_lot_core"
3673 version = "0.8.6"
3674 source = "registry+https://github.com/rust-lang/crates.io-index"
3675 checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
3676 dependencies = [
3677  "cfg-if",
3678  "instant",
3679  "libc",
3680  "redox_syscall",
3681  "smallvec",
3682  "winapi",
3683 ]
3684
3685 [[package]]
3686 name = "parking_lot_core"
3687 version = "0.9.4"
3688 source = "registry+https://github.com/rust-lang/crates.io-index"
3689 checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0"
3690 dependencies = [
3691  "cfg-if",
3692  "libc",
3693  "redox_syscall",
3694  "smallvec",
3695  "windows-sys 0.42.0",
3696 ]
3697
3698 [[package]]
3699 name = "paste"
3700 version = "1.0.9"
3701 source = "registry+https://github.com/rust-lang/crates.io-index"
3702 checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1"
3703
3704 [[package]]
3705 name = "pathdiff"
3706 version = "0.2.1"
3707 source = "registry+https://github.com/rust-lang/crates.io-index"
3708 checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
3709
3710 [[package]]
3711 name = "pem"
3712 version = "1.1.0"
3713 source = "registry+https://github.com/rust-lang/crates.io-index"
3714 checksum = "03c64931a1a212348ec4f3b4362585eca7159d0d09cbdf4a7f74f02173596fd4"
3715 dependencies = [
3716  "base64 0.13.1",
3717 ]
3718
3719 [[package]]
3720 name = "percent-encoding"
3721 version = "2.3.0"
3722 source = "registry+https://github.com/rust-lang/crates.io-index"
3723 checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
3724
3725 [[package]]
3726 name = "pest"
3727 version = "2.4.0"
3728 source = "registry+https://github.com/rust-lang/crates.io-index"
3729 checksum = "dbc7bc69c062e492337d74d59b120c274fd3d261b6bf6d3207d499b4b379c41a"
3730 dependencies = [
3731  "thiserror",
3732  "ucd-trie",
3733 ]
3734
3735 [[package]]
3736 name = "pest_derive"
3737 version = "2.4.0"
3738 source = "registry+https://github.com/rust-lang/crates.io-index"
3739 checksum = "60b75706b9642ebcb34dab3bc7750f811609a0eb1dd8b88c2d15bf628c1c65b2"
3740 dependencies = [
3741  "pest",
3742  "pest_generator",
3743 ]
3744
3745 [[package]]
3746 name = "pest_generator"
3747 version = "2.4.0"
3748 source = "registry+https://github.com/rust-lang/crates.io-index"
3749 checksum = "f4f9272122f5979a6511a749af9db9bfc810393f63119970d7085fed1c4ea0db"
3750 dependencies = [
3751  "pest",
3752  "pest_meta",
3753  "proc-macro2",
3754  "quote",
3755  "syn 1.0.103",
3756 ]
3757
3758 [[package]]
3759 name = "pest_meta"
3760 version = "2.4.0"
3761 source = "registry+https://github.com/rust-lang/crates.io-index"
3762 checksum = "4c8717927f9b79515e565a64fe46c38b8cd0427e64c40680b14a7365ab09ac8d"
3763 dependencies = [
3764  "once_cell",
3765  "pest",
3766  "sha1",
3767 ]
3768
3769 [[package]]
3770 name = "petgraph"
3771 version = "0.6.2"
3772 source = "registry+https://github.com/rust-lang/crates.io-index"
3773 checksum = "e6d5014253a1331579ce62aa67443b4a658c5e7dd03d4bc6d302b94474888143"
3774 dependencies = [
3775  "fixedbitset",
3776  "indexmap",
3777 ]
3778
3779 [[package]]
3780 name = "phf"
3781 version = "0.8.0"
3782 source = "registry+https://github.com/rust-lang/crates.io-index"
3783 checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
3784 dependencies = [
3785  "phf_shared 0.8.0",
3786 ]
3787
3788 [[package]]
3789 name = "phf"
3790 version = "0.10.1"
3791 source = "registry+https://github.com/rust-lang/crates.io-index"
3792 checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
3793 dependencies = [
3794  "phf_shared 0.10.0",
3795 ]
3796
3797 [[package]]
3798 name = "phf"
3799 version = "0.11.1"
3800 source = "registry+https://github.com/rust-lang/crates.io-index"
3801 checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c"
3802 dependencies = [
3803  "phf_shared 0.11.1",
3804 ]
3805
3806 [[package]]
3807 name = "phf_codegen"
3808 version = "0.8.0"
3809 source = "registry+https://github.com/rust-lang/crates.io-index"
3810 checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
3811 dependencies = [
3812  "phf_generator 0.8.0",
3813  "phf_shared 0.8.0",
3814 ]
3815
3816 [[package]]
3817 name = "phf_codegen"
3818 version = "0.10.0"
3819 source = "registry+https://github.com/rust-lang/crates.io-index"
3820 checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
3821 dependencies = [
3822  "phf_generator 0.10.0",
3823  "phf_shared 0.10.0",
3824 ]
3825
3826 [[package]]
3827 name = "phf_generator"
3828 version = "0.8.0"
3829 source = "registry+https://github.com/rust-lang/crates.io-index"
3830 checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
3831 dependencies = [
3832  "phf_shared 0.8.0",
3833  "rand 0.7.3",
3834 ]
3835
3836 [[package]]
3837 name = "phf_generator"
3838 version = "0.10.0"
3839 source = "registry+https://github.com/rust-lang/crates.io-index"
3840 checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
3841 dependencies = [
3842  "phf_shared 0.10.0",
3843  "rand 0.8.5",
3844 ]
3845
3846 [[package]]
3847 name = "phf_shared"
3848 version = "0.8.0"
3849 source = "registry+https://github.com/rust-lang/crates.io-index"
3850 checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
3851 dependencies = [
3852  "siphasher",
3853 ]
3854
3855 [[package]]
3856 name = "phf_shared"
3857 version = "0.10.0"
3858 source = "registry+https://github.com/rust-lang/crates.io-index"
3859 checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
3860 dependencies = [
3861  "siphasher",
3862 ]
3863
3864 [[package]]
3865 name = "phf_shared"
3866 version = "0.11.1"
3867 source = "registry+https://github.com/rust-lang/crates.io-index"
3868 checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
3869 dependencies = [
3870  "siphasher",
3871 ]
3872
3873 [[package]]
3874 name = "pict-rs"
3875 version = "0.4.0-rc.3"
3876 source = "registry+https://github.com/rust-lang/crates.io-index"
3877 checksum = "58d0c1455f5ac5924267265895d9266617f1c34ad93759e1e7b8a1977228ee5c"
3878 dependencies = [
3879  "actix-form-data",
3880  "actix-rt",
3881  "actix-server",
3882  "actix-web",
3883  "anyhow",
3884  "async-trait",
3885  "awc",
3886  "base64 0.21.2",
3887  "clap",
3888  "color-eyre",
3889  "config",
3890  "console-subscriber",
3891  "dashmap",
3892  "futures-util",
3893  "hex",
3894  "md-5",
3895  "mime",
3896  "num_cpus",
3897  "once_cell",
3898  "opentelemetry 0.19.0",
3899  "opentelemetry-otlp 0.12.0",
3900  "pin-project-lite",
3901  "quick-xml 0.28.2",
3902  "rusty-s3",
3903  "serde",
3904  "serde_cbor",
3905  "serde_json",
3906  "serde_urlencoded",
3907  "sha2",
3908  "sled",
3909  "storage-path-generator",
3910  "thiserror",
3911  "time 0.3.15",
3912  "tokio",
3913  "tokio-util 0.7.4",
3914  "toml 0.7.4",
3915  "tracing",
3916  "tracing-actix-web 0.7.5",
3917  "tracing-awc",
3918  "tracing-error",
3919  "tracing-futures",
3920  "tracing-log",
3921  "tracing-opentelemetry 0.19.0",
3922  "tracing-subscriber",
3923  "url",
3924  "uuid",
3925 ]
3926
3927 [[package]]
3928 name = "pin-project"
3929 version = "1.0.12"
3930 source = "registry+https://github.com/rust-lang/crates.io-index"
3931 checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
3932 dependencies = [
3933  "pin-project-internal",
3934 ]
3935
3936 [[package]]
3937 name = "pin-project-internal"
3938 version = "1.0.12"
3939 source = "registry+https://github.com/rust-lang/crates.io-index"
3940 checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
3941 dependencies = [
3942  "proc-macro2",
3943  "quote",
3944  "syn 1.0.103",
3945 ]
3946
3947 [[package]]
3948 name = "pin-project-lite"
3949 version = "0.2.9"
3950 source = "registry+https://github.com/rust-lang/crates.io-index"
3951 checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
3952
3953 [[package]]
3954 name = "pin-utils"
3955 version = "0.1.0"
3956 source = "registry+https://github.com/rust-lang/crates.io-index"
3957 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
3958
3959 [[package]]
3960 name = "pkg-config"
3961 version = "0.3.25"
3962 source = "registry+https://github.com/rust-lang/crates.io-index"
3963 checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
3964
3965 [[package]]
3966 name = "plist"
3967 version = "1.4.3"
3968 source = "registry+https://github.com/rust-lang/crates.io-index"
3969 checksum = "9bd9647b268a3d3e14ff09c23201133a62589c658db02bb7388c7246aafe0590"
3970 dependencies = [
3971  "base64 0.21.2",
3972  "indexmap",
3973  "line-wrap",
3974  "quick-xml 0.28.2",
3975  "serde",
3976  "time 0.3.15",
3977 ]
3978
3979 [[package]]
3980 name = "pmutil"
3981 version = "0.5.3"
3982 source = "registry+https://github.com/rust-lang/crates.io-index"
3983 checksum = "3894e5d549cccbe44afecf72922f277f603cd4bb0219c8342631ef18fffbe004"
3984 dependencies = [
3985  "proc-macro2",
3986  "quote",
3987  "syn 1.0.103",
3988 ]
3989
3990 [[package]]
3991 name = "png"
3992 version = "0.17.6"
3993 source = "registry+https://github.com/rust-lang/crates.io-index"
3994 checksum = "8f0e7f4c94ec26ff209cee506314212639d6c91b80afb82984819fafce9df01c"
3995 dependencies = [
3996  "bitflags 1.3.2",
3997  "crc32fast",
3998  "flate2",
3999  "miniz_oxide 0.5.4",
4000 ]
4001
4002 [[package]]
4003 name = "postgres-protocol"
4004 version = "0.6.5"
4005 source = "registry+https://github.com/rust-lang/crates.io-index"
4006 checksum = "78b7fa9f396f51dffd61546fd8573ee20592287996568e6175ceb0f8699ad75d"
4007 dependencies = [
4008  "base64 0.21.2",
4009  "byteorder",
4010  "bytes",
4011  "fallible-iterator",
4012  "hmac",
4013  "md-5",
4014  "memchr",
4015  "rand 0.8.5",
4016  "sha2",
4017  "stringprep",
4018 ]
4019
4020 [[package]]
4021 name = "postgres-types"
4022 version = "0.2.4"
4023 source = "registry+https://github.com/rust-lang/crates.io-index"
4024 checksum = "73d946ec7d256b04dfadc4e6a3292324e6f417124750fc5c0950f981b703a0f1"
4025 dependencies = [
4026  "bytes",
4027  "fallible-iterator",
4028  "postgres-protocol",
4029 ]
4030
4031 [[package]]
4032 name = "ppv-lite86"
4033 version = "0.2.16"
4034 source = "registry+https://github.com/rust-lang/crates.io-index"
4035 checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
4036
4037 [[package]]
4038 name = "pq-sys"
4039 version = "0.4.7"
4040 source = "registry+https://github.com/rust-lang/crates.io-index"
4041 checksum = "3b845d6d8ec554f972a2c5298aad68953fd64e7441e846075450b44656a016d1"
4042 dependencies = [
4043  "vcpkg",
4044 ]
4045
4046 [[package]]
4047 name = "precomputed-hash"
4048 version = "0.1.1"
4049 source = "registry+https://github.com/rust-lang/crates.io-index"
4050 checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
4051
4052 [[package]]
4053 name = "proc-macro-error"
4054 version = "1.0.4"
4055 source = "registry+https://github.com/rust-lang/crates.io-index"
4056 checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
4057 dependencies = [
4058  "proc-macro-error-attr",
4059  "proc-macro2",
4060  "quote",
4061  "syn 1.0.103",
4062  "version_check",
4063 ]
4064
4065 [[package]]
4066 name = "proc-macro-error-attr"
4067 version = "1.0.4"
4068 source = "registry+https://github.com/rust-lang/crates.io-index"
4069 checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
4070 dependencies = [
4071  "proc-macro2",
4072  "quote",
4073  "version_check",
4074 ]
4075
4076 [[package]]
4077 name = "proc-macro2"
4078 version = "1.0.59"
4079 source = "registry+https://github.com/rust-lang/crates.io-index"
4080 checksum = "6aeca18b86b413c660b781aa319e4e2648a3e6f9eadc9b47e9038e6fe9f3451b"
4081 dependencies = [
4082  "unicode-ident",
4083 ]
4084
4085 [[package]]
4086 name = "prost"
4087 version = "0.9.0"
4088 source = "registry+https://github.com/rust-lang/crates.io-index"
4089 checksum = "444879275cb4fd84958b1a1d5420d15e6fcf7c235fe47f053c9c2a80aceb6001"
4090 dependencies = [
4091  "bytes",
4092  "prost-derive 0.9.0",
4093 ]
4094
4095 [[package]]
4096 name = "prost"
4097 version = "0.11.0"
4098 source = "registry+https://github.com/rust-lang/crates.io-index"
4099 checksum = "399c3c31cdec40583bb68f0b18403400d01ec4289c383aa047560439952c4dd7"
4100 dependencies = [
4101  "bytes",
4102  "prost-derive 0.11.0",
4103 ]
4104
4105 [[package]]
4106 name = "prost-build"
4107 version = "0.9.0"
4108 source = "registry+https://github.com/rust-lang/crates.io-index"
4109 checksum = "62941722fb675d463659e49c4f3fe1fe792ff24fe5bbaa9c08cd3b98a1c354f5"
4110 dependencies = [
4111  "bytes",
4112  "heck 0.3.3",
4113  "itertools",
4114  "lazy_static",
4115  "log",
4116  "multimap",
4117  "petgraph",
4118  "prost 0.9.0",
4119  "prost-types 0.9.0",
4120  "regex",
4121  "tempfile",
4122  "which",
4123 ]
4124
4125 [[package]]
4126 name = "prost-derive"
4127 version = "0.9.0"
4128 source = "registry+https://github.com/rust-lang/crates.io-index"
4129 checksum = "f9cc1a3263e07e0bf68e96268f37665207b49560d98739662cdfaae215c720fe"
4130 dependencies = [
4131  "anyhow",
4132  "itertools",
4133  "proc-macro2",
4134  "quote",
4135  "syn 1.0.103",
4136 ]
4137
4138 [[package]]
4139 name = "prost-derive"
4140 version = "0.11.0"
4141 source = "registry+https://github.com/rust-lang/crates.io-index"
4142 checksum = "7345d5f0e08c0536d7ac7229952590239e77abf0a0100a1b1d890add6ea96364"
4143 dependencies = [
4144  "anyhow",
4145  "itertools",
4146  "proc-macro2",
4147  "quote",
4148  "syn 1.0.103",
4149 ]
4150
4151 [[package]]
4152 name = "prost-types"
4153 version = "0.9.0"
4154 source = "registry+https://github.com/rust-lang/crates.io-index"
4155 checksum = "534b7a0e836e3c482d2693070f982e39e7611da9695d4d1f5a4b186b51faef0a"
4156 dependencies = [
4157  "bytes",
4158  "prost 0.9.0",
4159 ]
4160
4161 [[package]]
4162 name = "prost-types"
4163 version = "0.11.1"
4164 source = "registry+https://github.com/rust-lang/crates.io-index"
4165 checksum = "4dfaa718ad76a44b3415e6c4d53b17c8f99160dcb3a99b10470fce8ad43f6e3e"
4166 dependencies = [
4167  "bytes",
4168  "prost 0.11.0",
4169 ]
4170
4171 [[package]]
4172 name = "psm"
4173 version = "0.1.21"
4174 source = "registry+https://github.com/rust-lang/crates.io-index"
4175 checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874"
4176 dependencies = [
4177  "cc",
4178 ]
4179
4180 [[package]]
4181 name = "quick-xml"
4182 version = "0.27.1"
4183 source = "registry+https://github.com/rust-lang/crates.io-index"
4184 checksum = "ffc053f057dd768a56f62cd7e434c42c831d296968997e9ac1f76ea7c2d14c41"
4185 dependencies = [
4186  "memchr",
4187  "serde",
4188 ]
4189
4190 [[package]]
4191 name = "quick-xml"
4192 version = "0.28.2"
4193 source = "registry+https://github.com/rust-lang/crates.io-index"
4194 checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1"
4195 dependencies = [
4196  "encoding_rs",
4197  "memchr",
4198  "serde",
4199 ]
4200
4201 [[package]]
4202 name = "quote"
4203 version = "1.0.28"
4204 source = "registry+https://github.com/rust-lang/crates.io-index"
4205 checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488"
4206 dependencies = [
4207  "proc-macro2",
4208 ]
4209
4210 [[package]]
4211 name = "quoted_printable"
4212 version = "0.4.5"
4213 source = "registry+https://github.com/rust-lang/crates.io-index"
4214 checksum = "3fee2dce59f7a43418e3382c766554c614e06a552d53a8f07ef499ea4b332c0f"
4215
4216 [[package]]
4217 name = "radium"
4218 version = "0.5.3"
4219 source = "registry+https://github.com/rust-lang/crates.io-index"
4220 checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8"
4221
4222 [[package]]
4223 name = "rand"
4224 version = "0.7.3"
4225 source = "registry+https://github.com/rust-lang/crates.io-index"
4226 checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
4227 dependencies = [
4228  "getrandom 0.1.16",
4229  "libc",
4230  "rand_chacha 0.2.2",
4231  "rand_core 0.5.1",
4232  "rand_hc",
4233  "rand_pcg",
4234 ]
4235
4236 [[package]]
4237 name = "rand"
4238 version = "0.8.5"
4239 source = "registry+https://github.com/rust-lang/crates.io-index"
4240 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
4241 dependencies = [
4242  "libc",
4243  "rand_chacha 0.3.1",
4244  "rand_core 0.6.4",
4245 ]
4246
4247 [[package]]
4248 name = "rand_chacha"
4249 version = "0.2.2"
4250 source = "registry+https://github.com/rust-lang/crates.io-index"
4251 checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
4252 dependencies = [
4253  "ppv-lite86",
4254  "rand_core 0.5.1",
4255 ]
4256
4257 [[package]]
4258 name = "rand_chacha"
4259 version = "0.3.1"
4260 source = "registry+https://github.com/rust-lang/crates.io-index"
4261 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
4262 dependencies = [
4263  "ppv-lite86",
4264  "rand_core 0.6.4",
4265 ]
4266
4267 [[package]]
4268 name = "rand_core"
4269 version = "0.5.1"
4270 source = "registry+https://github.com/rust-lang/crates.io-index"
4271 checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
4272 dependencies = [
4273  "getrandom 0.1.16",
4274 ]
4275
4276 [[package]]
4277 name = "rand_core"
4278 version = "0.6.4"
4279 source = "registry+https://github.com/rust-lang/crates.io-index"
4280 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
4281 dependencies = [
4282  "getrandom 0.2.8",
4283 ]
4284
4285 [[package]]
4286 name = "rand_hc"
4287 version = "0.2.0"
4288 source = "registry+https://github.com/rust-lang/crates.io-index"
4289 checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
4290 dependencies = [
4291  "rand_core 0.5.1",
4292 ]
4293
4294 [[package]]
4295 name = "rand_pcg"
4296 version = "0.2.1"
4297 source = "registry+https://github.com/rust-lang/crates.io-index"
4298 checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
4299 dependencies = [
4300  "rand_core 0.5.1",
4301 ]
4302
4303 [[package]]
4304 name = "readonly"
4305 version = "0.2.8"
4306 source = "registry+https://github.com/rust-lang/crates.io-index"
4307 checksum = "eb656d27c22b5c47154452686cae5e096f12e124daacb36a0bfcb32dbebb39e3"
4308 dependencies = [
4309  "proc-macro2",
4310  "quote",
4311  "syn 2.0.18",
4312 ]
4313
4314 [[package]]
4315 name = "redox_syscall"
4316 version = "0.2.16"
4317 source = "registry+https://github.com/rust-lang/crates.io-index"
4318 checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
4319 dependencies = [
4320  "bitflags 1.3.2",
4321 ]
4322
4323 [[package]]
4324 name = "regex"
4325 version = "1.8.4"
4326 source = "registry+https://github.com/rust-lang/crates.io-index"
4327 checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f"
4328 dependencies = [
4329  "aho-corasick",
4330  "memchr",
4331  "regex-syntax 0.7.2",
4332 ]
4333
4334 [[package]]
4335 name = "regex-automata"
4336 version = "0.1.10"
4337 source = "registry+https://github.com/rust-lang/crates.io-index"
4338 checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
4339 dependencies = [
4340  "regex-syntax 0.6.27",
4341 ]
4342
4343 [[package]]
4344 name = "regex-syntax"
4345 version = "0.6.27"
4346 source = "registry+https://github.com/rust-lang/crates.io-index"
4347 checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
4348
4349 [[package]]
4350 name = "regex-syntax"
4351 version = "0.7.2"
4352 source = "registry+https://github.com/rust-lang/crates.io-index"
4353 checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
4354
4355 [[package]]
4356 name = "remove_dir_all"
4357 version = "0.5.3"
4358 source = "registry+https://github.com/rust-lang/crates.io-index"
4359 checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
4360 dependencies = [
4361  "winapi",
4362 ]
4363
4364 [[package]]
4365 name = "reqwest"
4366 version = "0.11.18"
4367 source = "registry+https://github.com/rust-lang/crates.io-index"
4368 checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
4369 dependencies = [
4370  "base64 0.21.2",
4371  "bytes",
4372  "encoding_rs",
4373  "futures-core",
4374  "futures-util",
4375  "h2",
4376  "http",
4377  "http-body",
4378  "hyper",
4379  "hyper-tls",
4380  "ipnet",
4381  "js-sys",
4382  "log",
4383  "mime",
4384  "mime_guess",
4385  "native-tls",
4386  "once_cell",
4387  "percent-encoding",
4388  "pin-project-lite",
4389  "serde",
4390  "serde_json",
4391  "serde_urlencoded",
4392  "tokio",
4393  "tokio-native-tls",
4394  "tokio-util 0.7.4",
4395  "tower-service",
4396  "url",
4397  "wasm-bindgen",
4398  "wasm-bindgen-futures",
4399  "wasm-streams",
4400  "web-sys",
4401  "winreg",
4402 ]
4403
4404 [[package]]
4405 name = "reqwest-middleware"
4406 version = "0.2.2"
4407 source = "registry+https://github.com/rust-lang/crates.io-index"
4408 checksum = "4531c89d50effe1fac90d095c8b133c20c5c714204feee0bfc3fd158e784209d"
4409 dependencies = [
4410  "anyhow",
4411  "async-trait",
4412  "http",
4413  "reqwest",
4414  "serde",
4415  "task-local-extensions",
4416  "thiserror",
4417 ]
4418
4419 [[package]]
4420 name = "reqwest-tracing"
4421 version = "0.4.4"
4422 source = "registry+https://github.com/rust-lang/crates.io-index"
4423 checksum = "783e8130d2427ddd7897dd3f814d4a3aea31b05deb42a4fdf8c18258fe5aefd1"
4424 dependencies = [
4425  "anyhow",
4426  "async-trait",
4427  "getrandom 0.2.8",
4428  "matchit 0.7.0",
4429  "opentelemetry 0.16.0",
4430  "reqwest",
4431  "reqwest-middleware",
4432  "task-local-extensions",
4433  "tracing",
4434  "tracing-opentelemetry 0.16.0",
4435 ]
4436
4437 [[package]]
4438 name = "retain_mut"
4439 version = "0.1.9"
4440 source = "registry+https://github.com/rust-lang/crates.io-index"
4441 checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
4442
4443 [[package]]
4444 name = "rgb"
4445 version = "0.8.34"
4446 source = "registry+https://github.com/rust-lang/crates.io-index"
4447 checksum = "3603b7d71ca82644f79b5a06d1220e9a58ede60bd32255f698cb1af8838b8db3"
4448 dependencies = [
4449  "bytemuck",
4450 ]
4451
4452 [[package]]
4453 name = "riff"
4454 version = "1.0.1"
4455 source = "registry+https://github.com/rust-lang/crates.io-index"
4456 checksum = "b9b1a3d5f46d53f4a3478e2be4a5a5ce5108ea58b100dcd139830eae7f79a3a1"
4457
4458 [[package]]
4459 name = "ring"
4460 version = "0.16.20"
4461 source = "registry+https://github.com/rust-lang/crates.io-index"
4462 checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
4463 dependencies = [
4464  "cc",
4465  "libc",
4466  "once_cell",
4467  "spin",
4468  "untrusted",
4469  "web-sys",
4470  "winapi",
4471 ]
4472
4473 [[package]]
4474 name = "ron"
4475 version = "0.7.1"
4476 source = "registry+https://github.com/rust-lang/crates.io-index"
4477 checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a"
4478 dependencies = [
4479  "base64 0.13.1",
4480  "bitflags 1.3.2",
4481  "serde",
4482 ]
4483
4484 [[package]]
4485 name = "rosetta-build"
4486 version = "0.1.2"
4487 source = "registry+https://github.com/rust-lang/crates.io-index"
4488 checksum = "6f697b8b3f19bee20f30dc87213d05ce091c43bc733ab1bfc98b0e5cdd9943f3"
4489 dependencies = [
4490  "convert_case",
4491  "lazy_static",
4492  "proc-macro2",
4493  "quote",
4494  "regex",
4495  "tinyjson",
4496 ]
4497
4498 [[package]]
4499 name = "rosetta-i18n"
4500 version = "0.1.2"
4501 source = "registry+https://github.com/rust-lang/crates.io-index"
4502 checksum = "c5298de832602aecc9458398f435d9bff0be57da7aac11221b6ff3d4ef9503de"
4503
4504 [[package]]
4505 name = "rss"
4506 version = "2.0.4"
4507 source = "registry+https://github.com/rust-lang/crates.io-index"
4508 checksum = "9acf62e0f3f4b52f61d3a12d6279e3f0b90d4811b0ae888eabdf61a2e7c03a95"
4509 dependencies = [
4510  "atom_syndication",
4511  "derive_builder",
4512  "never",
4513  "quick-xml 0.28.2",
4514 ]
4515
4516 [[package]]
4517 name = "rust-ini"
4518 version = "0.18.0"
4519 source = "registry+https://github.com/rust-lang/crates.io-index"
4520 checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df"
4521 dependencies = [
4522  "cfg-if",
4523  "ordered-multimap",
4524 ]
4525
4526 [[package]]
4527 name = "rustc-demangle"
4528 version = "0.1.21"
4529 source = "registry+https://github.com/rust-lang/crates.io-index"
4530 checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
4531
4532 [[package]]
4533 name = "rustc-hash"
4534 version = "1.1.0"
4535 source = "registry+https://github.com/rust-lang/crates.io-index"
4536 checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
4537
4538 [[package]]
4539 name = "rustc_version"
4540 version = "0.4.0"
4541 source = "registry+https://github.com/rust-lang/crates.io-index"
4542 checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
4543 dependencies = [
4544  "semver",
4545 ]
4546
4547 [[package]]
4548 name = "rustix"
4549 version = "0.36.5"
4550 source = "registry+https://github.com/rust-lang/crates.io-index"
4551 checksum = "a3807b5d10909833d3e9acd1eb5fb988f79376ff10fce42937de71a449c4c588"
4552 dependencies = [
4553  "bitflags 1.3.2",
4554  "errno",
4555  "io-lifetimes",
4556  "libc",
4557  "linux-raw-sys",
4558  "windows-sys 0.42.0",
4559 ]
4560
4561 [[package]]
4562 name = "rustls"
4563 version = "0.20.7"
4564 source = "registry+https://github.com/rust-lang/crates.io-index"
4565 checksum = "539a2bfe908f471bfa933876bd1eb6a19cf2176d375f82ef7f99530a40e48c2c"
4566 dependencies = [
4567  "log",
4568  "ring",
4569  "sct",
4570  "webpki",
4571 ]
4572
4573 [[package]]
4574 name = "rustls"
4575 version = "0.21.2"
4576 source = "registry+https://github.com/rust-lang/crates.io-index"
4577 checksum = "e32ca28af694bc1bbf399c33a516dbdf1c90090b8ab23c2bc24f834aa2247f5f"
4578 dependencies = [
4579  "log",
4580  "ring",
4581  "rustls-webpki",
4582  "sct",
4583 ]
4584
4585 [[package]]
4586 name = "rustls-webpki"
4587 version = "0.100.1"
4588 source = "registry+https://github.com/rust-lang/crates.io-index"
4589 checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b"
4590 dependencies = [
4591  "ring",
4592  "untrusted",
4593 ]
4594
4595 [[package]]
4596 name = "rustversion"
4597 version = "1.0.9"
4598 source = "registry+https://github.com/rust-lang/crates.io-index"
4599 checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8"
4600
4601 [[package]]
4602 name = "rusty-s3"
4603 version = "0.4.1"
4604 source = "registry+https://github.com/rust-lang/crates.io-index"
4605 checksum = "9c92776b0db0fea6d7cc3abb9d0d745814c71124471a3bfd84b1265a28c06130"
4606 dependencies = [
4607  "base64 0.21.2",
4608  "hmac",
4609  "md-5",
4610  "percent-encoding",
4611  "quick-xml 0.27.1",
4612  "serde",
4613  "serde_json",
4614  "sha2",
4615  "time 0.3.15",
4616  "url",
4617  "zeroize",
4618 ]
4619
4620 [[package]]
4621 name = "ryu"
4622 version = "1.0.11"
4623 source = "registry+https://github.com/rust-lang/crates.io-index"
4624 checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
4625
4626 [[package]]
4627 name = "safemem"
4628 version = "0.3.3"
4629 source = "registry+https://github.com/rust-lang/crates.io-index"
4630 checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
4631
4632 [[package]]
4633 name = "same-file"
4634 version = "1.0.6"
4635 source = "registry+https://github.com/rust-lang/crates.io-index"
4636 checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
4637 dependencies = [
4638  "winapi-util",
4639 ]
4640
4641 [[package]]
4642 name = "schannel"
4643 version = "0.1.20"
4644 source = "registry+https://github.com/rust-lang/crates.io-index"
4645 checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
4646 dependencies = [
4647  "lazy_static",
4648  "windows-sys 0.36.1",
4649 ]
4650
4651 [[package]]
4652 name = "scoped-futures"
4653 version = "0.1.3"
4654 source = "registry+https://github.com/rust-lang/crates.io-index"
4655 checksum = "b1473e24c637950c9bd38763220bea91ec3e095a89f672bbd7a10d03e77ba467"
4656 dependencies = [
4657  "cfg-if",
4658  "pin-utils",
4659 ]
4660
4661 [[package]]
4662 name = "scoped-tls"
4663 version = "1.0.1"
4664 source = "registry+https://github.com/rust-lang/crates.io-index"
4665 checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
4666
4667 [[package]]
4668 name = "scopeguard"
4669 version = "1.1.0"
4670 source = "registry+https://github.com/rust-lang/crates.io-index"
4671 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
4672
4673 [[package]]
4674 name = "scratch"
4675 version = "1.0.2"
4676 source = "registry+https://github.com/rust-lang/crates.io-index"
4677 checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898"
4678
4679 [[package]]
4680 name = "sct"
4681 version = "0.7.0"
4682 source = "registry+https://github.com/rust-lang/crates.io-index"
4683 checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
4684 dependencies = [
4685  "ring",
4686  "untrusted",
4687 ]
4688
4689 [[package]]
4690 name = "security-framework"
4691 version = "2.7.0"
4692 source = "registry+https://github.com/rust-lang/crates.io-index"
4693 checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c"
4694 dependencies = [
4695  "bitflags 1.3.2",
4696  "core-foundation",
4697  "core-foundation-sys",
4698  "libc",
4699  "security-framework-sys",
4700 ]
4701
4702 [[package]]
4703 name = "security-framework-sys"
4704 version = "2.6.1"
4705 source = "registry+https://github.com/rust-lang/crates.io-index"
4706 checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
4707 dependencies = [
4708  "core-foundation-sys",
4709  "libc",
4710 ]
4711
4712 [[package]]
4713 name = "select"
4714 version = "0.5.0"
4715 source = "registry+https://github.com/rust-lang/crates.io-index"
4716 checksum = "8ee061f90afcc8678bef7a78d0d121683f0ba753f740ff7005f833ec445876b7"
4717 dependencies = [
4718  "bit-set",
4719  "html5ever 0.25.2",
4720  "markup5ever_rcdom 0.1.0",
4721 ]
4722
4723 [[package]]
4724 name = "semver"
4725 version = "1.0.14"
4726 source = "registry+https://github.com/rust-lang/crates.io-index"
4727 checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4"
4728
4729 [[package]]
4730 name = "serde"
4731 version = "1.0.164"
4732 source = "registry+https://github.com/rust-lang/crates.io-index"
4733 checksum = "9e8c8cf938e98f769bc164923b06dce91cea1751522f46f8466461af04c9027d"
4734 dependencies = [
4735  "serde_derive",
4736 ]
4737
4738 [[package]]
4739 name = "serde_cbor"
4740 version = "0.11.2"
4741 source = "registry+https://github.com/rust-lang/crates.io-index"
4742 checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
4743 dependencies = [
4744  "half",
4745  "serde",
4746 ]
4747
4748 [[package]]
4749 name = "serde_derive"
4750 version = "1.0.164"
4751 source = "registry+https://github.com/rust-lang/crates.io-index"
4752 checksum = "d9735b638ccc51c28bf6914d90a2e9725b377144fc612c49a611fddd1b631d68"
4753 dependencies = [
4754  "proc-macro2",
4755  "quote",
4756  "syn 2.0.18",
4757 ]
4758
4759 [[package]]
4760 name = "serde_json"
4761 version = "1.0.96"
4762 source = "registry+https://github.com/rust-lang/crates.io-index"
4763 checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
4764 dependencies = [
4765  "indexmap",
4766  "itoa",
4767  "ryu",
4768  "serde",
4769 ]
4770
4771 [[package]]
4772 name = "serde_plain"
4773 version = "1.0.1"
4774 source = "registry+https://github.com/rust-lang/crates.io-index"
4775 checksum = "d6018081315db179d0ce57b1fe4b62a12a0028c9cf9bbef868c9cf477b3c34ae"
4776 dependencies = [
4777  "serde",
4778 ]
4779
4780 [[package]]
4781 name = "serde_spanned"
4782 version = "0.6.2"
4783 source = "registry+https://github.com/rust-lang/crates.io-index"
4784 checksum = "93107647184f6027e3b7dcb2e11034cf95ffa1e3a682c67951963ac69c1c007d"
4785 dependencies = [
4786  "serde",
4787 ]
4788
4789 [[package]]
4790 name = "serde_urlencoded"
4791 version = "0.7.1"
4792 source = "registry+https://github.com/rust-lang/crates.io-index"
4793 checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
4794 dependencies = [
4795  "form_urlencoded",
4796  "itoa",
4797  "ryu",
4798  "serde",
4799 ]
4800
4801 [[package]]
4802 name = "serde_with"
4803 version = "1.14.0"
4804 source = "registry+https://github.com/rust-lang/crates.io-index"
4805 checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff"
4806 dependencies = [
4807  "serde",
4808  "serde_with_macros",
4809 ]
4810
4811 [[package]]
4812 name = "serde_with_macros"
4813 version = "1.5.2"
4814 source = "registry+https://github.com/rust-lang/crates.io-index"
4815 checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082"
4816 dependencies = [
4817  "darling 0.13.4",
4818  "proc-macro2",
4819  "quote",
4820  "syn 1.0.103",
4821 ]
4822
4823 [[package]]
4824 name = "serial_test"
4825 version = "0.9.0"
4826 source = "registry+https://github.com/rust-lang/crates.io-index"
4827 checksum = "92761393ee4dc3ff8f4af487bd58f4307c9329bbedea02cac0089ad9c411e153"
4828 dependencies = [
4829  "dashmap",
4830  "futures",
4831  "lazy_static",
4832  "log",
4833  "parking_lot 0.12.1",
4834  "serial_test_derive",
4835 ]
4836
4837 [[package]]
4838 name = "serial_test_derive"
4839 version = "0.9.0"
4840 source = "registry+https://github.com/rust-lang/crates.io-index"
4841 checksum = "4b6f5d1c3087fb119617cff2966fe3808a80e5eb59a8c1601d5994d66f4346a5"
4842 dependencies = [
4843  "proc-macro-error",
4844  "proc-macro2",
4845  "quote",
4846  "syn 1.0.103",
4847 ]
4848
4849 [[package]]
4850 name = "sha1"
4851 version = "0.10.5"
4852 source = "registry+https://github.com/rust-lang/crates.io-index"
4853 checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
4854 dependencies = [
4855  "cfg-if",
4856  "cpufeatures",
4857  "digest",
4858 ]
4859
4860 [[package]]
4861 name = "sha2"
4862 version = "0.10.6"
4863 source = "registry+https://github.com/rust-lang/crates.io-index"
4864 checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
4865 dependencies = [
4866  "cfg-if",
4867  "cpufeatures",
4868  "digest",
4869 ]
4870
4871 [[package]]
4872 name = "sharded-slab"
4873 version = "0.1.4"
4874 source = "registry+https://github.com/rust-lang/crates.io-index"
4875 checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
4876 dependencies = [
4877  "lazy_static",
4878 ]
4879
4880 [[package]]
4881 name = "signal-hook-registry"
4882 version = "1.4.0"
4883 source = "registry+https://github.com/rust-lang/crates.io-index"
4884 checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
4885 dependencies = [
4886  "libc",
4887 ]
4888
4889 [[package]]
4890 name = "simple_asn1"
4891 version = "0.6.2"
4892 source = "registry+https://github.com/rust-lang/crates.io-index"
4893 checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085"
4894 dependencies = [
4895  "num-bigint",
4896  "num-traits",
4897  "thiserror",
4898  "time 0.3.15",
4899 ]
4900
4901 [[package]]
4902 name = "siphasher"
4903 version = "0.3.10"
4904 source = "registry+https://github.com/rust-lang/crates.io-index"
4905 checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
4906
4907 [[package]]
4908 name = "slab"
4909 version = "0.4.7"
4910 source = "registry+https://github.com/rust-lang/crates.io-index"
4911 checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
4912 dependencies = [
4913  "autocfg",
4914 ]
4915
4916 [[package]]
4917 name = "sled"
4918 version = "0.34.7"
4919 source = "registry+https://github.com/rust-lang/crates.io-index"
4920 checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
4921 dependencies = [
4922  "crc32fast",
4923  "crossbeam-epoch",
4924  "crossbeam-utils",
4925  "fs2",
4926  "fxhash",
4927  "libc",
4928  "log",
4929  "parking_lot 0.11.2",
4930 ]
4931
4932 [[package]]
4933 name = "smallvec"
4934 version = "1.10.0"
4935 source = "registry+https://github.com/rust-lang/crates.io-index"
4936 checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
4937
4938 [[package]]
4939 name = "smart-default"
4940 version = "0.7.1"
4941 source = "registry+https://github.com/rust-lang/crates.io-index"
4942 checksum = "0eb01866308440fc64d6c44d9e86c5cc17adfe33c4d6eed55da9145044d0ffc1"
4943 dependencies = [
4944  "proc-macro2",
4945  "quote",
4946  "syn 2.0.18",
4947 ]
4948
4949 [[package]]
4950 name = "socket2"
4951 version = "0.4.9"
4952 source = "registry+https://github.com/rust-lang/crates.io-index"
4953 checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
4954 dependencies = [
4955  "libc",
4956  "winapi",
4957 ]
4958
4959 [[package]]
4960 name = "socket2"
4961 version = "0.5.3"
4962 source = "registry+https://github.com/rust-lang/crates.io-index"
4963 checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877"
4964 dependencies = [
4965  "libc",
4966  "windows-sys 0.48.0",
4967 ]
4968
4969 [[package]]
4970 name = "spin"
4971 version = "0.5.2"
4972 source = "registry+https://github.com/rust-lang/crates.io-index"
4973 checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
4974
4975 [[package]]
4976 name = "stable_deref_trait"
4977 version = "1.2.0"
4978 source = "registry+https://github.com/rust-lang/crates.io-index"
4979 checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
4980
4981 [[package]]
4982 name = "stacker"
4983 version = "0.1.15"
4984 source = "registry+https://github.com/rust-lang/crates.io-index"
4985 checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce"
4986 dependencies = [
4987  "cc",
4988  "cfg-if",
4989  "libc",
4990  "psm",
4991  "winapi",
4992 ]
4993
4994 [[package]]
4995 name = "static_assertions"
4996 version = "1.1.0"
4997 source = "registry+https://github.com/rust-lang/crates.io-index"
4998 checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
4999
5000 [[package]]
5001 name = "storage-path-generator"
5002 version = "0.1.1"
5003 source = "registry+https://github.com/rust-lang/crates.io-index"
5004 checksum = "7f11d35dae9818c4313649da4a97c8329e29357a7fe584526c1d78f5b63ef836"
5005
5006 [[package]]
5007 name = "string_cache"
5008 version = "0.8.4"
5009 source = "registry+https://github.com/rust-lang/crates.io-index"
5010 checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08"
5011 dependencies = [
5012  "new_debug_unreachable",
5013  "once_cell",
5014  "parking_lot 0.12.1",
5015  "phf_shared 0.10.0",
5016  "precomputed-hash",
5017  "serde",
5018 ]
5019
5020 [[package]]
5021 name = "string_cache_codegen"
5022 version = "0.5.2"
5023 source = "registry+https://github.com/rust-lang/crates.io-index"
5024 checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
5025 dependencies = [
5026  "phf_generator 0.10.0",
5027  "phf_shared 0.10.0",
5028  "proc-macro2",
5029  "quote",
5030 ]
5031
5032 [[package]]
5033 name = "string_enum"
5034 version = "0.3.4"
5035 source = "registry+https://github.com/rust-lang/crates.io-index"
5036 checksum = "91f42363e5ca94ea6f3faee9e3b5e1a4047535ae323f5c0579385fb2ae95874e"
5037 dependencies = [
5038  "pmutil",
5039  "proc-macro2",
5040  "quote",
5041  "swc_macros_common",
5042  "syn 1.0.103",
5043 ]
5044
5045 [[package]]
5046 name = "stringprep"
5047 version = "0.1.2"
5048 source = "registry+https://github.com/rust-lang/crates.io-index"
5049 checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
5050 dependencies = [
5051  "unicode-bidi",
5052  "unicode-normalization",
5053 ]
5054
5055 [[package]]
5056 name = "strsim"
5057 version = "0.10.0"
5058 source = "registry+https://github.com/rust-lang/crates.io-index"
5059 checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
5060
5061 [[package]]
5062 name = "strum"
5063 version = "0.24.1"
5064 source = "registry+https://github.com/rust-lang/crates.io-index"
5065 checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
5066
5067 [[package]]
5068 name = "strum_macros"
5069 version = "0.24.3"
5070 source = "registry+https://github.com/rust-lang/crates.io-index"
5071 checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
5072 dependencies = [
5073  "heck 0.4.0",
5074  "proc-macro2",
5075  "quote",
5076  "rustversion",
5077  "syn 1.0.103",
5078 ]
5079
5080 [[package]]
5081 name = "subtle"
5082 version = "2.4.1"
5083 source = "registry+https://github.com/rust-lang/crates.io-index"
5084 checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
5085
5086 [[package]]
5087 name = "swc_atoms"
5088 version = "0.4.23"
5089 source = "registry+https://github.com/rust-lang/crates.io-index"
5090 checksum = "01b878052680dcec3421ab50384279443dbf93651b05da38e5133e0894a18096"
5091 dependencies = [
5092  "once_cell",
5093  "rustc-hash",
5094  "serde",
5095  "string_cache",
5096  "string_cache_codegen",
5097  "triomphe",
5098 ]
5099
5100 [[package]]
5101 name = "swc_common"
5102 version = "0.29.10"
5103 source = "registry+https://github.com/rust-lang/crates.io-index"
5104 checksum = "ebd844dfbd9969a9ef8430e954661de43edde353d65e987f935a328619698883"
5105 dependencies = [
5106  "ahash 0.7.6",
5107  "ast_node",
5108  "better_scoped_tls",
5109  "cfg-if",
5110  "debug_unreachable",
5111  "either",
5112  "from_variant",
5113  "num-bigint",
5114  "once_cell",
5115  "rustc-hash",
5116  "serde",
5117  "siphasher",
5118  "string_cache",
5119  "swc_atoms",
5120  "swc_eq_ignore_macros",
5121  "swc_visit",
5122  "tracing",
5123  "unicode-width",
5124  "url",
5125 ]
5126
5127 [[package]]
5128 name = "swc_ecma_ast"
5129 version = "0.94.14"
5130 source = "registry+https://github.com/rust-lang/crates.io-index"
5131 checksum = "2c3303de79adce1137e6514e5939686173e7d26c71d91c3067056caa45183547"
5132 dependencies = [
5133  "bitflags 1.3.2",
5134  "is-macro",
5135  "num-bigint",
5136  "scoped-tls",
5137  "serde",
5138  "string_enum",
5139  "swc_atoms",
5140  "swc_common",
5141  "unicode-id",
5142 ]
5143
5144 [[package]]
5145 name = "swc_ecma_parser"
5146 version = "0.122.19"
5147 source = "registry+https://github.com/rust-lang/crates.io-index"
5148 checksum = "8cec064f10003ea47bd5e97d6456a683643da9f705670b97eb1c90bc434f58f3"
5149 dependencies = [
5150  "either",
5151  "enum_kind",
5152  "lexical",
5153  "num-bigint",
5154  "serde",
5155  "smallvec",
5156  "swc_atoms",
5157  "swc_common",
5158  "swc_ecma_ast",
5159  "tracing",
5160  "typed-arena",
5161 ]
5162
5163 [[package]]
5164 name = "swc_eq_ignore_macros"
5165 version = "0.1.1"
5166 source = "registry+https://github.com/rust-lang/crates.io-index"
5167 checksum = "0c20468634668c2bbab581947bb8c75c97158d5a6959f4ba33df20983b20b4f6"
5168 dependencies = [
5169  "pmutil",
5170  "proc-macro2",
5171  "quote",
5172  "syn 1.0.103",
5173 ]
5174
5175 [[package]]
5176 name = "swc_macros_common"
5177 version = "0.3.7"
5178 source = "registry+https://github.com/rust-lang/crates.io-index"
5179 checksum = "3e582c3e3c2269238524923781df5be49e011dbe29cf7683a2215d600a562ea6"
5180 dependencies = [
5181  "pmutil",
5182  "proc-macro2",
5183  "quote",
5184  "syn 1.0.103",
5185 ]
5186
5187 [[package]]
5188 name = "swc_visit"
5189 version = "0.5.5"
5190 source = "registry+https://github.com/rust-lang/crates.io-index"
5191 checksum = "d1d5999f23421c8e21a0f2bc53a0b9e8244f3b421de89471561af2fbe40b9cca"
5192 dependencies = [
5193  "either",
5194  "swc_visit_macros",
5195 ]
5196
5197 [[package]]
5198 name = "swc_visit_macros"
5199 version = "0.5.6"
5200 source = "registry+https://github.com/rust-lang/crates.io-index"
5201 checksum = "ebeed7eb0f545f48ad30f5aab314e5208b735bcea1d1464f26e20f06db904989"
5202 dependencies = [
5203  "Inflector",
5204  "pmutil",
5205  "proc-macro2",
5206  "quote",
5207  "swc_macros_common",
5208  "syn 1.0.103",
5209 ]
5210
5211 [[package]]
5212 name = "syn"
5213 version = "1.0.103"
5214 source = "registry+https://github.com/rust-lang/crates.io-index"
5215 checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d"
5216 dependencies = [
5217  "proc-macro2",
5218  "quote",
5219  "unicode-ident",
5220 ]
5221
5222 [[package]]
5223 name = "syn"
5224 version = "2.0.18"
5225 source = "registry+https://github.com/rust-lang/crates.io-index"
5226 checksum = "32d41677bcbe24c20c52e7c70b0d8db04134c5d1066bf98662e2871ad200ea3e"
5227 dependencies = [
5228  "proc-macro2",
5229  "quote",
5230  "unicode-ident",
5231 ]
5232
5233 [[package]]
5234 name = "sync_wrapper"
5235 version = "0.1.1"
5236 source = "registry+https://github.com/rust-lang/crates.io-index"
5237 checksum = "20518fe4a4c9acf048008599e464deb21beeae3d3578418951a189c235a7a9a8"
5238
5239 [[package]]
5240 name = "syntect"
5241 version = "5.0.0"
5242 source = "registry+https://github.com/rust-lang/crates.io-index"
5243 checksum = "c6c454c27d9d7d9a84c7803aaa3c50cd088d2906fe3c6e42da3209aa623576a8"
5244 dependencies = [
5245  "bincode",
5246  "bitflags 1.3.2",
5247  "fancy-regex",
5248  "flate2",
5249  "fnv",
5250  "lazy_static",
5251  "once_cell",
5252  "plist",
5253  "regex-syntax 0.6.27",
5254  "serde",
5255  "serde_derive",
5256  "serde_json",
5257  "thiserror",
5258  "walkdir",
5259  "yaml-rust",
5260 ]
5261
5262 [[package]]
5263 name = "tap"
5264 version = "1.0.1"
5265 source = "registry+https://github.com/rust-lang/crates.io-index"
5266 checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
5267
5268 [[package]]
5269 name = "task-local-extensions"
5270 version = "0.1.4"
5271 source = "registry+https://github.com/rust-lang/crates.io-index"
5272 checksum = "ba323866e5d033818e3240feeb9f7db2c4296674e4d9e16b97b7bf8f490434e8"
5273 dependencies = [
5274  "pin-utils",
5275 ]
5276
5277 [[package]]
5278 name = "tempfile"
5279 version = "3.3.0"
5280 source = "registry+https://github.com/rust-lang/crates.io-index"
5281 checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
5282 dependencies = [
5283  "cfg-if",
5284  "fastrand",
5285  "libc",
5286  "redox_syscall",
5287  "remove_dir_all",
5288  "winapi",
5289 ]
5290
5291 [[package]]
5292 name = "tendril"
5293 version = "0.4.3"
5294 source = "registry+https://github.com/rust-lang/crates.io-index"
5295 checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
5296 dependencies = [
5297  "futf",
5298  "mac",
5299  "utf-8",
5300 ]
5301
5302 [[package]]
5303 name = "termcolor"
5304 version = "1.1.3"
5305 source = "registry+https://github.com/rust-lang/crates.io-index"
5306 checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
5307 dependencies = [
5308  "winapi-util",
5309 ]
5310
5311 [[package]]
5312 name = "text_lines"
5313 version = "0.6.0"
5314 source = "registry+https://github.com/rust-lang/crates.io-index"
5315 checksum = "7fd5828de7deaa782e1dd713006ae96b3bee32d3279b79eb67ecf8072c059bcf"
5316 dependencies = [
5317  "serde",
5318 ]
5319
5320 [[package]]
5321 name = "thiserror"
5322 version = "1.0.40"
5323 source = "registry+https://github.com/rust-lang/crates.io-index"
5324 checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
5325 dependencies = [
5326  "thiserror-impl",
5327 ]
5328
5329 [[package]]
5330 name = "thiserror-impl"
5331 version = "1.0.40"
5332 source = "registry+https://github.com/rust-lang/crates.io-index"
5333 checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
5334 dependencies = [
5335  "proc-macro2",
5336  "quote",
5337  "syn 2.0.18",
5338 ]
5339
5340 [[package]]
5341 name = "thread_local"
5342 version = "1.1.4"
5343 source = "registry+https://github.com/rust-lang/crates.io-index"
5344 checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
5345 dependencies = [
5346  "once_cell",
5347 ]
5348
5349 [[package]]
5350 name = "time"
5351 version = "0.1.44"
5352 source = "registry+https://github.com/rust-lang/crates.io-index"
5353 checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
5354 dependencies = [
5355  "libc",
5356  "wasi 0.10.0+wasi-snapshot-preview1",
5357  "winapi",
5358 ]
5359
5360 [[package]]
5361 name = "time"
5362 version = "0.3.15"
5363 source = "registry+https://github.com/rust-lang/crates.io-index"
5364 checksum = "d634a985c4d4238ec39cacaed2e7ae552fbd3c476b552c1deac3021b7d7eaf0c"
5365 dependencies = [
5366  "itoa",
5367  "libc",
5368  "num_threads",
5369  "serde",
5370  "time-macros",
5371 ]
5372
5373 [[package]]
5374 name = "time-macros"
5375 version = "0.2.4"
5376 source = "registry+https://github.com/rust-lang/crates.io-index"
5377 checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
5378
5379 [[package]]
5380 name = "tinyjson"
5381 version = "2.5.0"
5382 source = "registry+https://github.com/rust-lang/crates.io-index"
5383 checksum = "b4b2f023483085707f4f0c1238a8a7baf8b502a1d427b9ed2a243884d3d687bb"
5384
5385 [[package]]
5386 name = "tinyvec"
5387 version = "1.6.0"
5388 source = "registry+https://github.com/rust-lang/crates.io-index"
5389 checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
5390 dependencies = [
5391  "tinyvec_macros",
5392 ]
5393
5394 [[package]]
5395 name = "tinyvec_macros"
5396 version = "0.1.0"
5397 source = "registry+https://github.com/rust-lang/crates.io-index"
5398 checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
5399
5400 [[package]]
5401 name = "tokio"
5402 version = "1.28.2"
5403 source = "registry+https://github.com/rust-lang/crates.io-index"
5404 checksum = "94d7b1cfd2aa4011f2de74c2c4c63665e27a71006b0a192dcd2710272e73dfa2"
5405 dependencies = [
5406  "autocfg",
5407  "bytes",
5408  "libc",
5409  "mio",
5410  "num_cpus",
5411  "parking_lot 0.12.1",
5412  "pin-project-lite",
5413  "signal-hook-registry",
5414  "socket2 0.4.9",
5415  "tokio-macros",
5416  "tracing",
5417  "windows-sys 0.48.0",
5418 ]
5419
5420 [[package]]
5421 name = "tokio-io-timeout"
5422 version = "1.2.0"
5423 source = "registry+https://github.com/rust-lang/crates.io-index"
5424 checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
5425 dependencies = [
5426  "pin-project-lite",
5427  "tokio",
5428 ]
5429
5430 [[package]]
5431 name = "tokio-macros"
5432 version = "2.1.0"
5433 source = "registry+https://github.com/rust-lang/crates.io-index"
5434 checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
5435 dependencies = [
5436  "proc-macro2",
5437  "quote",
5438  "syn 2.0.18",
5439 ]
5440
5441 [[package]]
5442 name = "tokio-native-tls"
5443 version = "0.3.0"
5444 source = "registry+https://github.com/rust-lang/crates.io-index"
5445 checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
5446 dependencies = [
5447  "native-tls",
5448  "tokio",
5449 ]
5450
5451 [[package]]
5452 name = "tokio-postgres"
5453 version = "0.7.8"
5454 source = "registry+https://github.com/rust-lang/crates.io-index"
5455 checksum = "6e89f6234aa8fd43779746012fcf53603cdb91fdd8399aa0de868c2d56b6dde1"
5456 dependencies = [
5457  "async-trait",
5458  "byteorder",
5459  "bytes",
5460  "fallible-iterator",
5461  "futures-channel",
5462  "futures-util",
5463  "log",
5464  "parking_lot 0.12.1",
5465  "percent-encoding",
5466  "phf 0.11.1",
5467  "pin-project-lite",
5468  "postgres-protocol",
5469  "postgres-types",
5470  "socket2 0.5.3",
5471  "tokio",
5472  "tokio-util 0.7.4",
5473 ]
5474
5475 [[package]]
5476 name = "tokio-postgres-rustls"
5477 version = "0.10.0"
5478 source = "registry+https://github.com/rust-lang/crates.io-index"
5479 checksum = "dd5831152cb0d3f79ef5523b357319ba154795d64c7078b2daa95a803b54057f"
5480 dependencies = [
5481  "futures",
5482  "ring",
5483  "rustls 0.21.2",
5484  "tokio",
5485  "tokio-postgres",
5486  "tokio-rustls 0.24.1",
5487 ]
5488
5489 [[package]]
5490 name = "tokio-rustls"
5491 version = "0.23.4"
5492 source = "registry+https://github.com/rust-lang/crates.io-index"
5493 checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
5494 dependencies = [
5495  "rustls 0.20.7",
5496  "tokio",
5497  "webpki",
5498 ]
5499
5500 [[package]]
5501 name = "tokio-rustls"
5502 version = "0.24.1"
5503 source = "registry+https://github.com/rust-lang/crates.io-index"
5504 checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
5505 dependencies = [
5506  "rustls 0.21.2",
5507  "tokio",
5508 ]
5509
5510 [[package]]
5511 name = "tokio-stream"
5512 version = "0.1.11"
5513 source = "registry+https://github.com/rust-lang/crates.io-index"
5514 checksum = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce"
5515 dependencies = [
5516  "futures-core",
5517  "pin-project-lite",
5518  "tokio",
5519 ]
5520
5521 [[package]]
5522 name = "tokio-util"
5523 version = "0.6.10"
5524 source = "registry+https://github.com/rust-lang/crates.io-index"
5525 checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507"
5526 dependencies = [
5527  "bytes",
5528  "futures-core",
5529  "futures-sink",
5530  "log",
5531  "pin-project-lite",
5532  "tokio",
5533 ]
5534
5535 [[package]]
5536 name = "tokio-util"
5537 version = "0.7.4"
5538 source = "registry+https://github.com/rust-lang/crates.io-index"
5539 checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
5540 dependencies = [
5541  "bytes",
5542  "futures-core",
5543  "futures-sink",
5544  "pin-project-lite",
5545  "tokio",
5546  "tracing",
5547 ]
5548
5549 [[package]]
5550 name = "toml"
5551 version = "0.5.9"
5552 source = "registry+https://github.com/rust-lang/crates.io-index"
5553 checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
5554 dependencies = [
5555  "serde",
5556 ]
5557
5558 [[package]]
5559 name = "toml"
5560 version = "0.7.4"
5561 source = "registry+https://github.com/rust-lang/crates.io-index"
5562 checksum = "d6135d499e69981f9ff0ef2167955a5333c35e36f6937d382974566b3d5b94ec"
5563 dependencies = [
5564  "serde",
5565  "serde_spanned",
5566  "toml_datetime",
5567  "toml_edit",
5568 ]
5569
5570 [[package]]
5571 name = "toml_datetime"
5572 version = "0.6.2"
5573 source = "registry+https://github.com/rust-lang/crates.io-index"
5574 checksum = "5a76a9312f5ba4c2dec6b9161fdf25d87ad8a09256ccea5a556fef03c706a10f"
5575 dependencies = [
5576  "serde",
5577 ]
5578
5579 [[package]]
5580 name = "toml_edit"
5581 version = "0.19.10"
5582 source = "registry+https://github.com/rust-lang/crates.io-index"
5583 checksum = "2380d56e8670370eee6566b0bfd4265f65b3f432e8c6d85623f728d4fa31f739"
5584 dependencies = [
5585  "indexmap",
5586  "serde",
5587  "serde_spanned",
5588  "toml_datetime",
5589  "winnow",
5590 ]
5591
5592 [[package]]
5593 name = "tonic"
5594 version = "0.6.2"
5595 source = "registry+https://github.com/rust-lang/crates.io-index"
5596 checksum = "ff08f4649d10a70ffa3522ca559031285d8e421d727ac85c60825761818f5d0a"
5597 dependencies = [
5598  "async-stream",
5599  "async-trait",
5600  "base64 0.13.1",
5601  "bytes",
5602  "futures-core",
5603  "futures-util",
5604  "h2",
5605  "http",
5606  "http-body",
5607  "hyper",
5608  "hyper-timeout",
5609  "percent-encoding",
5610  "pin-project",
5611  "prost 0.9.0",
5612  "prost-derive 0.9.0",
5613  "tokio",
5614  "tokio-stream",
5615  "tokio-util 0.6.10",
5616  "tower",
5617  "tower-layer",
5618  "tower-service",
5619  "tracing",
5620  "tracing-futures",
5621 ]
5622
5623 [[package]]
5624 name = "tonic"
5625 version = "0.8.2"
5626 source = "registry+https://github.com/rust-lang/crates.io-index"
5627 checksum = "55b9af819e54b8f33d453655bef9b9acc171568fb49523078d0cc4e7484200ec"
5628 dependencies = [
5629  "async-stream",
5630  "async-trait",
5631  "axum 0.5.17",
5632  "base64 0.13.1",
5633  "bytes",
5634  "futures-core",
5635  "futures-util",
5636  "h2",
5637  "http",
5638  "http-body",
5639  "hyper",
5640  "hyper-timeout",
5641  "percent-encoding",
5642  "pin-project",
5643  "prost 0.11.0",
5644  "prost-derive 0.11.0",
5645  "tokio",
5646  "tokio-stream",
5647  "tokio-util 0.7.4",
5648  "tower",
5649  "tower-layer",
5650  "tower-service",
5651  "tracing",
5652  "tracing-futures",
5653 ]
5654
5655 [[package]]
5656 name = "tonic"
5657 version = "0.9.2"
5658 source = "registry+https://github.com/rust-lang/crates.io-index"
5659 checksum = "3082666a3a6433f7f511c7192923fa1fe07c69332d3c6a2e6bb040b569199d5a"
5660 dependencies = [
5661  "async-trait",
5662  "axum 0.6.18",
5663  "base64 0.21.2",
5664  "bytes",
5665  "futures-core",
5666  "futures-util",
5667  "h2",
5668  "http",
5669  "http-body",
5670  "hyper",
5671  "hyper-timeout",
5672  "percent-encoding",
5673  "pin-project",
5674  "prost 0.11.0",
5675  "tokio",
5676  "tokio-stream",
5677  "tower",
5678  "tower-layer",
5679  "tower-service",
5680  "tracing",
5681 ]
5682
5683 [[package]]
5684 name = "tonic-build"
5685 version = "0.6.2"
5686 source = "registry+https://github.com/rust-lang/crates.io-index"
5687 checksum = "9403f1bafde247186684b230dc6f38b5cd514584e8bec1dd32514be4745fa757"
5688 dependencies = [
5689  "proc-macro2",
5690  "prost-build",
5691  "quote",
5692  "syn 1.0.103",
5693 ]
5694
5695 [[package]]
5696 name = "totp-rs"
5697 version = "5.0.2"
5698 source = "registry+https://github.com/rust-lang/crates.io-index"
5699 checksum = "0ad5e73765ff14ae797c1a61ee0c7beaf21b4e4a0047844300e332c6c24df1fc"
5700 dependencies = [
5701  "base32",
5702  "constant_time_eq",
5703  "hmac",
5704  "rand 0.8.5",
5705  "sha1",
5706  "sha2",
5707  "url",
5708  "urlencoding",
5709 ]
5710
5711 [[package]]
5712 name = "tower"
5713 version = "0.4.13"
5714 source = "registry+https://github.com/rust-lang/crates.io-index"
5715 checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
5716 dependencies = [
5717  "futures-core",
5718  "futures-util",
5719  "indexmap",
5720  "pin-project",
5721  "pin-project-lite",
5722  "rand 0.8.5",
5723  "slab",
5724  "tokio",
5725  "tokio-util 0.7.4",
5726  "tower-layer",
5727  "tower-service",
5728  "tracing",
5729 ]
5730
5731 [[package]]
5732 name = "tower-http"
5733 version = "0.3.4"
5734 source = "registry+https://github.com/rust-lang/crates.io-index"
5735 checksum = "3c530c8675c1dbf98facee631536fa116b5fb6382d7dd6dc1b118d970eafe3ba"
5736 dependencies = [
5737  "bitflags 1.3.2",
5738  "bytes",
5739  "futures-core",
5740  "futures-util",
5741  "http",
5742  "http-body",
5743  "http-range-header",
5744  "pin-project-lite",
5745  "tower",
5746  "tower-layer",
5747  "tower-service",
5748 ]
5749
5750 [[package]]
5751 name = "tower-layer"
5752 version = "0.3.2"
5753 source = "registry+https://github.com/rust-lang/crates.io-index"
5754 checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
5755
5756 [[package]]
5757 name = "tower-service"
5758 version = "0.3.2"
5759 source = "registry+https://github.com/rust-lang/crates.io-index"
5760 checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
5761
5762 [[package]]
5763 name = "tracing"
5764 version = "0.1.37"
5765 source = "registry+https://github.com/rust-lang/crates.io-index"
5766 checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
5767 dependencies = [
5768  "cfg-if",
5769  "log",
5770  "pin-project-lite",
5771  "tracing-attributes",
5772  "tracing-core",
5773 ]
5774
5775 [[package]]
5776 name = "tracing-actix-web"
5777 version = "0.6.2"
5778 source = "registry+https://github.com/rust-lang/crates.io-index"
5779 checksum = "d725b8fa6ef307b3f4856913523337de45c47cc79271bafd7acfb39559e3a2da"
5780 dependencies = [
5781  "actix-web",
5782  "pin-project",
5783  "tracing",
5784  "uuid",
5785 ]
5786
5787 [[package]]
5788 name = "tracing-actix-web"
5789 version = "0.7.5"
5790 source = "registry+https://github.com/rust-lang/crates.io-index"
5791 checksum = "ce52ffaf2d544e317d3bef63f49a6a22022866505fa4840a4339b1756834a2a9"
5792 dependencies = [
5793  "actix-web",
5794  "opentelemetry 0.19.0",
5795  "pin-project",
5796  "tracing",
5797  "tracing-opentelemetry 0.19.0",
5798  "uuid",
5799 ]
5800
5801 [[package]]
5802 name = "tracing-attributes"
5803 version = "0.1.23"
5804 source = "registry+https://github.com/rust-lang/crates.io-index"
5805 checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
5806 dependencies = [
5807  "proc-macro2",
5808  "quote",
5809  "syn 1.0.103",
5810 ]
5811
5812 [[package]]
5813 name = "tracing-awc"
5814 version = "0.1.7"
5815 source = "registry+https://github.com/rust-lang/crates.io-index"
5816 checksum = "eaa1a68fce4d1a7fad459f81ddcafbdd7c6f6bcda5c7e07d5f42db637931fac7"
5817 dependencies = [
5818  "actix-http",
5819  "actix-service",
5820  "awc",
5821  "bytes",
5822  "futures-core",
5823  "opentelemetry 0.19.0",
5824  "pin-project-lite",
5825  "tracing",
5826  "tracing-opentelemetry 0.19.0",
5827 ]
5828
5829 [[package]]
5830 name = "tracing-core"
5831 version = "0.1.30"
5832 source = "registry+https://github.com/rust-lang/crates.io-index"
5833 checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
5834 dependencies = [
5835  "once_cell",
5836  "valuable",
5837 ]
5838
5839 [[package]]
5840 name = "tracing-error"
5841 version = "0.2.0"
5842 source = "registry+https://github.com/rust-lang/crates.io-index"
5843 checksum = "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e"
5844 dependencies = [
5845  "tracing",
5846  "tracing-subscriber",
5847 ]
5848
5849 [[package]]
5850 name = "tracing-futures"
5851 version = "0.2.5"
5852 source = "registry+https://github.com/rust-lang/crates.io-index"
5853 checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
5854 dependencies = [
5855  "pin-project",
5856  "tracing",
5857 ]
5858
5859 [[package]]
5860 name = "tracing-log"
5861 version = "0.1.3"
5862 source = "registry+https://github.com/rust-lang/crates.io-index"
5863 checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
5864 dependencies = [
5865  "lazy_static",
5866  "log",
5867  "tracing-core",
5868 ]
5869
5870 [[package]]
5871 name = "tracing-opentelemetry"
5872 version = "0.16.0"
5873 source = "registry+https://github.com/rust-lang/crates.io-index"
5874 checksum = "3ffbf13a0f8b054a4e59df3a173b818e9c6177c02789871f2073977fd0062076"
5875 dependencies = [
5876  "opentelemetry 0.16.0",
5877  "tracing",
5878  "tracing-core",
5879  "tracing-log",
5880  "tracing-subscriber",
5881 ]
5882
5883 [[package]]
5884 name = "tracing-opentelemetry"
5885 version = "0.17.4"
5886 source = "registry+https://github.com/rust-lang/crates.io-index"
5887 checksum = "fbbe89715c1dbbb790059e2565353978564924ee85017b5fff365c872ff6721f"
5888 dependencies = [
5889  "once_cell",
5890  "opentelemetry 0.17.0",
5891  "tracing",
5892  "tracing-core",
5893  "tracing-log",
5894  "tracing-subscriber",
5895 ]
5896
5897 [[package]]
5898 name = "tracing-opentelemetry"
5899 version = "0.19.0"
5900 source = "registry+https://github.com/rust-lang/crates.io-index"
5901 checksum = "00a39dcf9bfc1742fa4d6215253b33a6e474be78275884c216fc2a06267b3600"
5902 dependencies = [
5903  "once_cell",
5904  "opentelemetry 0.19.0",
5905  "tracing",
5906  "tracing-core",
5907  "tracing-log",
5908  "tracing-subscriber",
5909 ]
5910
5911 [[package]]
5912 name = "tracing-serde"
5913 version = "0.1.3"
5914 source = "registry+https://github.com/rust-lang/crates.io-index"
5915 checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
5916 dependencies = [
5917  "serde",
5918  "tracing-core",
5919 ]
5920
5921 [[package]]
5922 name = "tracing-subscriber"
5923 version = "0.3.17"
5924 source = "registry+https://github.com/rust-lang/crates.io-index"
5925 checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
5926 dependencies = [
5927  "matchers",
5928  "nu-ansi-term",
5929  "once_cell",
5930  "regex",
5931  "serde",
5932  "serde_json",
5933  "sharded-slab",
5934  "smallvec",
5935  "thread_local",
5936  "tracing",
5937  "tracing-core",
5938  "tracing-log",
5939  "tracing-serde",
5940 ]
5941
5942 [[package]]
5943 name = "triomphe"
5944 version = "0.1.8"
5945 source = "registry+https://github.com/rust-lang/crates.io-index"
5946 checksum = "f1ee9bd9239c339d714d657fac840c6d2a4f9c45f4f9ec7b0975113458be78db"
5947 dependencies = [
5948  "serde",
5949  "stable_deref_trait",
5950 ]
5951
5952 [[package]]
5953 name = "try-lock"
5954 version = "0.2.3"
5955 source = "registry+https://github.com/rust-lang/crates.io-index"
5956 checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
5957
5958 [[package]]
5959 name = "ts-rs"
5960 version = "6.2.1"
5961 source = "registry+https://github.com/rust-lang/crates.io-index"
5962 checksum = "4added4070a4fdf9df03457206cd2e4b12417c8560a2954d91ffcbe60177a56a"
5963 dependencies = [
5964  "chrono",
5965  "dprint-plugin-typescript",
5966  "thiserror",
5967  "ts-rs-macros",
5968 ]
5969
5970 [[package]]
5971 name = "ts-rs-macros"
5972 version = "6.2.0"
5973 source = "registry+https://github.com/rust-lang/crates.io-index"
5974 checksum = "9f807fdb3151fee75df7485b901a89624358cd07a67a8fb1a5831bf5a07681ff"
5975 dependencies = [
5976  "Inflector",
5977  "proc-macro2",
5978  "quote",
5979  "syn 1.0.103",
5980  "termcolor",
5981 ]
5982
5983 [[package]]
5984 name = "typed-arena"
5985 version = "2.0.2"
5986 source = "registry+https://github.com/rust-lang/crates.io-index"
5987 checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
5988
5989 [[package]]
5990 name = "typed-builder"
5991 version = "0.10.0"
5992 source = "registry+https://github.com/rust-lang/crates.io-index"
5993 checksum = "89851716b67b937e393b3daa8423e67ddfc4bbbf1654bcf05488e95e0828db0c"
5994 dependencies = [
5995  "proc-macro2",
5996  "quote",
5997  "syn 1.0.103",
5998 ]
5999
6000 [[package]]
6001 name = "typenum"
6002 version = "1.15.0"
6003 source = "registry+https://github.com/rust-lang/crates.io-index"
6004 checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
6005
6006 [[package]]
6007 name = "ucd-trie"
6008 version = "0.1.5"
6009 source = "registry+https://github.com/rust-lang/crates.io-index"
6010 checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
6011
6012 [[package]]
6013 name = "unicase"
6014 version = "2.6.0"
6015 source = "registry+https://github.com/rust-lang/crates.io-index"
6016 checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
6017 dependencies = [
6018  "version_check",
6019 ]
6020
6021 [[package]]
6022 name = "unicode-bidi"
6023 version = "0.3.13"
6024 source = "registry+https://github.com/rust-lang/crates.io-index"
6025 checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
6026
6027 [[package]]
6028 name = "unicode-general-category"
6029 version = "0.6.0"
6030 source = "registry+https://github.com/rust-lang/crates.io-index"
6031 checksum = "2281c8c1d221438e373249e065ca4989c4c36952c211ff21a0ee91c44a3869e7"
6032
6033 [[package]]
6034 name = "unicode-id"
6035 version = "0.3.3"
6036 source = "registry+https://github.com/rust-lang/crates.io-index"
6037 checksum = "d70b6494226b36008c8366c288d77190b3fad2eb4c10533139c1c1f461127f1a"
6038
6039 [[package]]
6040 name = "unicode-ident"
6041 version = "1.0.5"
6042 source = "registry+https://github.com/rust-lang/crates.io-index"
6043 checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
6044
6045 [[package]]
6046 name = "unicode-normalization"
6047 version = "0.1.22"
6048 source = "registry+https://github.com/rust-lang/crates.io-index"
6049 checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
6050 dependencies = [
6051  "tinyvec",
6052 ]
6053
6054 [[package]]
6055 name = "unicode-segmentation"
6056 version = "1.10.0"
6057 source = "registry+https://github.com/rust-lang/crates.io-index"
6058 checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a"
6059
6060 [[package]]
6061 name = "unicode-width"
6062 version = "0.1.10"
6063 source = "registry+https://github.com/rust-lang/crates.io-index"
6064 checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
6065
6066 [[package]]
6067 name = "unicode-xid"
6068 version = "0.2.4"
6069 source = "registry+https://github.com/rust-lang/crates.io-index"
6070 checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
6071
6072 [[package]]
6073 name = "unreachable"
6074 version = "0.1.1"
6075 source = "registry+https://github.com/rust-lang/crates.io-index"
6076 checksum = "1f2ae5ddb18e1c92664717616dd9549dde73f539f01bd7b77c2edb2446bdff91"
6077 dependencies = [
6078  "void",
6079 ]
6080
6081 [[package]]
6082 name = "untrusted"
6083 version = "0.7.1"
6084 source = "registry+https://github.com/rust-lang/crates.io-index"
6085 checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
6086
6087 [[package]]
6088 name = "url"
6089 version = "2.4.0"
6090 source = "registry+https://github.com/rust-lang/crates.io-index"
6091 checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
6092 dependencies = [
6093  "form_urlencoded",
6094  "idna 0.4.0",
6095  "percent-encoding",
6096  "serde",
6097 ]
6098
6099 [[package]]
6100 name = "urlencoding"
6101 version = "2.1.2"
6102 source = "registry+https://github.com/rust-lang/crates.io-index"
6103 checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9"
6104
6105 [[package]]
6106 name = "utf-8"
6107 version = "0.7.6"
6108 source = "registry+https://github.com/rust-lang/crates.io-index"
6109 checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
6110
6111 [[package]]
6112 name = "utf8-width"
6113 version = "0.1.6"
6114 source = "registry+https://github.com/rust-lang/crates.io-index"
6115 checksum = "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1"
6116
6117 [[package]]
6118 name = "uuid"
6119 version = "1.3.4"
6120 source = "registry+https://github.com/rust-lang/crates.io-index"
6121 checksum = "0fa2982af2eec27de306107c027578ff7f423d65f7250e40ce0fea8f45248b81"
6122 dependencies = [
6123  "getrandom 0.2.8",
6124  "serde",
6125 ]
6126
6127 [[package]]
6128 name = "valuable"
6129 version = "0.1.0"
6130 source = "registry+https://github.com/rust-lang/crates.io-index"
6131 checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
6132
6133 [[package]]
6134 name = "vcpkg"
6135 version = "0.2.15"
6136 source = "registry+https://github.com/rust-lang/crates.io-index"
6137 checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
6138
6139 [[package]]
6140 name = "version_check"
6141 version = "0.9.4"
6142 source = "registry+https://github.com/rust-lang/crates.io-index"
6143 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
6144
6145 [[package]]
6146 name = "void"
6147 version = "1.0.2"
6148 source = "registry+https://github.com/rust-lang/crates.io-index"
6149 checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
6150
6151 [[package]]
6152 name = "walkdir"
6153 version = "2.3.2"
6154 source = "registry+https://github.com/rust-lang/crates.io-index"
6155 checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
6156 dependencies = [
6157  "same-file",
6158  "winapi",
6159  "winapi-util",
6160 ]
6161
6162 [[package]]
6163 name = "want"
6164 version = "0.3.0"
6165 source = "registry+https://github.com/rust-lang/crates.io-index"
6166 checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
6167 dependencies = [
6168  "log",
6169  "try-lock",
6170 ]
6171
6172 [[package]]
6173 name = "wasi"
6174 version = "0.9.0+wasi-snapshot-preview1"
6175 source = "registry+https://github.com/rust-lang/crates.io-index"
6176 checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
6177
6178 [[package]]
6179 name = "wasi"
6180 version = "0.10.0+wasi-snapshot-preview1"
6181 source = "registry+https://github.com/rust-lang/crates.io-index"
6182 checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
6183
6184 [[package]]
6185 name = "wasi"
6186 version = "0.11.0+wasi-snapshot-preview1"
6187 source = "registry+https://github.com/rust-lang/crates.io-index"
6188 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
6189
6190 [[package]]
6191 name = "wasm-bindgen"
6192 version = "0.2.83"
6193 source = "registry+https://github.com/rust-lang/crates.io-index"
6194 checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
6195 dependencies = [
6196  "cfg-if",
6197  "wasm-bindgen-macro",
6198 ]
6199
6200 [[package]]
6201 name = "wasm-bindgen-backend"
6202 version = "0.2.83"
6203 source = "registry+https://github.com/rust-lang/crates.io-index"
6204 checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
6205 dependencies = [
6206  "bumpalo",
6207  "log",
6208  "once_cell",
6209  "proc-macro2",
6210  "quote",
6211  "syn 1.0.103",
6212  "wasm-bindgen-shared",
6213 ]
6214
6215 [[package]]
6216 name = "wasm-bindgen-futures"
6217 version = "0.4.33"
6218 source = "registry+https://github.com/rust-lang/crates.io-index"
6219 checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d"
6220 dependencies = [
6221  "cfg-if",
6222  "js-sys",
6223  "wasm-bindgen",
6224  "web-sys",
6225 ]
6226
6227 [[package]]
6228 name = "wasm-bindgen-macro"
6229 version = "0.2.83"
6230 source = "registry+https://github.com/rust-lang/crates.io-index"
6231 checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
6232 dependencies = [
6233  "quote",
6234  "wasm-bindgen-macro-support",
6235 ]
6236
6237 [[package]]
6238 name = "wasm-bindgen-macro-support"
6239 version = "0.2.83"
6240 source = "registry+https://github.com/rust-lang/crates.io-index"
6241 checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
6242 dependencies = [
6243  "proc-macro2",
6244  "quote",
6245  "syn 1.0.103",
6246  "wasm-bindgen-backend",
6247  "wasm-bindgen-shared",
6248 ]
6249
6250 [[package]]
6251 name = "wasm-bindgen-shared"
6252 version = "0.2.83"
6253 source = "registry+https://github.com/rust-lang/crates.io-index"
6254 checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
6255
6256 [[package]]
6257 name = "wasm-streams"
6258 version = "0.2.3"
6259 source = "registry+https://github.com/rust-lang/crates.io-index"
6260 checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078"
6261 dependencies = [
6262  "futures-util",
6263  "js-sys",
6264  "wasm-bindgen",
6265  "wasm-bindgen-futures",
6266  "web-sys",
6267 ]
6268
6269 [[package]]
6270 name = "wav"
6271 version = "1.0.0"
6272 source = "registry+https://github.com/rust-lang/crates.io-index"
6273 checksum = "a65e199c799848b4f997072aa4d673c034f80f40191f97fe2f0a23f410be1609"
6274 dependencies = [
6275  "riff",
6276 ]
6277
6278 [[package]]
6279 name = "web-sys"
6280 version = "0.3.60"
6281 source = "registry+https://github.com/rust-lang/crates.io-index"
6282 checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
6283 dependencies = [
6284  "js-sys",
6285  "wasm-bindgen",
6286 ]
6287
6288 [[package]]
6289 name = "webmention"
6290 version = "0.4.0"
6291 source = "registry+https://github.com/rust-lang/crates.io-index"
6292 checksum = "31c1f9ad3af9421b7e94faef6f884d32bd60b6ea00ff05d84df74392a89c2b9f"
6293 dependencies = [
6294  "anyhow",
6295  "nom 6.1.2",
6296  "reqwest",
6297  "select",
6298  "serde",
6299  "thiserror",
6300  "url",
6301 ]
6302
6303 [[package]]
6304 name = "webpage"
6305 version = "1.6.0"
6306 source = "registry+https://github.com/rust-lang/crates.io-index"
6307 checksum = "8598785beeb5af95abe95e7bb20c7e747d1188347080d6811d5a56d2b9a5f368"
6308 dependencies = [
6309  "html5ever 0.26.0",
6310  "markup5ever_rcdom 0.2.0",
6311  "serde",
6312  "serde_json",
6313 ]
6314
6315 [[package]]
6316 name = "webpki"
6317 version = "0.22.0"
6318 source = "registry+https://github.com/rust-lang/crates.io-index"
6319 checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
6320 dependencies = [
6321  "ring",
6322  "untrusted",
6323 ]
6324
6325 [[package]]
6326 name = "webpki-roots"
6327 version = "0.22.5"
6328 source = "registry+https://github.com/rust-lang/crates.io-index"
6329 checksum = "368bfe657969fb01238bb756d351dcade285e0f6fcbd36dcb23359a5169975be"
6330 dependencies = [
6331  "webpki",
6332 ]
6333
6334 [[package]]
6335 name = "which"
6336 version = "4.3.0"
6337 source = "registry+https://github.com/rust-lang/crates.io-index"
6338 checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b"
6339 dependencies = [
6340  "either",
6341  "libc",
6342  "once_cell",
6343 ]
6344
6345 [[package]]
6346 name = "winapi"
6347 version = "0.3.9"
6348 source = "registry+https://github.com/rust-lang/crates.io-index"
6349 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
6350 dependencies = [
6351  "winapi-i686-pc-windows-gnu",
6352  "winapi-x86_64-pc-windows-gnu",
6353 ]
6354
6355 [[package]]
6356 name = "winapi-i686-pc-windows-gnu"
6357 version = "0.4.0"
6358 source = "registry+https://github.com/rust-lang/crates.io-index"
6359 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
6360
6361 [[package]]
6362 name = "winapi-util"
6363 version = "0.1.5"
6364 source = "registry+https://github.com/rust-lang/crates.io-index"
6365 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
6366 dependencies = [
6367  "winapi",
6368 ]
6369
6370 [[package]]
6371 name = "winapi-x86_64-pc-windows-gnu"
6372 version = "0.4.0"
6373 source = "registry+https://github.com/rust-lang/crates.io-index"
6374 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
6375
6376 [[package]]
6377 name = "windows-sys"
6378 version = "0.36.1"
6379 source = "registry+https://github.com/rust-lang/crates.io-index"
6380 checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
6381 dependencies = [
6382  "windows_aarch64_msvc 0.36.1",
6383  "windows_i686_gnu 0.36.1",
6384  "windows_i686_msvc 0.36.1",
6385  "windows_x86_64_gnu 0.36.1",
6386  "windows_x86_64_msvc 0.36.1",
6387 ]
6388
6389 [[package]]
6390 name = "windows-sys"
6391 version = "0.42.0"
6392 source = "registry+https://github.com/rust-lang/crates.io-index"
6393 checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
6394 dependencies = [
6395  "windows_aarch64_gnullvm 0.42.2",
6396  "windows_aarch64_msvc 0.42.2",
6397  "windows_i686_gnu 0.42.2",
6398  "windows_i686_msvc 0.42.2",
6399  "windows_x86_64_gnu 0.42.2",
6400  "windows_x86_64_gnullvm 0.42.2",
6401  "windows_x86_64_msvc 0.42.2",
6402 ]
6403
6404 [[package]]
6405 name = "windows-sys"
6406 version = "0.48.0"
6407 source = "registry+https://github.com/rust-lang/crates.io-index"
6408 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
6409 dependencies = [
6410  "windows-targets",
6411 ]
6412
6413 [[package]]
6414 name = "windows-targets"
6415 version = "0.48.0"
6416 source = "registry+https://github.com/rust-lang/crates.io-index"
6417 checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
6418 dependencies = [
6419  "windows_aarch64_gnullvm 0.48.0",
6420  "windows_aarch64_msvc 0.48.0",
6421  "windows_i686_gnu 0.48.0",
6422  "windows_i686_msvc 0.48.0",
6423  "windows_x86_64_gnu 0.48.0",
6424  "windows_x86_64_gnullvm 0.48.0",
6425  "windows_x86_64_msvc 0.48.0",
6426 ]
6427
6428 [[package]]
6429 name = "windows_aarch64_gnullvm"
6430 version = "0.42.2"
6431 source = "registry+https://github.com/rust-lang/crates.io-index"
6432 checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
6433
6434 [[package]]
6435 name = "windows_aarch64_gnullvm"
6436 version = "0.48.0"
6437 source = "registry+https://github.com/rust-lang/crates.io-index"
6438 checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
6439
6440 [[package]]
6441 name = "windows_aarch64_msvc"
6442 version = "0.36.1"
6443 source = "registry+https://github.com/rust-lang/crates.io-index"
6444 checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
6445
6446 [[package]]
6447 name = "windows_aarch64_msvc"
6448 version = "0.42.2"
6449 source = "registry+https://github.com/rust-lang/crates.io-index"
6450 checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
6451
6452 [[package]]
6453 name = "windows_aarch64_msvc"
6454 version = "0.48.0"
6455 source = "registry+https://github.com/rust-lang/crates.io-index"
6456 checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
6457
6458 [[package]]
6459 name = "windows_i686_gnu"
6460 version = "0.36.1"
6461 source = "registry+https://github.com/rust-lang/crates.io-index"
6462 checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
6463
6464 [[package]]
6465 name = "windows_i686_gnu"
6466 version = "0.42.2"
6467 source = "registry+https://github.com/rust-lang/crates.io-index"
6468 checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
6469
6470 [[package]]
6471 name = "windows_i686_gnu"
6472 version = "0.48.0"
6473 source = "registry+https://github.com/rust-lang/crates.io-index"
6474 checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
6475
6476 [[package]]
6477 name = "windows_i686_msvc"
6478 version = "0.36.1"
6479 source = "registry+https://github.com/rust-lang/crates.io-index"
6480 checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
6481
6482 [[package]]
6483 name = "windows_i686_msvc"
6484 version = "0.42.2"
6485 source = "registry+https://github.com/rust-lang/crates.io-index"
6486 checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
6487
6488 [[package]]
6489 name = "windows_i686_msvc"
6490 version = "0.48.0"
6491 source = "registry+https://github.com/rust-lang/crates.io-index"
6492 checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
6493
6494 [[package]]
6495 name = "windows_x86_64_gnu"
6496 version = "0.36.1"
6497 source = "registry+https://github.com/rust-lang/crates.io-index"
6498 checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
6499
6500 [[package]]
6501 name = "windows_x86_64_gnu"
6502 version = "0.42.2"
6503 source = "registry+https://github.com/rust-lang/crates.io-index"
6504 checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
6505
6506 [[package]]
6507 name = "windows_x86_64_gnu"
6508 version = "0.48.0"
6509 source = "registry+https://github.com/rust-lang/crates.io-index"
6510 checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
6511
6512 [[package]]
6513 name = "windows_x86_64_gnullvm"
6514 version = "0.42.2"
6515 source = "registry+https://github.com/rust-lang/crates.io-index"
6516 checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
6517
6518 [[package]]
6519 name = "windows_x86_64_gnullvm"
6520 version = "0.48.0"
6521 source = "registry+https://github.com/rust-lang/crates.io-index"
6522 checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
6523
6524 [[package]]
6525 name = "windows_x86_64_msvc"
6526 version = "0.36.1"
6527 source = "registry+https://github.com/rust-lang/crates.io-index"
6528 checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
6529
6530 [[package]]
6531 name = "windows_x86_64_msvc"
6532 version = "0.42.2"
6533 source = "registry+https://github.com/rust-lang/crates.io-index"
6534 checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
6535
6536 [[package]]
6537 name = "windows_x86_64_msvc"
6538 version = "0.48.0"
6539 source = "registry+https://github.com/rust-lang/crates.io-index"
6540 checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
6541
6542 [[package]]
6543 name = "winnow"
6544 version = "0.4.6"
6545 source = "registry+https://github.com/rust-lang/crates.io-index"
6546 checksum = "61de7bac303dc551fe038e2b3cef0f571087a47571ea6e79a87692ac99b99699"
6547 dependencies = [
6548  "memchr",
6549 ]
6550
6551 [[package]]
6552 name = "winreg"
6553 version = "0.10.1"
6554 source = "registry+https://github.com/rust-lang/crates.io-index"
6555 checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
6556 dependencies = [
6557  "winapi",
6558 ]
6559
6560 [[package]]
6561 name = "wyz"
6562 version = "0.2.0"
6563 source = "registry+https://github.com/rust-lang/crates.io-index"
6564 checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214"
6565
6566 [[package]]
6567 name = "xml5ever"
6568 version = "0.16.2"
6569 source = "registry+https://github.com/rust-lang/crates.io-index"
6570 checksum = "9234163818fd8e2418fcde330655e757900d4236acd8cc70fef345ef91f6d865"
6571 dependencies = [
6572  "log",
6573  "mac",
6574  "markup5ever 0.10.1",
6575  "time 0.1.44",
6576 ]
6577
6578 [[package]]
6579 name = "xml5ever"
6580 version = "0.17.0"
6581 source = "registry+https://github.com/rust-lang/crates.io-index"
6582 checksum = "4034e1d05af98b51ad7214527730626f019682d797ba38b51689212118d8e650"
6583 dependencies = [
6584  "log",
6585  "mac",
6586  "markup5ever 0.11.0",
6587 ]
6588
6589 [[package]]
6590 name = "yaml-rust"
6591 version = "0.4.5"
6592 source = "registry+https://github.com/rust-lang/crates.io-index"
6593 checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
6594 dependencies = [
6595  "linked-hash-map",
6596 ]
6597
6598 [[package]]
6599 name = "zeroize"
6600 version = "1.5.7"
6601 source = "registry+https://github.com/rust-lang/crates.io-index"
6602 checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f"
6603
6604 [[package]]
6605 name = "zstd"
6606 version = "0.12.3+zstd.1.5.2"
6607 source = "registry+https://github.com/rust-lang/crates.io-index"
6608 checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806"
6609 dependencies = [
6610  "zstd-safe",
6611 ]
6612
6613 [[package]]
6614 name = "zstd-safe"
6615 version = "6.0.5+zstd.1.5.4"
6616 source = "registry+https://github.com/rust-lang/crates.io-index"
6617 checksum = "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b"
6618 dependencies = [
6619  "libc",
6620  "zstd-sys",
6621 ]
6622
6623 [[package]]
6624 name = "zstd-sys"
6625 version = "2.0.8+zstd.1.5.5"
6626 source = "registry+https://github.com/rust-lang/crates.io-index"
6627 checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
6628 dependencies = [
6629  "cc",
6630  "libc",
6631  "pkg-config",
6632 ]