Merge branch 'master' of gburri.org:valheim_web
[valheim_web.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 = "actix-codec"
7 version = "0.5.0"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe"
10 dependencies = [
11  "bitflags",
12  "bytes",
13  "futures-core",
14  "futures-sink",
15  "log",
16  "memchr",
17  "pin-project-lite",
18  "tokio",
19  "tokio-util",
20 ]
21
22 [[package]]
23 name = "actix-files"
24 version = "0.6.0"
25 source = "registry+https://github.com/rust-lang/crates.io-index"
26 checksum = "d81bde9a79336aa51ebed236e91fc1a0528ff67cfdf4f68ca4c61ede9fd26fb5"
27 dependencies = [
28  "actix-http",
29  "actix-service",
30  "actix-utils",
31  "actix-web",
32  "askama_escape",
33  "bitflags",
34  "bytes",
35  "derive_more",
36  "futures-core",
37  "http-range",
38  "log",
39  "mime",
40  "mime_guess",
41  "percent-encoding",
42  "pin-project-lite",
43 ]
44
45 [[package]]
46 name = "actix-http"
47 version = "3.0.4"
48 source = "registry+https://github.com/rust-lang/crates.io-index"
49 checksum = "a5885cb81a0d4d0d322864bea1bb6c2a8144626b4fdc625d4c51eba197e7797a"
50 dependencies = [
51  "actix-codec",
52  "actix-rt",
53  "actix-service",
54  "actix-utils",
55  "ahash",
56  "base64",
57  "bitflags",
58  "brotli",
59  "bytes",
60  "bytestring",
61  "derive_more",
62  "encoding_rs",
63  "flate2",
64  "futures-core",
65  "h2",
66  "http",
67  "httparse",
68  "httpdate",
69  "itoa",
70  "language-tags",
71  "local-channel",
72  "log",
73  "mime",
74  "percent-encoding",
75  "pin-project-lite",
76  "rand",
77  "sha-1",
78  "smallvec",
79  "zstd",
80 ]
81
82 [[package]]
83 name = "actix-macros"
84 version = "0.2.3"
85 source = "registry+https://github.com/rust-lang/crates.io-index"
86 checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
87 dependencies = [
88  "quote",
89  "syn",
90 ]
91
92 [[package]]
93 name = "actix-router"
94 version = "0.5.0"
95 source = "registry+https://github.com/rust-lang/crates.io-index"
96 checksum = "eb60846b52c118f2f04a56cc90880a274271c489b2498623d58176f8ca21fa80"
97 dependencies = [
98  "bytestring",
99  "firestorm",
100  "http",
101  "log",
102  "regex",
103  "serde",
104 ]
105
106 [[package]]
107 name = "actix-rt"
108 version = "2.7.0"
109 source = "registry+https://github.com/rust-lang/crates.io-index"
110 checksum = "7ea16c295198e958ef31930a6ef37d0fb64e9ca3b6116e6b93a8bdae96ee1000"
111 dependencies = [
112  "futures-core",
113  "tokio",
114 ]
115
116 [[package]]
117 name = "actix-server"
118 version = "2.1.1"
119 source = "registry+https://github.com/rust-lang/crates.io-index"
120 checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824"
121 dependencies = [
122  "actix-rt",
123  "actix-service",
124  "actix-utils",
125  "futures-core",
126  "futures-util",
127  "mio",
128  "num_cpus",
129  "socket2",
130  "tokio",
131  "tracing",
132 ]
133
134 [[package]]
135 name = "actix-service"
136 version = "2.0.2"
137 source = "registry+https://github.com/rust-lang/crates.io-index"
138 checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
139 dependencies = [
140  "futures-core",
141  "paste",
142  "pin-project-lite",
143 ]
144
145 [[package]]
146 name = "actix-utils"
147 version = "3.0.0"
148 source = "registry+https://github.com/rust-lang/crates.io-index"
149 checksum = "e491cbaac2e7fc788dfff99ff48ef317e23b3cf63dbaf7aaab6418f40f92aa94"
150 dependencies = [
151  "local-waker",
152  "pin-project-lite",
153 ]
154
155 [[package]]
156 name = "actix-web"
157 version = "4.0.1"
158 source = "registry+https://github.com/rust-lang/crates.io-index"
159 checksum = "f4e5ebffd51d50df56a3ae0de0e59487340ca456f05dd0b90c0a7a6dd6a74d31"
160 dependencies = [
161  "actix-codec",
162  "actix-http",
163  "actix-macros",
164  "actix-router",
165  "actix-rt",
166  "actix-server",
167  "actix-service",
168  "actix-utils",
169  "actix-web-codegen",
170  "ahash",
171  "bytes",
172  "bytestring",
173  "cfg-if",
174  "cookie",
175  "derive_more",
176  "encoding_rs",
177  "futures-core",
178  "futures-util",
179  "itoa",
180  "language-tags",
181  "log",
182  "mime",
183  "once_cell",
184  "pin-project-lite",
185  "regex",
186  "serde",
187  "serde_json",
188  "serde_urlencoded",
189  "smallvec",
190  "socket2",
191  "time 0.3.9",
192  "url",
193 ]
194
195 [[package]]
196 name = "actix-web-codegen"
197 version = "4.0.0"
198 source = "registry+https://github.com/rust-lang/crates.io-index"
199 checksum = "7525bedf54704abb1d469e88d7e7e9226df73778798a69cea5022d53b2ae91bc"
200 dependencies = [
201  "actix-router",
202  "proc-macro2",
203  "quote",
204  "syn",
205 ]
206
207 [[package]]
208 name = "adler"
209 version = "1.0.2"
210 source = "registry+https://github.com/rust-lang/crates.io-index"
211 checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
212
213 [[package]]
214 name = "ahash"
215 version = "0.7.6"
216 source = "registry+https://github.com/rust-lang/crates.io-index"
217 checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
218 dependencies = [
219  "getrandom",
220  "once_cell",
221  "version_check",
222 ]
223
224 [[package]]
225 name = "aho-corasick"
226 version = "0.7.18"
227 source = "registry+https://github.com/rust-lang/crates.io-index"
228 checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
229 dependencies = [
230  "memchr",
231 ]
232
233 [[package]]
234 name = "alloc-no-stdlib"
235 version = "2.0.3"
236 source = "registry+https://github.com/rust-lang/crates.io-index"
237 checksum = "35ef4730490ad1c4eae5c4325b2a95f521d023e5c885853ff7aca0a6a1631db3"
238
239 [[package]]
240 name = "alloc-stdlib"
241 version = "0.2.1"
242 source = "registry+https://github.com/rust-lang/crates.io-index"
243 checksum = "697ed7edc0f1711de49ce108c541623a0af97c6c60b2f6e2b65229847ac843c2"
244 dependencies = [
245  "alloc-no-stdlib",
246 ]
247
248 [[package]]
249 name = "askama"
250 version = "0.11.1"
251 source = "registry+https://github.com/rust-lang/crates.io-index"
252 checksum = "fb98f10f371286b177db5eeb9a6e5396609555686a35e1d4f7b9a9c6d8af0139"
253 dependencies = [
254  "askama_derive",
255  "askama_escape",
256  "askama_shared",
257 ]
258
259 [[package]]
260 name = "askama_actix"
261 version = "0.13.0"
262 source = "registry+https://github.com/rust-lang/crates.io-index"
263 checksum = "c52f74f8382a142ecfc052100b21abc33f2c069e20fe345808e7ed914b179449"
264 dependencies = [
265  "actix-web",
266  "askama",
267  "askama_shared",
268 ]
269
270 [[package]]
271 name = "askama_derive"
272 version = "0.11.2"
273 source = "registry+https://github.com/rust-lang/crates.io-index"
274 checksum = "87bf87e6e8b47264efa9bde63d6225c6276a52e05e91bf37eaa8afd0032d6b71"
275 dependencies = [
276  "askama_shared",
277  "proc-macro2",
278  "syn",
279 ]
280
281 [[package]]
282 name = "askama_escape"
283 version = "0.10.3"
284 source = "registry+https://github.com/rust-lang/crates.io-index"
285 checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341"
286
287 [[package]]
288 name = "askama_shared"
289 version = "0.12.2"
290 source = "registry+https://github.com/rust-lang/crates.io-index"
291 checksum = "bf722b94118a07fcbc6640190f247334027685d4e218b794dbfe17c32bf38ed0"
292 dependencies = [
293  "askama_escape",
294  "humansize",
295  "mime",
296  "mime_guess",
297  "nom",
298  "num-traits",
299  "percent-encoding",
300  "proc-macro2",
301  "quote",
302  "serde",
303  "syn",
304  "toml",
305 ]
306
307 [[package]]
308 name = "async-trait"
309 version = "0.1.53"
310 source = "registry+https://github.com/rust-lang/crates.io-index"
311 checksum = "ed6aa3524a2dfcf9fe180c51eae2b58738348d819517ceadf95789c51fff7600"
312 dependencies = [
313  "proc-macro2",
314  "quote",
315  "syn",
316 ]
317
318 [[package]]
319 name = "async_once"
320 version = "0.2.6"
321 source = "registry+https://github.com/rust-lang/crates.io-index"
322 checksum = "2ce4f10ea3abcd6617873bae9f91d1c5332b4a778bd9ce34d0cd517474c1de82"
323
324 [[package]]
325 name = "autocfg"
326 version = "1.1.0"
327 source = "registry+https://github.com/rust-lang/crates.io-index"
328 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
329
330 [[package]]
331 name = "base64"
332 version = "0.13.0"
333 source = "registry+https://github.com/rust-lang/crates.io-index"
334 checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
335
336 [[package]]
337 name = "bitflags"
338 version = "1.3.2"
339 source = "registry+https://github.com/rust-lang/crates.io-index"
340 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
341
342 [[package]]
343 name = "block-buffer"
344 version = "0.10.2"
345 source = "registry+https://github.com/rust-lang/crates.io-index"
346 checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
347 dependencies = [
348  "generic-array",
349 ]
350
351 [[package]]
352 name = "brotli"
353 version = "3.3.4"
354 source = "registry+https://github.com/rust-lang/crates.io-index"
355 checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
356 dependencies = [
357  "alloc-no-stdlib",
358  "alloc-stdlib",
359  "brotli-decompressor",
360 ]
361
362 [[package]]
363 name = "brotli-decompressor"
364 version = "2.3.2"
365 source = "registry+https://github.com/rust-lang/crates.io-index"
366 checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
367 dependencies = [
368  "alloc-no-stdlib",
369  "alloc-stdlib",
370 ]
371
372 [[package]]
373 name = "build-env"
374 version = "0.3.1"
375 source = "registry+https://github.com/rust-lang/crates.io-index"
376 checksum = "1522ac6ee801a11bf9ef3f80403f4ede6eb41291fac3dde3de09989679305f25"
377
378 [[package]]
379 name = "bytes"
380 version = "1.1.0"
381 source = "registry+https://github.com/rust-lang/crates.io-index"
382 checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
383
384 [[package]]
385 name = "bytestring"
386 version = "1.0.0"
387 source = "registry+https://github.com/rust-lang/crates.io-index"
388 checksum = "90706ba19e97b90786e19dc0d5e2abd80008d99d4c0c5d1ad0b5e72cec7c494d"
389 dependencies = [
390  "bytes",
391 ]
392
393 [[package]]
394 name = "cached"
395 version = "0.34.0"
396 source = "registry+https://github.com/rust-lang/crates.io-index"
397 checksum = "aadf76ddea74bab35ebeb8f1eb115b9bc04eaee42d8acc0d5f477dee6b176c9a"
398 dependencies = [
399  "async-trait",
400  "async_once",
401  "cached_proc_macro",
402  "cached_proc_macro_types",
403  "futures",
404  "hashbrown 0.12.0",
405  "lazy_static",
406  "once_cell",
407  "thiserror",
408  "tokio",
409 ]
410
411 [[package]]
412 name = "cached_proc_macro"
413 version = "0.12.0"
414 source = "registry+https://github.com/rust-lang/crates.io-index"
415 checksum = "bce0f37f9b77c6b93cdf3f060c89adca303d2ab052cacb3c3d1ab543e8cecd2f"
416 dependencies = [
417  "cached_proc_macro_types",
418  "darling",
419  "quote",
420  "syn",
421 ]
422
423 [[package]]
424 name = "cached_proc_macro_types"
425 version = "0.1.0"
426 source = "registry+https://github.com/rust-lang/crates.io-index"
427 checksum = "3a4f925191b4367301851c6d99b09890311d74b0d43f274c0b34c86d308a3663"
428
429 [[package]]
430 name = "cc"
431 version = "1.0.73"
432 source = "registry+https://github.com/rust-lang/crates.io-index"
433 checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
434 dependencies = [
435  "jobserver",
436 ]
437
438 [[package]]
439 name = "cfg-if"
440 version = "1.0.0"
441 source = "registry+https://github.com/rust-lang/crates.io-index"
442 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
443
444 [[package]]
445 name = "chrono"
446 version = "0.4.19"
447 source = "registry+https://github.com/rust-lang/crates.io-index"
448 checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
449 dependencies = [
450  "libc",
451  "num-integer",
452  "num-traits",
453  "time 0.1.43",
454  "winapi",
455 ]
456
457 [[package]]
458 name = "common"
459 version = "0.1.0"
460
461 [[package]]
462 name = "convert_case"
463 version = "0.4.0"
464 source = "registry+https://github.com/rust-lang/crates.io-index"
465 checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
466
467 [[package]]
468 name = "cookie"
469 version = "0.16.0"
470 source = "registry+https://github.com/rust-lang/crates.io-index"
471 checksum = "94d4706de1b0fa5b132270cddffa8585166037822e260a944fe161acd137ca05"
472 dependencies = [
473  "percent-encoding",
474  "time 0.3.9",
475  "version_check",
476 ]
477
478 [[package]]
479 name = "core-foundation-sys"
480 version = "0.8.3"
481 source = "registry+https://github.com/rust-lang/crates.io-index"
482 checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
483
484 [[package]]
485 name = "cpufeatures"
486 version = "0.2.2"
487 source = "registry+https://github.com/rust-lang/crates.io-index"
488 checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
489 dependencies = [
490  "libc",
491 ]
492
493 [[package]]
494 name = "crc32fast"
495 version = "1.3.2"
496 source = "registry+https://github.com/rust-lang/crates.io-index"
497 checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
498 dependencies = [
499  "cfg-if",
500 ]
501
502 [[package]]
503 name = "crossbeam-channel"
504 version = "0.5.4"
505 source = "registry+https://github.com/rust-lang/crates.io-index"
506 checksum = "5aaa7bd5fb665c6864b5f963dd9097905c54125909c7aa94c9e18507cdbe6c53"
507 dependencies = [
508  "cfg-if",
509  "crossbeam-utils",
510 ]
511
512 [[package]]
513 name = "crossbeam-deque"
514 version = "0.8.1"
515 source = "registry+https://github.com/rust-lang/crates.io-index"
516 checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"
517 dependencies = [
518  "cfg-if",
519  "crossbeam-epoch",
520  "crossbeam-utils",
521 ]
522
523 [[package]]
524 name = "crossbeam-epoch"
525 version = "0.9.8"
526 source = "registry+https://github.com/rust-lang/crates.io-index"
527 checksum = "1145cf131a2c6ba0615079ab6a638f7e1973ac9c2634fcbeaaad6114246efe8c"
528 dependencies = [
529  "autocfg",
530  "cfg-if",
531  "crossbeam-utils",
532  "lazy_static",
533  "memoffset",
534  "scopeguard",
535 ]
536
537 [[package]]
538 name = "crossbeam-utils"
539 version = "0.8.8"
540 source = "registry+https://github.com/rust-lang/crates.io-index"
541 checksum = "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38"
542 dependencies = [
543  "cfg-if",
544  "lazy_static",
545 ]
546
547 [[package]]
548 name = "crypto-common"
549 version = "0.1.3"
550 source = "registry+https://github.com/rust-lang/crates.io-index"
551 checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8"
552 dependencies = [
553  "generic-array",
554  "typenum",
555 ]
556
557 [[package]]
558 name = "cstr-argument"
559 version = "0.1.2"
560 source = "registry+https://github.com/rust-lang/crates.io-index"
561 checksum = "b6bd9c8e659a473bce955ae5c35b116af38af11a7acb0b480e01f3ed348aeb40"
562 dependencies = [
563  "cfg-if",
564  "memchr",
565 ]
566
567 [[package]]
568 name = "darling"
569 version = "0.13.4"
570 source = "registry+https://github.com/rust-lang/crates.io-index"
571 checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c"
572 dependencies = [
573  "darling_core",
574  "darling_macro",
575 ]
576
577 [[package]]
578 name = "darling_core"
579 version = "0.13.4"
580 source = "registry+https://github.com/rust-lang/crates.io-index"
581 checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
582 dependencies = [
583  "fnv",
584  "ident_case",
585  "proc-macro2",
586  "quote",
587  "strsim",
588  "syn",
589 ]
590
591 [[package]]
592 name = "darling_macro"
593 version = "0.13.4"
594 source = "registry+https://github.com/rust-lang/crates.io-index"
595 checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
596 dependencies = [
597  "darling_core",
598  "quote",
599  "syn",
600 ]
601
602 [[package]]
603 name = "derive_more"
604 version = "0.99.17"
605 source = "registry+https://github.com/rust-lang/crates.io-index"
606 checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
607 dependencies = [
608  "convert_case",
609  "proc-macro2",
610  "quote",
611  "rustc_version",
612  "syn",
613 ]
614
615 [[package]]
616 name = "digest"
617 version = "0.10.3"
618 source = "registry+https://github.com/rust-lang/crates.io-index"
619 checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
620 dependencies = [
621  "block-buffer",
622  "crypto-common",
623 ]
624
625 [[package]]
626 name = "either"
627 version = "1.6.1"
628 source = "registry+https://github.com/rust-lang/crates.io-index"
629 checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
630
631 [[package]]
632 name = "encoding_rs"
633 version = "0.8.31"
634 source = "registry+https://github.com/rust-lang/crates.io-index"
635 checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
636 dependencies = [
637  "cfg-if",
638 ]
639
640 [[package]]
641 name = "firestorm"
642 version = "0.5.0"
643 source = "registry+https://github.com/rust-lang/crates.io-index"
644 checksum = "4d3d6188b8804df28032815ea256b6955c9625c24da7525f387a7af02fbb8f01"
645
646 [[package]]
647 name = "flate2"
648 version = "1.0.22"
649 source = "registry+https://github.com/rust-lang/crates.io-index"
650 checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f"
651 dependencies = [
652  "cfg-if",
653  "crc32fast",
654  "libc",
655  "miniz_oxide",
656 ]
657
658 [[package]]
659 name = "fnv"
660 version = "1.0.7"
661 source = "registry+https://github.com/rust-lang/crates.io-index"
662 checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
663
664 [[package]]
665 name = "foreign-types"
666 version = "0.5.0"
667 source = "registry+https://github.com/rust-lang/crates.io-index"
668 checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
669 dependencies = [
670  "foreign-types-macros",
671  "foreign-types-shared",
672 ]
673
674 [[package]]
675 name = "foreign-types-macros"
676 version = "0.2.2"
677 source = "registry+https://github.com/rust-lang/crates.io-index"
678 checksum = "c8469d0d40519bc608ec6863f1cc88f3f1deee15913f2f3b3e573d81ed38cccc"
679 dependencies = [
680  "proc-macro2",
681  "quote",
682  "syn",
683 ]
684
685 [[package]]
686 name = "foreign-types-shared"
687 version = "0.3.1"
688 source = "registry+https://github.com/rust-lang/crates.io-index"
689 checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
690
691 [[package]]
692 name = "form_urlencoded"
693 version = "1.0.1"
694 source = "registry+https://github.com/rust-lang/crates.io-index"
695 checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
696 dependencies = [
697  "matches",
698  "percent-encoding",
699 ]
700
701 [[package]]
702 name = "futures"
703 version = "0.3.21"
704 source = "registry+https://github.com/rust-lang/crates.io-index"
705 checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
706 dependencies = [
707  "futures-channel",
708  "futures-core",
709  "futures-executor",
710  "futures-io",
711  "futures-sink",
712  "futures-task",
713  "futures-util",
714 ]
715
716 [[package]]
717 name = "futures-channel"
718 version = "0.3.21"
719 source = "registry+https://github.com/rust-lang/crates.io-index"
720 checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
721 dependencies = [
722  "futures-core",
723  "futures-sink",
724 ]
725
726 [[package]]
727 name = "futures-core"
728 version = "0.3.21"
729 source = "registry+https://github.com/rust-lang/crates.io-index"
730 checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
731
732 [[package]]
733 name = "futures-executor"
734 version = "0.3.21"
735 source = "registry+https://github.com/rust-lang/crates.io-index"
736 checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
737 dependencies = [
738  "futures-core",
739  "futures-task",
740  "futures-util",
741 ]
742
743 [[package]]
744 name = "futures-io"
745 version = "0.3.21"
746 source = "registry+https://github.com/rust-lang/crates.io-index"
747 checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
748
749 [[package]]
750 name = "futures-macro"
751 version = "0.3.21"
752 source = "registry+https://github.com/rust-lang/crates.io-index"
753 checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
754 dependencies = [
755  "proc-macro2",
756  "quote",
757  "syn",
758 ]
759
760 [[package]]
761 name = "futures-sink"
762 version = "0.3.21"
763 source = "registry+https://github.com/rust-lang/crates.io-index"
764 checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
765
766 [[package]]
767 name = "futures-task"
768 version = "0.3.21"
769 source = "registry+https://github.com/rust-lang/crates.io-index"
770 checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
771
772 [[package]]
773 name = "futures-util"
774 version = "0.3.21"
775 source = "registry+https://github.com/rust-lang/crates.io-index"
776 checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
777 dependencies = [
778  "futures-channel",
779  "futures-core",
780  "futures-io",
781  "futures-macro",
782  "futures-sink",
783  "futures-task",
784  "memchr",
785  "pin-project-lite",
786  "pin-utils",
787  "slab",
788 ]
789
790 [[package]]
791 name = "generic-array"
792 version = "0.14.5"
793 source = "registry+https://github.com/rust-lang/crates.io-index"
794 checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
795 dependencies = [
796  "typenum",
797  "version_check",
798 ]
799
800 [[package]]
801 name = "getrandom"
802 version = "0.2.6"
803 source = "registry+https://github.com/rust-lang/crates.io-index"
804 checksum = "9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad"
805 dependencies = [
806  "cfg-if",
807  "libc",
808  "wasi 0.10.2+wasi-snapshot-preview1",
809 ]
810
811 [[package]]
812 name = "h2"
813 version = "0.3.13"
814 source = "registry+https://github.com/rust-lang/crates.io-index"
815 checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57"
816 dependencies = [
817  "bytes",
818  "fnv",
819  "futures-core",
820  "futures-sink",
821  "futures-util",
822  "http",
823  "indexmap",
824  "slab",
825  "tokio",
826  "tokio-util",
827  "tracing",
828 ]
829
830 [[package]]
831 name = "hashbrown"
832 version = "0.11.2"
833 source = "registry+https://github.com/rust-lang/crates.io-index"
834 checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
835
836 [[package]]
837 name = "hashbrown"
838 version = "0.12.0"
839 source = "registry+https://github.com/rust-lang/crates.io-index"
840 checksum = "8c21d40587b92fa6a6c6e3c1bdbf87d75511db5672f9c93175574b3a00df1758"
841
842 [[package]]
843 name = "hermit-abi"
844 version = "0.1.19"
845 source = "registry+https://github.com/rust-lang/crates.io-index"
846 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
847 dependencies = [
848  "libc",
849 ]
850
851 [[package]]
852 name = "http"
853 version = "0.2.6"
854 source = "registry+https://github.com/rust-lang/crates.io-index"
855 checksum = "31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03"
856 dependencies = [
857  "bytes",
858  "fnv",
859  "itoa",
860 ]
861
862 [[package]]
863 name = "http-range"
864 version = "0.1.5"
865 source = "registry+https://github.com/rust-lang/crates.io-index"
866 checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
867
868 [[package]]
869 name = "httparse"
870 version = "1.6.0"
871 source = "registry+https://github.com/rust-lang/crates.io-index"
872 checksum = "9100414882e15fb7feccb4897e5f0ff0ff1ca7d1a86a23208ada4d7a18e6c6c4"
873
874 [[package]]
875 name = "httpdate"
876 version = "1.0.2"
877 source = "registry+https://github.com/rust-lang/crates.io-index"
878 checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
879
880 [[package]]
881 name = "humansize"
882 version = "1.1.1"
883 source = "registry+https://github.com/rust-lang/crates.io-index"
884 checksum = "02296996cb8796d7c6e3bc2d9211b7802812d36999a51bb754123ead7d37d026"
885
886 [[package]]
887 name = "ident_case"
888 version = "1.0.1"
889 source = "registry+https://github.com/rust-lang/crates.io-index"
890 checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
891
892 [[package]]
893 name = "idna"
894 version = "0.2.3"
895 source = "registry+https://github.com/rust-lang/crates.io-index"
896 checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
897 dependencies = [
898  "matches",
899  "unicode-bidi",
900  "unicode-normalization",
901 ]
902
903 [[package]]
904 name = "indexmap"
905 version = "1.8.1"
906 source = "registry+https://github.com/rust-lang/crates.io-index"
907 checksum = "0f647032dfaa1f8b6dc29bd3edb7bbef4861b8b8007ebb118d6db284fd59f6ee"
908 dependencies = [
909  "autocfg",
910  "hashbrown 0.11.2",
911 ]
912
913 [[package]]
914 name = "itertools"
915 version = "0.10.3"
916 source = "registry+https://github.com/rust-lang/crates.io-index"
917 checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
918 dependencies = [
919  "either",
920 ]
921
922 [[package]]
923 name = "itoa"
924 version = "1.0.1"
925 source = "registry+https://github.com/rust-lang/crates.io-index"
926 checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
927
928 [[package]]
929 name = "jobserver"
930 version = "0.1.24"
931 source = "registry+https://github.com/rust-lang/crates.io-index"
932 checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
933 dependencies = [
934  "libc",
935 ]
936
937 [[package]]
938 name = "language-tags"
939 version = "0.3.2"
940 source = "registry+https://github.com/rust-lang/crates.io-index"
941 checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
942
943 [[package]]
944 name = "lazy_static"
945 version = "1.4.0"
946 source = "registry+https://github.com/rust-lang/crates.io-index"
947 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
948
949 [[package]]
950 name = "libc"
951 version = "0.2.122"
952 source = "registry+https://github.com/rust-lang/crates.io-index"
953 checksum = "ec647867e2bf0772e28c8bcde4f0d19a9216916e890543b5a03ed8ef27b8f259"
954
955 [[package]]
956 name = "libsystemd-sys"
957 version = "0.9.3"
958 source = "registry+https://github.com/rust-lang/crates.io-index"
959 checksum = "ed080163caa59cc29b34bce2209b737149a4bac148cd9a8b04e4c12822798119"
960 dependencies = [
961  "build-env",
962  "libc",
963  "pkg-config",
964 ]
965
966 [[package]]
967 name = "local-channel"
968 version = "0.1.2"
969 source = "registry+https://github.com/rust-lang/crates.io-index"
970 checksum = "6246c68cf195087205a0512559c97e15eaf95198bf0e206d662092cdcb03fe9f"
971 dependencies = [
972  "futures-core",
973  "futures-sink",
974  "futures-util",
975  "local-waker",
976 ]
977
978 [[package]]
979 name = "local-waker"
980 version = "0.1.2"
981 source = "registry+https://github.com/rust-lang/crates.io-index"
982 checksum = "902eb695eb0591864543cbfbf6d742510642a605a61fc5e97fe6ceb5a30ac4fb"
983
984 [[package]]
985 name = "lock_api"
986 version = "0.4.7"
987 source = "registry+https://github.com/rust-lang/crates.io-index"
988 checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
989 dependencies = [
990  "autocfg",
991  "scopeguard",
992 ]
993
994 [[package]]
995 name = "log"
996 version = "0.4.16"
997 source = "registry+https://github.com/rust-lang/crates.io-index"
998 checksum = "6389c490849ff5bc16be905ae24bc913a9c8892e19b2341dbc175e14c341c2b8"
999 dependencies = [
1000  "cfg-if",
1001 ]
1002
1003 [[package]]
1004 name = "matches"
1005 version = "0.1.9"
1006 source = "registry+https://github.com/rust-lang/crates.io-index"
1007 checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
1008
1009 [[package]]
1010 name = "memchr"
1011 version = "2.4.1"
1012 source = "registry+https://github.com/rust-lang/crates.io-index"
1013 checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
1014
1015 [[package]]
1016 name = "memoffset"
1017 version = "0.6.5"
1018 source = "registry+https://github.com/rust-lang/crates.io-index"
1019 checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
1020 dependencies = [
1021  "autocfg",
1022 ]
1023
1024 [[package]]
1025 name = "mime"
1026 version = "0.3.16"
1027 source = "registry+https://github.com/rust-lang/crates.io-index"
1028 checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
1029
1030 [[package]]
1031 name = "mime_guess"
1032 version = "2.0.4"
1033 source = "registry+https://github.com/rust-lang/crates.io-index"
1034 checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
1035 dependencies = [
1036  "mime",
1037  "unicase",
1038 ]
1039
1040 [[package]]
1041 name = "minimal-lexical"
1042 version = "0.2.1"
1043 source = "registry+https://github.com/rust-lang/crates.io-index"
1044 checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1045
1046 [[package]]
1047 name = "miniz_oxide"
1048 version = "0.4.4"
1049 source = "registry+https://github.com/rust-lang/crates.io-index"
1050 checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
1051 dependencies = [
1052  "adler",
1053  "autocfg",
1054 ]
1055
1056 [[package]]
1057 name = "mio"
1058 version = "0.8.2"
1059 source = "registry+https://github.com/rust-lang/crates.io-index"
1060 checksum = "52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9"
1061 dependencies = [
1062  "libc",
1063  "log",
1064  "miow",
1065  "ntapi",
1066  "wasi 0.11.0+wasi-snapshot-preview1",
1067  "winapi",
1068 ]
1069
1070 [[package]]
1071 name = "miow"
1072 version = "0.3.7"
1073 source = "registry+https://github.com/rust-lang/crates.io-index"
1074 checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
1075 dependencies = [
1076  "winapi",
1077 ]
1078
1079 [[package]]
1080 name = "nom"
1081 version = "7.1.1"
1082 source = "registry+https://github.com/rust-lang/crates.io-index"
1083 checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
1084 dependencies = [
1085  "memchr",
1086  "minimal-lexical",
1087 ]
1088
1089 [[package]]
1090 name = "ntapi"
1091 version = "0.3.7"
1092 source = "registry+https://github.com/rust-lang/crates.io-index"
1093 checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
1094 dependencies = [
1095  "winapi",
1096 ]
1097
1098 [[package]]
1099 name = "num-integer"
1100 version = "0.1.44"
1101 source = "registry+https://github.com/rust-lang/crates.io-index"
1102 checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
1103 dependencies = [
1104  "autocfg",
1105  "num-traits",
1106 ]
1107
1108 [[package]]
1109 name = "num-traits"
1110 version = "0.2.14"
1111 source = "registry+https://github.com/rust-lang/crates.io-index"
1112 checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
1113 dependencies = [
1114  "autocfg",
1115 ]
1116
1117 [[package]]
1118 name = "num_cpus"
1119 version = "1.13.1"
1120 source = "registry+https://github.com/rust-lang/crates.io-index"
1121 checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
1122 dependencies = [
1123  "hermit-abi",
1124  "libc",
1125 ]
1126
1127 [[package]]
1128 name = "num_threads"
1129 version = "0.1.5"
1130 source = "registry+https://github.com/rust-lang/crates.io-index"
1131 checksum = "aba1801fb138d8e85e11d0fc70baf4fe1cdfffda7c6cd34a854905df588e5ed0"
1132 dependencies = [
1133  "libc",
1134 ]
1135
1136 [[package]]
1137 name = "once_cell"
1138 version = "1.10.0"
1139 source = "registry+https://github.com/rust-lang/crates.io-index"
1140 checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
1141
1142 [[package]]
1143 name = "parking_lot"
1144 version = "0.12.0"
1145 source = "registry+https://github.com/rust-lang/crates.io-index"
1146 checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58"
1147 dependencies = [
1148  "lock_api",
1149  "parking_lot_core",
1150 ]
1151
1152 [[package]]
1153 name = "parking_lot_core"
1154 version = "0.9.2"
1155 source = "registry+https://github.com/rust-lang/crates.io-index"
1156 checksum = "995f667a6c822200b0433ac218e05582f0e2efa1b922a3fd2fbaadc5f87bab37"
1157 dependencies = [
1158  "cfg-if",
1159  "libc",
1160  "redox_syscall",
1161  "smallvec",
1162  "windows-sys",
1163 ]
1164
1165 [[package]]
1166 name = "paste"
1167 version = "1.0.7"
1168 source = "registry+https://github.com/rust-lang/crates.io-index"
1169 checksum = "0c520e05135d6e763148b6426a837e239041653ba7becd2e538c076c738025fc"
1170
1171 [[package]]
1172 name = "percent-encoding"
1173 version = "2.1.0"
1174 source = "registry+https://github.com/rust-lang/crates.io-index"
1175 checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
1176
1177 [[package]]
1178 name = "pin-project-lite"
1179 version = "0.2.8"
1180 source = "registry+https://github.com/rust-lang/crates.io-index"
1181 checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c"
1182
1183 [[package]]
1184 name = "pin-utils"
1185 version = "0.1.0"
1186 source = "registry+https://github.com/rust-lang/crates.io-index"
1187 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1188
1189 [[package]]
1190 name = "pkg-config"
1191 version = "0.3.25"
1192 source = "registry+https://github.com/rust-lang/crates.io-index"
1193 checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
1194
1195 [[package]]
1196 name = "ppv-lite86"
1197 version = "0.2.16"
1198 source = "registry+https://github.com/rust-lang/crates.io-index"
1199 checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
1200
1201 [[package]]
1202 name = "proc-macro2"
1203 version = "1.0.37"
1204 source = "registry+https://github.com/rust-lang/crates.io-index"
1205 checksum = "ec757218438d5fda206afc041538b2f6d889286160d649a86a24d37e1235afd1"
1206 dependencies = [
1207  "unicode-xid",
1208 ]
1209
1210 [[package]]
1211 name = "quote"
1212 version = "1.0.17"
1213 source = "registry+https://github.com/rust-lang/crates.io-index"
1214 checksum = "632d02bff7f874a36f33ea8bb416cd484b90cc66c1194b1a1110d067a7013f58"
1215 dependencies = [
1216  "proc-macro2",
1217 ]
1218
1219 [[package]]
1220 name = "rand"
1221 version = "0.8.5"
1222 source = "registry+https://github.com/rust-lang/crates.io-index"
1223 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1224 dependencies = [
1225  "libc",
1226  "rand_chacha",
1227  "rand_core",
1228 ]
1229
1230 [[package]]
1231 name = "rand_chacha"
1232 version = "0.3.1"
1233 source = "registry+https://github.com/rust-lang/crates.io-index"
1234 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1235 dependencies = [
1236  "ppv-lite86",
1237  "rand_core",
1238 ]
1239
1240 [[package]]
1241 name = "rand_core"
1242 version = "0.6.3"
1243 source = "registry+https://github.com/rust-lang/crates.io-index"
1244 checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
1245 dependencies = [
1246  "getrandom",
1247 ]
1248
1249 [[package]]
1250 name = "rayon"
1251 version = "1.5.1"
1252 source = "registry+https://github.com/rust-lang/crates.io-index"
1253 checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90"
1254 dependencies = [
1255  "autocfg",
1256  "crossbeam-deque",
1257  "either",
1258  "rayon-core",
1259 ]
1260
1261 [[package]]
1262 name = "rayon-core"
1263 version = "1.9.1"
1264 source = "registry+https://github.com/rust-lang/crates.io-index"
1265 checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e"
1266 dependencies = [
1267  "crossbeam-channel",
1268  "crossbeam-deque",
1269  "crossbeam-utils",
1270  "lazy_static",
1271  "num_cpus",
1272 ]
1273
1274 [[package]]
1275 name = "redox_syscall"
1276 version = "0.2.13"
1277 source = "registry+https://github.com/rust-lang/crates.io-index"
1278 checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
1279 dependencies = [
1280  "bitflags",
1281 ]
1282
1283 [[package]]
1284 name = "regex"
1285 version = "1.5.5"
1286 source = "registry+https://github.com/rust-lang/crates.io-index"
1287 checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
1288 dependencies = [
1289  "aho-corasick",
1290  "memchr",
1291  "regex-syntax",
1292 ]
1293
1294 [[package]]
1295 name = "regex-syntax"
1296 version = "0.6.25"
1297 source = "registry+https://github.com/rust-lang/crates.io-index"
1298 checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
1299
1300 [[package]]
1301 name = "ron"
1302 version = "0.7.0"
1303 source = "registry+https://github.com/rust-lang/crates.io-index"
1304 checksum = "1b861ecaade43ac97886a512b360d01d66be9f41f3c61088b42cedf92e03d678"
1305 dependencies = [
1306  "base64",
1307  "bitflags",
1308  "serde",
1309 ]
1310
1311 [[package]]
1312 name = "rustc_version"
1313 version = "0.4.0"
1314 source = "registry+https://github.com/rust-lang/crates.io-index"
1315 checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
1316 dependencies = [
1317  "semver",
1318 ]
1319
1320 [[package]]
1321 name = "ryu"
1322 version = "1.0.9"
1323 source = "registry+https://github.com/rust-lang/crates.io-index"
1324 checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
1325
1326 [[package]]
1327 name = "scopeguard"
1328 version = "1.1.0"
1329 source = "registry+https://github.com/rust-lang/crates.io-index"
1330 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
1331
1332 [[package]]
1333 name = "semver"
1334 version = "1.0.7"
1335 source = "registry+https://github.com/rust-lang/crates.io-index"
1336 checksum = "d65bd28f48be7196d222d95b9243287f48d27aca604e08497513019ff0502cc4"
1337
1338 [[package]]
1339 name = "serde"
1340 version = "1.0.136"
1341 source = "registry+https://github.com/rust-lang/crates.io-index"
1342 checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789"
1343 dependencies = [
1344  "serde_derive",
1345 ]
1346
1347 [[package]]
1348 name = "serde_derive"
1349 version = "1.0.136"
1350 source = "registry+https://github.com/rust-lang/crates.io-index"
1351 checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9"
1352 dependencies = [
1353  "proc-macro2",
1354  "quote",
1355  "syn",
1356 ]
1357
1358 [[package]]
1359 name = "serde_json"
1360 version = "1.0.79"
1361 source = "registry+https://github.com/rust-lang/crates.io-index"
1362 checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95"
1363 dependencies = [
1364  "itoa",
1365  "ryu",
1366  "serde",
1367 ]
1368
1369 [[package]]
1370 name = "serde_urlencoded"
1371 version = "0.7.1"
1372 source = "registry+https://github.com/rust-lang/crates.io-index"
1373 checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1374 dependencies = [
1375  "form_urlencoded",
1376  "itoa",
1377  "ryu",
1378  "serde",
1379 ]
1380
1381 [[package]]
1382 name = "sha-1"
1383 version = "0.10.0"
1384 source = "registry+https://github.com/rust-lang/crates.io-index"
1385 checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f"
1386 dependencies = [
1387  "cfg-if",
1388  "cpufeatures",
1389  "digest",
1390 ]
1391
1392 [[package]]
1393 name = "signal-hook-registry"
1394 version = "1.4.0"
1395 source = "registry+https://github.com/rust-lang/crates.io-index"
1396 checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
1397 dependencies = [
1398  "libc",
1399 ]
1400
1401 [[package]]
1402 name = "slab"
1403 version = "0.4.6"
1404 source = "registry+https://github.com/rust-lang/crates.io-index"
1405 checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
1406
1407 [[package]]
1408 name = "smallvec"
1409 version = "1.8.0"
1410 source = "registry+https://github.com/rust-lang/crates.io-index"
1411 checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
1412
1413 [[package]]
1414 name = "socket2"
1415 version = "0.4.4"
1416 source = "registry+https://github.com/rust-lang/crates.io-index"
1417 checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
1418 dependencies = [
1419  "libc",
1420  "winapi",
1421 ]
1422
1423 [[package]]
1424 name = "strsim"
1425 version = "0.10.0"
1426 source = "registry+https://github.com/rust-lang/crates.io-index"
1427 checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
1428
1429 [[package]]
1430 name = "syn"
1431 version = "1.0.91"
1432 source = "registry+https://github.com/rust-lang/crates.io-index"
1433 checksum = "b683b2b825c8eef438b77c36a06dc262294da3d5a5813fac20da149241dcd44d"
1434 dependencies = [
1435  "proc-macro2",
1436  "quote",
1437  "unicode-xid",
1438 ]
1439
1440 [[package]]
1441 name = "sysinfo"
1442 version = "0.23.8"
1443 source = "registry+https://github.com/rust-lang/crates.io-index"
1444 checksum = "ad04c584871b8dceb769a20b94e26a357a870c999b7246dcd4cb233d927547e3"
1445 dependencies = [
1446  "cfg-if",
1447  "core-foundation-sys",
1448  "libc",
1449  "ntapi",
1450  "once_cell",
1451  "rayon",
1452  "winapi",
1453 ]
1454
1455 [[package]]
1456 name = "systemd"
1457 version = "0.10.0"
1458 source = "registry+https://github.com/rust-lang/crates.io-index"
1459 checksum = "afec0101d9ae8ab26aedf0840109df689938ea7e538aa03df4369f1854f11562"
1460 dependencies = [
1461  "cstr-argument",
1462  "foreign-types",
1463  "libc",
1464  "libsystemd-sys",
1465  "log",
1466  "memchr",
1467  "utf8-cstr",
1468 ]
1469
1470 [[package]]
1471 name = "thiserror"
1472 version = "1.0.30"
1473 source = "registry+https://github.com/rust-lang/crates.io-index"
1474 checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
1475 dependencies = [
1476  "thiserror-impl",
1477 ]
1478
1479 [[package]]
1480 name = "thiserror-impl"
1481 version = "1.0.30"
1482 source = "registry+https://github.com/rust-lang/crates.io-index"
1483 checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
1484 dependencies = [
1485  "proc-macro2",
1486  "quote",
1487  "syn",
1488 ]
1489
1490 [[package]]
1491 name = "time"
1492 version = "0.1.43"
1493 source = "registry+https://github.com/rust-lang/crates.io-index"
1494 checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
1495 dependencies = [
1496  "libc",
1497  "winapi",
1498 ]
1499
1500 [[package]]
1501 name = "time"
1502 version = "0.3.9"
1503 source = "registry+https://github.com/rust-lang/crates.io-index"
1504 checksum = "c2702e08a7a860f005826c6815dcac101b19b5eb330c27fe4a5928fec1d20ddd"
1505 dependencies = [
1506  "itoa",
1507  "libc",
1508  "num_threads",
1509  "time-macros",
1510 ]
1511
1512 [[package]]
1513 name = "time-macros"
1514 version = "0.2.4"
1515 source = "registry+https://github.com/rust-lang/crates.io-index"
1516 checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
1517
1518 [[package]]
1519 name = "tinyvec"
1520 version = "1.5.1"
1521 source = "registry+https://github.com/rust-lang/crates.io-index"
1522 checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2"
1523 dependencies = [
1524  "tinyvec_macros",
1525 ]
1526
1527 [[package]]
1528 name = "tinyvec_macros"
1529 version = "0.1.0"
1530 source = "registry+https://github.com/rust-lang/crates.io-index"
1531 checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
1532
1533 [[package]]
1534 name = "tokio"
1535 version = "1.17.0"
1536 source = "registry+https://github.com/rust-lang/crates.io-index"
1537 checksum = "2af73ac49756f3f7c01172e34a23e5d0216f6c32333757c2c61feb2bbff5a5ee"
1538 dependencies = [
1539  "bytes",
1540  "libc",
1541  "memchr",
1542  "mio",
1543  "num_cpus",
1544  "once_cell",
1545  "parking_lot",
1546  "pin-project-lite",
1547  "signal-hook-registry",
1548  "socket2",
1549  "tokio-macros",
1550  "winapi",
1551 ]
1552
1553 [[package]]
1554 name = "tokio-macros"
1555 version = "1.7.0"
1556 source = "registry+https://github.com/rust-lang/crates.io-index"
1557 checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7"
1558 dependencies = [
1559  "proc-macro2",
1560  "quote",
1561  "syn",
1562 ]
1563
1564 [[package]]
1565 name = "tokio-util"
1566 version = "0.7.1"
1567 source = "registry+https://github.com/rust-lang/crates.io-index"
1568 checksum = "0edfdeb067411dba2044da6d1cb2df793dd35add7888d73c16e3381ded401764"
1569 dependencies = [
1570  "bytes",
1571  "futures-core",
1572  "futures-sink",
1573  "pin-project-lite",
1574  "tokio",
1575  "tracing",
1576 ]
1577
1578 [[package]]
1579 name = "toml"
1580 version = "0.5.8"
1581 source = "registry+https://github.com/rust-lang/crates.io-index"
1582 checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
1583 dependencies = [
1584  "serde",
1585 ]
1586
1587 [[package]]
1588 name = "tracing"
1589 version = "0.1.32"
1590 source = "registry+https://github.com/rust-lang/crates.io-index"
1591 checksum = "4a1bdf54a7c28a2bbf701e1d2233f6c77f473486b94bee4f9678da5a148dca7f"
1592 dependencies = [
1593  "cfg-if",
1594  "log",
1595  "pin-project-lite",
1596  "tracing-attributes",
1597  "tracing-core",
1598 ]
1599
1600 [[package]]
1601 name = "tracing-attributes"
1602 version = "0.1.20"
1603 source = "registry+https://github.com/rust-lang/crates.io-index"
1604 checksum = "2e65ce065b4b5c53e73bb28912318cb8c9e9ad3921f1d669eb0e68b4c8143a2b"
1605 dependencies = [
1606  "proc-macro2",
1607  "quote",
1608  "syn",
1609 ]
1610
1611 [[package]]
1612 name = "tracing-core"
1613 version = "0.1.24"
1614 source = "registry+https://github.com/rust-lang/crates.io-index"
1615 checksum = "90442985ee2f57c9e1b548ee72ae842f4a9a20e3f417cc38dbc5dc684d9bb4ee"
1616 dependencies = [
1617  "lazy_static",
1618 ]
1619
1620 [[package]]
1621 name = "typenum"
1622 version = "1.15.0"
1623 source = "registry+https://github.com/rust-lang/crates.io-index"
1624 checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
1625
1626 [[package]]
1627 name = "unicase"
1628 version = "2.6.0"
1629 source = "registry+https://github.com/rust-lang/crates.io-index"
1630 checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
1631 dependencies = [
1632  "version_check",
1633 ]
1634
1635 [[package]]
1636 name = "unicode-bidi"
1637 version = "0.3.7"
1638 source = "registry+https://github.com/rust-lang/crates.io-index"
1639 checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f"
1640
1641 [[package]]
1642 name = "unicode-normalization"
1643 version = "0.1.19"
1644 source = "registry+https://github.com/rust-lang/crates.io-index"
1645 checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
1646 dependencies = [
1647  "tinyvec",
1648 ]
1649
1650 [[package]]
1651 name = "unicode-xid"
1652 version = "0.2.2"
1653 source = "registry+https://github.com/rust-lang/crates.io-index"
1654 checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
1655
1656 [[package]]
1657 name = "url"
1658 version = "2.2.2"
1659 source = "registry+https://github.com/rust-lang/crates.io-index"
1660 checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
1661 dependencies = [
1662  "form_urlencoded",
1663  "idna",
1664  "matches",
1665  "percent-encoding",
1666 ]
1667
1668 [[package]]
1669 name = "utf8-cstr"
1670 version = "0.1.6"
1671 source = "registry+https://github.com/rust-lang/crates.io-index"
1672 checksum = "55bcbb425141152b10d5693095950b51c3745d019363fc2929ffd8f61449b628"
1673
1674 [[package]]
1675 name = "valheim_web"
1676 version = "1.0.0"
1677 dependencies = [
1678  "actix-files",
1679  "actix-web",
1680  "askama",
1681  "askama_actix",
1682  "cached",
1683  "chrono",
1684  "common",
1685  "futures",
1686  "itertools",
1687  "ron",
1688  "serde",
1689  "sysinfo",
1690  "systemd",
1691 ]
1692
1693 [[package]]
1694 name = "version_check"
1695 version = "0.9.4"
1696 source = "registry+https://github.com/rust-lang/crates.io-index"
1697 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
1698
1699 [[package]]
1700 name = "wasi"
1701 version = "0.10.2+wasi-snapshot-preview1"
1702 source = "registry+https://github.com/rust-lang/crates.io-index"
1703 checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
1704
1705 [[package]]
1706 name = "wasi"
1707 version = "0.11.0+wasi-snapshot-preview1"
1708 source = "registry+https://github.com/rust-lang/crates.io-index"
1709 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1710
1711 [[package]]
1712 name = "winapi"
1713 version = "0.3.9"
1714 source = "registry+https://github.com/rust-lang/crates.io-index"
1715 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1716 dependencies = [
1717  "winapi-i686-pc-windows-gnu",
1718  "winapi-x86_64-pc-windows-gnu",
1719 ]
1720
1721 [[package]]
1722 name = "winapi-i686-pc-windows-gnu"
1723 version = "0.4.0"
1724 source = "registry+https://github.com/rust-lang/crates.io-index"
1725 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1726
1727 [[package]]
1728 name = "winapi-x86_64-pc-windows-gnu"
1729 version = "0.4.0"
1730 source = "registry+https://github.com/rust-lang/crates.io-index"
1731 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1732
1733 [[package]]
1734 name = "windows-sys"
1735 version = "0.34.0"
1736 source = "registry+https://github.com/rust-lang/crates.io-index"
1737 checksum = "5acdd78cb4ba54c0045ac14f62d8f94a03d10047904ae2a40afa1e99d8f70825"
1738 dependencies = [
1739  "windows_aarch64_msvc",
1740  "windows_i686_gnu",
1741  "windows_i686_msvc",
1742  "windows_x86_64_gnu",
1743  "windows_x86_64_msvc",
1744 ]
1745
1746 [[package]]
1747 name = "windows_aarch64_msvc"
1748 version = "0.34.0"
1749 source = "registry+https://github.com/rust-lang/crates.io-index"
1750 checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d"
1751
1752 [[package]]
1753 name = "windows_i686_gnu"
1754 version = "0.34.0"
1755 source = "registry+https://github.com/rust-lang/crates.io-index"
1756 checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed"
1757
1758 [[package]]
1759 name = "windows_i686_msvc"
1760 version = "0.34.0"
1761 source = "registry+https://github.com/rust-lang/crates.io-index"
1762 checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956"
1763
1764 [[package]]
1765 name = "windows_x86_64_gnu"
1766 version = "0.34.0"
1767 source = "registry+https://github.com/rust-lang/crates.io-index"
1768 checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4"
1769
1770 [[package]]
1771 name = "windows_x86_64_msvc"
1772 version = "0.34.0"
1773 source = "registry+https://github.com/rust-lang/crates.io-index"
1774 checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9"
1775
1776 [[package]]
1777 name = "zstd"
1778 version = "0.10.0+zstd.1.5.2"
1779 source = "registry+https://github.com/rust-lang/crates.io-index"
1780 checksum = "3b1365becbe415f3f0fcd024e2f7b45bacfb5bdd055f0dc113571394114e7bdd"
1781 dependencies = [
1782  "zstd-safe",
1783 ]
1784
1785 [[package]]
1786 name = "zstd-safe"
1787 version = "4.1.4+zstd.1.5.2"
1788 source = "registry+https://github.com/rust-lang/crates.io-index"
1789 checksum = "2f7cd17c9af1a4d6c24beb1cc54b17e2ef7b593dc92f19e9d9acad8b182bbaee"
1790 dependencies = [
1791  "libc",
1792  "zstd-sys",
1793 ]
1794
1795 [[package]]
1796 name = "zstd-sys"
1797 version = "1.6.3+zstd.1.5.2"
1798 source = "registry+https://github.com/rust-lang/crates.io-index"
1799 checksum = "fc49afa5c8d634e75761feda8c592051e7eeb4683ba827211eb0d731d3402ea8"
1800 dependencies = [
1801  "cc",
1802  "libc",
1803 ]