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