Lines of
Cargo.lock
from check-in aae1b6f580
that are changed by the sequence of edits moving toward
check-in 45e34762e4:
1: # This file is automatically @generated by Cargo.
2: # It is not intended for manual editing.
3: version = 3
4:
5: [[package]]
6: name = "addr2line"
7: version = "0.19.0"
8: source = "registry+https://github.com/rust-lang/crates.io-index"
9: checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
10: dependencies = [
11: "gimli",
12: ]
13:
14: [[package]]
15: name = "adler"
16: version = "1.0.2"
17: source = "registry+https://github.com/rust-lang/crates.io-index"
18: checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
19:
20: [[package]]
21: name = "ahash"
22: version = "0.7.6"
23: source = "registry+https://github.com/rust-lang/crates.io-index"
24: checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
25: dependencies = [
26: "getrandom 0.2.9",
27: "once_cell",
28: "version_check",
29: ]
30:
31: [[package]]
32: name = "ahash"
33: version = "0.8.3"
34: source = "registry+https://github.com/rust-lang/crates.io-index"
35: checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
36: dependencies = [
37: "cfg-if 1.0.0",
38: "once_cell",
39: "version_check",
40: ]
41:
42: [[package]]
43: name = "aho-corasick"
44: version = "1.0.1"
45: source = "registry+https://github.com/rust-lang/crates.io-index"
46: checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04"
47: dependencies = [
48: "memchr",
49: ]
50:
51: [[package]]
52: name = "alloc-no-stdlib"
53: version = "2.0.4"
54: source = "registry+https://github.com/rust-lang/crates.io-index"
55: checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
56:
57: [[package]]
58: name = "alloc-stdlib"
59: version = "0.2.2"
60: source = "registry+https://github.com/rust-lang/crates.io-index"
61: checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
62: dependencies = [
63: "alloc-no-stdlib",
64: ]
65:
66: [[package]]
67: name = "android_system_properties"
68: version = "0.1.5"
69: source = "registry+https://github.com/rust-lang/crates.io-index"
70: checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
71: dependencies = [
72: "libc",
73: ]
74:
75: [[package]]
76: name = "anyhow"
77: version = "1.0.71"
78: source = "registry+https://github.com/rust-lang/crates.io-index"
79: checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
80:
81: [[package]]
82: name = "async-channel"
83: version = "1.8.0"
84: source = "registry+https://github.com/rust-lang/crates.io-index"
85: checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833"
86: dependencies = [
87: "concurrent-queue",
88: "event-listener",
89: "futures-core",
90: ]
91:
92: [[package]]
93: name = "async-compression"
94: version = "0.4.0"
95: source = "registry+https://github.com/rust-lang/crates.io-index"
96: checksum = "5b0122885821398cc923ece939e24d1056a2384ee719432397fa9db87230ff11"
97: dependencies = [
98: "brotli",
99: "flate2",
100: "futures-core",
101: "memchr",
102: "pin-project-lite",
aae1b6f580 2023-05-27 103: "tokio 1.28.1",
104: ]
105:
106: [[package]]
107: name = "async-executor"
108: version = "1.5.1"
109: source = "registry+https://github.com/rust-lang/crates.io-index"
110: checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb"
111: dependencies = [
112: "async-lock",
113: "async-task",
114: "concurrent-queue",
115: "fastrand",
116: "futures-lite",
117: "slab",
118: ]
119:
120: [[package]]
121: name = "async-global-executor"
122: version = "2.3.1"
123: source = "registry+https://github.com/rust-lang/crates.io-index"
124: checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776"
125: dependencies = [
126: "async-channel",
127: "async-executor",
128: "async-io",
129: "async-lock",
130: "blocking",
131: "futures-lite",
132: "once_cell",
aae1b6f580 2023-05-27 133: "tokio 1.28.1",
134: ]
135:
136: [[package]]
137: name = "async-io"
138: version = "1.13.0"
139: source = "registry+https://github.com/rust-lang/crates.io-index"
140: checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
141: dependencies = [
142: "async-lock",
143: "autocfg 1.1.0",
144: "cfg-if 1.0.0",
145: "concurrent-queue",
146: "futures-lite",
147: "log",
148: "parking",
149: "polling",
150: "rustix",
151: "slab",
152: "socket2",
153: "waker-fn",
154: ]
155:
156: [[package]]
157: name = "async-lock"
158: version = "2.7.0"
159: source = "registry+https://github.com/rust-lang/crates.io-index"
160: checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7"
161: dependencies = [
162: "event-listener",
163: ]
164:
165: [[package]]
166: name = "async-process"
167: version = "1.7.0"
168: source = "registry+https://github.com/rust-lang/crates.io-index"
169: checksum = "7a9d28b1d97e08915212e2e45310d47854eafa69600756fc735fb788f75199c9"
170: dependencies = [
171: "async-io",
172: "async-lock",
173: "autocfg 1.1.0",
174: "blocking",
175: "cfg-if 1.0.0",
176: "event-listener",
177: "futures-lite",
178: "rustix",
179: "signal-hook",
180: "windows-sys 0.48.0",
181: ]
182:
183: [[package]]
184: name = "async-std"
185: version = "1.12.0"
186: source = "registry+https://github.com/rust-lang/crates.io-index"
187: checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
188: dependencies = [
189: "async-channel",
190: "async-global-executor",
191: "async-io",
192: "async-lock",
193: "async-process",
194: "crossbeam-utils 0.8.15",
195: "futures-channel",
196: "futures-core",
197: "futures-io",
198: "futures-lite",
199: "gloo-timers",
200: "kv-log-macro",
201: "log",
202: "memchr",
203: "once_cell",
204: "pin-project-lite",
205: "pin-utils",
206: "slab",
207: "wasm-bindgen-futures",
208: ]
209:
210: [[package]]
211: name = "async-task"
212: version = "4.4.0"
213: source = "registry+https://github.com/rust-lang/crates.io-index"
214: checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae"
215:
216: [[package]]
217: name = "async-trait"
218: version = "0.1.68"
219: source = "registry+https://github.com/rust-lang/crates.io-index"
220: checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
221: dependencies = [
222: "proc-macro2",
223: "quote",
aae1b6f580 2023-05-27 224: "syn 2.0.17",
225: ]
226:
227: [[package]]
228: name = "atoi"
229: version = "1.0.0"
230: source = "registry+https://github.com/rust-lang/crates.io-index"
231: checksum = "d7c57d12312ff59c811c0643f4d80830505833c9ffaebd193d819392b265be8e"
232: dependencies = [
233: "num-traits",
234: ]
235:
236: [[package]]
237: name = "atom_syndication"
238: version = "0.12.1"
239: source = "registry+https://github.com/rust-lang/crates.io-index"
240: checksum = "ca96cb38e3d8236f1573a84bbc55e130bd1ae07df770e36d0cf221ea7a50e36c"
241: dependencies = [
242: "chrono",
243: "derive_builder 0.12.0",
244: "diligent-date-parser",
245: "never",
246: "quick-xml 0.28.2",
247: "serde",
248: ]
249:
250: [[package]]
251: name = "atomic-waker"
252: version = "1.1.1"
253: source = "registry+https://github.com/rust-lang/crates.io-index"
254: checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3"
255:
256: [[package]]
257: name = "autocfg"
258: version = "0.1.8"
259: source = "registry+https://github.com/rust-lang/crates.io-index"
260: checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78"
261: dependencies = [
262: "autocfg 1.1.0",
263: ]
264:
265: [[package]]
266: name = "autocfg"
267: version = "1.1.0"
268: source = "registry+https://github.com/rust-lang/crates.io-index"
269: checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
270:
271: [[package]]
272: name = "backtrace"
273: version = "0.3.67"
274: source = "registry+https://github.com/rust-lang/crates.io-index"
275: checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
276: dependencies = [
277: "addr2line",
278: "cc",
279: "cfg-if 1.0.0",
280: "libc",
281: "miniz_oxide 0.6.2",
282: "object",
283: "rustc-demangle",
284: ]
285:
286: [[package]]
287: name = "base64"
288: version = "0.10.1"
289: source = "registry+https://github.com/rust-lang/crates.io-index"
290: checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
291: dependencies = [
292: "byteorder",
293: ]
294:
295: [[package]]
296: name = "base64"
297: version = "0.13.1"
298: source = "registry+https://github.com/rust-lang/crates.io-index"
299: checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
300:
301: [[package]]
302: name = "base64"
303: version = "0.21.2"
304: source = "registry+https://github.com/rust-lang/crates.io-index"
305: checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
306:
307: [[package]]
308: name = "bitflags"
309: version = "1.3.2"
310: source = "registry+https://github.com/rust-lang/crates.io-index"
311: checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
312:
313: [[package]]
314: name = "block-buffer"
315: version = "0.10.4"
316: source = "registry+https://github.com/rust-lang/crates.io-index"
317: checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
318: dependencies = [
319: "generic-array",
320: ]
321:
322: [[package]]
323: name = "blocking"
324: version = "1.3.1"
325: source = "registry+https://github.com/rust-lang/crates.io-index"
326: checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65"
327: dependencies = [
328: "async-channel",
329: "async-lock",
330: "async-task",
331: "atomic-waker",
332: "fastrand",
333: "futures-lite",
334: "log",
335: ]
336:
337: [[package]]
338: name = "brotli"
339: version = "3.3.4"
340: source = "registry+https://github.com/rust-lang/crates.io-index"
341: checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
342: dependencies = [
343: "alloc-no-stdlib",
344: "alloc-stdlib",
345: "brotli-decompressor",
346: ]
347:
348: [[package]]
349: name = "brotli-decompressor"
350: version = "2.3.4"
351: source = "registry+https://github.com/rust-lang/crates.io-index"
352: checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744"
353: dependencies = [
354: "alloc-no-stdlib",
355: "alloc-stdlib",
356: ]
357:
358: [[package]]
359: name = "bumpalo"
360: version = "3.13.0"
361: source = "registry+https://github.com/rust-lang/crates.io-index"
362: checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
363:
364: [[package]]
365: name = "byteorder"
366: version = "1.4.3"
367: source = "registry+https://github.com/rust-lang/crates.io-index"
368: checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
369:
370: [[package]]
371: name = "bytes"
372: version = "0.4.12"
373: source = "registry+https://github.com/rust-lang/crates.io-index"
374: checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
375: dependencies = [
376: "byteorder",
377: "either",
378: "iovec",
379: ]
380:
381: [[package]]
382: name = "bytes"
383: version = "1.4.0"
384: source = "registry+https://github.com/rust-lang/crates.io-index"
385: checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
386:
387: [[package]]
388: name = "cc"
389: version = "1.0.79"
390: source = "registry+https://github.com/rust-lang/crates.io-index"
391: checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
392:
393: [[package]]
394: name = "cfg-if"
395: version = "0.1.10"
396: source = "registry+https://github.com/rust-lang/crates.io-index"
397: checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
398:
399: [[package]]
400: name = "cfg-if"
401: version = "1.0.0"
402: source = "registry+https://github.com/rust-lang/crates.io-index"
403: checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
404:
405: [[package]]
406: name = "chrono"
407: version = "0.4.24"
408: source = "registry+https://github.com/rust-lang/crates.io-index"
409: checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b"
410: dependencies = [
411: "iana-time-zone",
412: "js-sys",
413: "num-integer",
414: "num-traits",
415: "serde",
416: "time",
417: "wasm-bindgen",
418: "winapi 0.3.9",
419: ]
420:
421: [[package]]
422: name = "cloudabi"
423: version = "0.0.3"
424: source = "registry+https://github.com/rust-lang/crates.io-index"
425: checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
426: dependencies = [
427: "bitflags",
428: ]
429:
430: [[package]]
431: name = "concurrent-queue"
432: version = "2.2.0"
433: source = "registry+https://github.com/rust-lang/crates.io-index"
434: checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c"
435: dependencies = [
436: "crossbeam-utils 0.8.15",
437: ]
438:
439: [[package]]
440: name = "config"
441: version = "0.13.3"
442: source = "registry+https://github.com/rust-lang/crates.io-index"
443: checksum = "d379af7f68bfc21714c6c7dea883544201741d2ce8274bb12fa54f89507f52a7"
444: dependencies = [
445: "async-trait",
446: "lazy_static",
447: "nom",
448: "pathdiff",
449: "serde",
450: "toml",
451: ]
452:
453: [[package]]
454: name = "cookie"
455: version = "0.12.0"
456: source = "registry+https://github.com/rust-lang/crates.io-index"
457: checksum = "888604f00b3db336d2af898ec3c1d5d0ddf5e6d462220f2ededc33a87ac4bbd5"
458: dependencies = [
459: "time",
460: "url 1.7.2",
461: ]
462:
463: [[package]]
464: name = "cookie_store"
465: version = "0.7.0"
466: source = "registry+https://github.com/rust-lang/crates.io-index"
467: checksum = "46750b3f362965f197996c4448e4a0935e791bf7d6631bfce9ee0af3d24c919c"
468: dependencies = [
469: "cookie",
470: "failure",
471: "idna 0.1.5",
472: "log",
473: "publicsuffix",
474: "serde",
475: "serde_json",
476: "time",
477: "try_from",
478: "url 1.7.2",
479: ]
480:
481: [[package]]
482: name = "core-foundation"
483: version = "0.9.3"
484: source = "registry+https://github.com/rust-lang/crates.io-index"
485: checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
486: dependencies = [
487: "core-foundation-sys",
488: "libc",
489: ]
490:
491: [[package]]
492: name = "core-foundation-sys"
493: version = "0.8.4"
494: source = "registry+https://github.com/rust-lang/crates.io-index"
495: checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
496:
497: [[package]]
498: name = "cpufeatures"
499: version = "0.2.7"
500: source = "registry+https://github.com/rust-lang/crates.io-index"
501: checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58"
502: dependencies = [
503: "libc",
504: ]
505:
506: [[package]]
507: name = "crc"
508: version = "3.0.1"
509: source = "registry+https://github.com/rust-lang/crates.io-index"
510: checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe"
511: dependencies = [
512: "crc-catalog",
513: ]
514:
515: [[package]]
516: name = "crc-catalog"
517: version = "2.2.0"
518: source = "registry+https://github.com/rust-lang/crates.io-index"
519: checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484"
520:
521: [[package]]
522: name = "crc32fast"
523: version = "1.3.2"
524: source = "registry+https://github.com/rust-lang/crates.io-index"
525: checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
526: dependencies = [
527: "cfg-if 1.0.0",
528: ]
529:
530: [[package]]
531: name = "crossbeam-deque"
532: version = "0.7.4"
533: source = "registry+https://github.com/rust-lang/crates.io-index"
534: checksum = "c20ff29ded3204c5106278a81a38f4b482636ed4fa1e6cfbeef193291beb29ed"
535: dependencies = [
536: "crossbeam-epoch",
537: "crossbeam-utils 0.7.2",
538: "maybe-uninit",
539: ]
540:
541: [[package]]
542: name = "crossbeam-epoch"
543: version = "0.8.2"
544: source = "registry+https://github.com/rust-lang/crates.io-index"
545: checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
546: dependencies = [
547: "autocfg 1.1.0",
548: "cfg-if 0.1.10",
549: "crossbeam-utils 0.7.2",
550: "lazy_static",
551: "maybe-uninit",
552: "memoffset",
553: "scopeguard",
554: ]
555:
556: [[package]]
557: name = "crossbeam-queue"
558: version = "0.2.3"
559: source = "registry+https://github.com/rust-lang/crates.io-index"
560: checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570"
561: dependencies = [
562: "cfg-if 0.1.10",
563: "crossbeam-utils 0.7.2",
564: "maybe-uninit",
565: ]
566:
567: [[package]]
568: name = "crossbeam-queue"
569: version = "0.3.8"
570: source = "registry+https://github.com/rust-lang/crates.io-index"
571: checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
572: dependencies = [
573: "cfg-if 1.0.0",
574: "crossbeam-utils 0.8.15",
575: ]
576:
577: [[package]]
578: name = "crossbeam-utils"
579: version = "0.7.2"
580: source = "registry+https://github.com/rust-lang/crates.io-index"
581: checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
582: dependencies = [
583: "autocfg 1.1.0",
584: "cfg-if 0.1.10",
585: "lazy_static",
586: ]
587:
588: [[package]]
589: name = "crossbeam-utils"
590: version = "0.8.15"
591: source = "registry+https://github.com/rust-lang/crates.io-index"
592: checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
593: dependencies = [
594: "cfg-if 1.0.0",
595: ]
596:
597: [[package]]
598: name = "crypto-common"
599: version = "0.1.6"
600: source = "registry+https://github.com/rust-lang/crates.io-index"
601: checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
602: dependencies = [
603: "generic-array",
604: "typenum",
aae1b6f580 2023-05-27 605: ]
aae1b6f580 2023-05-27 606:
aae1b6f580 2023-05-27 607: [[package]]
aae1b6f580 2023-05-27 608: name = "ctor"
aae1b6f580 2023-05-27 609: version = "0.1.26"
aae1b6f580 2023-05-27 610: source = "registry+https://github.com/rust-lang/crates.io-index"
aae1b6f580 2023-05-27 611: checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
aae1b6f580 2023-05-27 612: dependencies = [
aae1b6f580 2023-05-27 613: "quote",
aae1b6f580 2023-05-27 614: "syn 1.0.109",
615: ]
616:
617: [[package]]
618: name = "darling"
619: version = "0.10.2"
620: source = "registry+https://github.com/rust-lang/crates.io-index"
621: checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
622: dependencies = [
623: "darling_core 0.10.2",
624: "darling_macro 0.10.2",
625: ]
626:
627: [[package]]
628: name = "darling"
629: version = "0.14.4"
630: source = "registry+https://github.com/rust-lang/crates.io-index"
631: checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
632: dependencies = [
633: "darling_core 0.14.4",
634: "darling_macro 0.14.4",
635: ]
636:
637: [[package]]
638: name = "darling_core"
639: version = "0.10.2"
640: source = "registry+https://github.com/rust-lang/crates.io-index"
641: checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
642: dependencies = [
643: "fnv",
644: "ident_case",
645: "proc-macro2",
646: "quote",
647: "strsim 0.9.3",
648: "syn 1.0.109",
649: ]
650:
651: [[package]]
652: name = "darling_core"
653: version = "0.14.4"
654: source = "registry+https://github.com/rust-lang/crates.io-index"
655: checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
656: dependencies = [
657: "fnv",
658: "ident_case",
659: "proc-macro2",
660: "quote",
661: "strsim 0.10.0",
662: "syn 1.0.109",
663: ]
664:
665: [[package]]
666: name = "darling_macro"
667: version = "0.10.2"
668: source = "registry+https://github.com/rust-lang/crates.io-index"
669: checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
670: dependencies = [
671: "darling_core 0.10.2",
672: "quote",
673: "syn 1.0.109",
674: ]
675:
676: [[package]]
677: name = "darling_macro"
678: version = "0.14.4"
679: source = "registry+https://github.com/rust-lang/crates.io-index"
680: checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
681: dependencies = [
682: "darling_core 0.14.4",
683: "quote",
684: "syn 1.0.109",
685: ]
686:
687: [[package]]
688: name = "derive_builder"
689: version = "0.9.0"
690: source = "registry+https://github.com/rust-lang/crates.io-index"
691: checksum = "a2658621297f2cf68762a6f7dc0bb7e1ff2cfd6583daef8ee0fed6f7ec468ec0"
692: dependencies = [
693: "darling 0.10.2",
694: "derive_builder_core 0.9.0",
695: "proc-macro2",
696: "quote",
697: "syn 1.0.109",
698: ]
699:
700: [[package]]
701: name = "derive_builder"
702: version = "0.12.0"
703: source = "registry+https://github.com/rust-lang/crates.io-index"
704: checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8"
705: dependencies = [
706: "derive_builder_macro",
707: ]
708:
709: [[package]]
710: name = "derive_builder_core"
711: version = "0.9.0"
712: source = "registry+https://github.com/rust-lang/crates.io-index"
713: checksum = "2791ea3e372c8495c0bc2033991d76b512cd799d07491fbd6890124db9458bef"
714: dependencies = [
715: "darling 0.10.2",
716: "proc-macro2",
717: "quote",
718: "syn 1.0.109",
719: ]
720:
721: [[package]]
722: name = "derive_builder_core"
723: version = "0.12.0"
724: source = "registry+https://github.com/rust-lang/crates.io-index"
725: checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f"
726: dependencies = [
727: "darling 0.14.4",
728: "proc-macro2",
729: "quote",
730: "syn 1.0.109",
731: ]
732:
733: [[package]]
734: name = "derive_builder_macro"
735: version = "0.12.0"
736: source = "registry+https://github.com/rust-lang/crates.io-index"
737: checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e"
738: dependencies = [
739: "derive_builder_core 0.12.0",
740: "syn 1.0.109",
741: ]
742:
743: [[package]]
744: name = "digest"
745: version = "0.10.7"
746: source = "registry+https://github.com/rust-lang/crates.io-index"
747: checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
748: dependencies = [
749: "block-buffer",
750: "crypto-common",
751: "subtle",
752: ]
753:
754: [[package]]
755: name = "diligent-date-parser"
756: version = "0.1.4"
757: source = "registry+https://github.com/rust-lang/crates.io-index"
758: checksum = "f6cf7fe294274a222363f84bcb63cdea762979a0443b4cf1f4f8fd17c86b1182"
759: dependencies = [
760: "chrono",
761: ]
762:
763: [[package]]
764: name = "dirs"
765: version = "4.0.0"
766: source = "registry+https://github.com/rust-lang/crates.io-index"
767: checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
768: dependencies = [
769: "dirs-sys",
770: ]
771:
772: [[package]]
773: name = "dirs-sys"
774: version = "0.3.7"
775: source = "registry+https://github.com/rust-lang/crates.io-index"
776: checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
777: dependencies = [
778: "libc",
779: "redox_users",
780: "winapi 0.3.9",
781: ]
782:
783: [[package]]
784: name = "dotenvy"
785: version = "0.15.7"
786: source = "registry+https://github.com/rust-lang/crates.io-index"
787: checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
788:
789: [[package]]
790: name = "dtoa"
791: version = "0.4.8"
792: source = "registry+https://github.com/rust-lang/crates.io-index"
793: checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
794:
795: [[package]]
796: name = "either"
797: version = "1.8.1"
798: source = "registry+https://github.com/rust-lang/crates.io-index"
799: checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
800:
801: [[package]]
802: name = "encoding_rs"
803: version = "0.8.32"
804: source = "registry+https://github.com/rust-lang/crates.io-index"
805: checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
806: dependencies = [
807: "cfg-if 1.0.0",
808: ]
809:
810: [[package]]
811: name = "errno"
812: version = "0.3.1"
813: source = "registry+https://github.com/rust-lang/crates.io-index"
814: checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
815: dependencies = [
816: "errno-dragonfly",
817: "libc",
818: "windows-sys 0.48.0",
819: ]
820:
821: [[package]]
822: name = "errno-dragonfly"
823: version = "0.1.2"
824: source = "registry+https://github.com/rust-lang/crates.io-index"
825: checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
826: dependencies = [
827: "cc",
828: "libc",
829: ]
830:
831: [[package]]
832: name = "event-listener"
833: version = "2.5.3"
834: source = "registry+https://github.com/rust-lang/crates.io-index"
835: checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
836:
837: [[package]]
838: name = "failure"
839: version = "0.1.8"
840: source = "registry+https://github.com/rust-lang/crates.io-index"
841: checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86"
842: dependencies = [
843: "backtrace",
844: "failure_derive",
845: ]
846:
847: [[package]]
848: name = "failure_derive"
849: version = "0.1.8"
850: source = "registry+https://github.com/rust-lang/crates.io-index"
851: checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
852: dependencies = [
853: "proc-macro2",
854: "quote",
855: "syn 1.0.109",
856: "synstructure",
857: ]
858:
859: [[package]]
860: name = "fastrand"
861: version = "1.9.0"
862: source = "registry+https://github.com/rust-lang/crates.io-index"
863: checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
864: dependencies = [
865: "instant",
866: ]
867:
868: [[package]]
869: name = "flate2"
870: version = "1.0.26"
871: source = "registry+https://github.com/rust-lang/crates.io-index"
872: checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
873: dependencies = [
874: "crc32fast",
875: "miniz_oxide 0.7.1",
876: ]
877:
878: [[package]]
879: name = "fnv"
880: version = "1.0.7"
881: source = "registry+https://github.com/rust-lang/crates.io-index"
882: checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
883:
884: [[package]]
885: name = "foreign-types"
886: version = "0.3.2"
887: source = "registry+https://github.com/rust-lang/crates.io-index"
888: checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
889: dependencies = [
890: "foreign-types-shared",
891: ]
892:
893: [[package]]
894: name = "foreign-types-shared"
895: version = "0.1.1"
896: source = "registry+https://github.com/rust-lang/crates.io-index"
897: checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
898:
899: [[package]]
900: name = "form_urlencoded"
901: version = "1.1.0"
902: source = "registry+https://github.com/rust-lang/crates.io-index"
903: checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
904: dependencies = [
905: "percent-encoding 2.2.0",
906: ]
907:
908: [[package]]
909: name = "fuchsia-cprng"
910: version = "0.1.1"
911: source = "registry+https://github.com/rust-lang/crates.io-index"
912: checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
913:
914: [[package]]
915: name = "fuchsia-zircon"
916: version = "0.3.3"
917: source = "registry+https://github.com/rust-lang/crates.io-index"
918: checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
919: dependencies = [
920: "bitflags",
921: "fuchsia-zircon-sys",
922: ]
923:
924: [[package]]
925: name = "fuchsia-zircon-sys"
926: version = "0.3.3"
927: source = "registry+https://github.com/rust-lang/crates.io-index"
928: checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
929:
930: [[package]]
931: name = "futures"
932: version = "0.1.31"
933: source = "registry+https://github.com/rust-lang/crates.io-index"
934: checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678"
935:
936: [[package]]
937: name = "futures"
938: version = "0.3.28"
939: source = "registry+https://github.com/rust-lang/crates.io-index"
940: checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
941: dependencies = [
942: "futures-channel",
943: "futures-core",
944: "futures-executor",
945: "futures-io",
946: "futures-sink",
947: "futures-task",
948: "futures-util",
949: ]
950:
951: [[package]]
952: name = "futures-channel"
953: version = "0.3.28"
954: source = "registry+https://github.com/rust-lang/crates.io-index"
955: checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
956: dependencies = [
957: "futures-core",
958: "futures-sink",
959: ]
960:
961: [[package]]
962: name = "futures-core"
963: version = "0.3.28"
964: source = "registry+https://github.com/rust-lang/crates.io-index"
965: checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
966:
967: [[package]]
968: name = "futures-cpupool"
969: version = "0.1.8"
970: source = "registry+https://github.com/rust-lang/crates.io-index"
971: checksum = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4"
972: dependencies = [
973: "futures 0.1.31",
974: "num_cpus",
975: ]
976:
977: [[package]]
978: name = "futures-executor"
979: version = "0.3.28"
980: source = "registry+https://github.com/rust-lang/crates.io-index"
981: checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
982: dependencies = [
983: "futures-core",
984: "futures-task",
985: "futures-util",
986: ]
987:
988: [[package]]
989: name = "futures-intrusive"
990: version = "0.4.2"
991: source = "registry+https://github.com/rust-lang/crates.io-index"
992: checksum = "a604f7a68fbf8103337523b1fadc8ade7361ee3f112f7c680ad179651616aed5"
993: dependencies = [
994: "futures-core",
995: "lock_api 0.4.9",
996: "parking_lot 0.11.2",
997: ]
998:
999: [[package]]
1000: name = "futures-io"
1001: version = "0.3.28"
1002: source = "registry+https://github.com/rust-lang/crates.io-index"
1003: checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
1004:
1005: [[package]]
1006: name = "futures-lite"
1007: version = "1.13.0"
1008: source = "registry+https://github.com/rust-lang/crates.io-index"
1009: checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
1010: dependencies = [
1011: "fastrand",
1012: "futures-core",
1013: "futures-io",
1014: "memchr",
1015: "parking",
1016: "pin-project-lite",
1017: "waker-fn",
1018: ]
1019:
1020: [[package]]
1021: name = "futures-macro"
1022: version = "0.3.28"
1023: source = "registry+https://github.com/rust-lang/crates.io-index"
1024: checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
1025: dependencies = [
1026: "proc-macro2",
1027: "quote",
aae1b6f580 2023-05-27 1028: "syn 2.0.17",
1029: ]
1030:
1031: [[package]]
1032: name = "futures-rustls"
1033: version = "0.22.2"
1034: source = "registry+https://github.com/rust-lang/crates.io-index"
1035: checksum = "d2411eed028cdf8c8034eaf21f9915f956b6c3abec4d4c7949ee67f0721127bd"
1036: dependencies = [
1037: "futures-io",
1038: "rustls",
1039: "webpki",
1040: ]
1041:
1042: [[package]]
1043: name = "futures-sink"
1044: version = "0.3.28"
1045: source = "registry+https://github.com/rust-lang/crates.io-index"
1046: checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
1047:
1048: [[package]]
1049: name = "futures-task"
1050: version = "0.3.28"
1051: source = "registry+https://github.com/rust-lang/crates.io-index"
1052: checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
1053:
1054: [[package]]
1055: name = "futures-util"
1056: version = "0.3.28"
1057: source = "registry+https://github.com/rust-lang/crates.io-index"
1058: checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
1059: dependencies = [
1060: "futures-channel",
1061: "futures-core",
1062: "futures-io",
1063: "futures-macro",
1064: "futures-sink",
1065: "futures-task",
1066: "memchr",
1067: "pin-project-lite",
1068: "pin-utils",
1069: "slab",
1070: ]
1071:
1072: [[package]]
1073: name = "generic-array"
1074: version = "0.14.7"
1075: source = "registry+https://github.com/rust-lang/crates.io-index"
1076: checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1077: dependencies = [
1078: "typenum",
1079: "version_check",
1080: ]
1081:
1082: [[package]]
1083: name = "getrandom"
1084: version = "0.1.16"
1085: source = "registry+https://github.com/rust-lang/crates.io-index"
1086: checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
1087: dependencies = [
1088: "cfg-if 1.0.0",
1089: "libc",
1090: "wasi 0.9.0+wasi-snapshot-preview1",
1091: ]
1092:
1093: [[package]]
1094: name = "getrandom"
1095: version = "0.2.9"
1096: source = "registry+https://github.com/rust-lang/crates.io-index"
1097: checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
1098: dependencies = [
1099: "cfg-if 1.0.0",
1100: "libc",
1101: "wasi 0.11.0+wasi-snapshot-preview1",
1102: ]
1103:
1104: [[package]]
1105: name = "gimli"
1106: version = "0.27.2"
1107: source = "registry+https://github.com/rust-lang/crates.io-index"
1108: checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4"
1109:
1110: [[package]]
1111: name = "gloo-timers"
1112: version = "0.2.6"
1113: source = "registry+https://github.com/rust-lang/crates.io-index"
1114: checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
1115: dependencies = [
1116: "futures-channel",
1117: "futures-core",
1118: "js-sys",
1119: "wasm-bindgen",
1120: ]
1121:
1122: [[package]]
1123: name = "h2"
1124: version = "0.1.26"
1125: source = "registry+https://github.com/rust-lang/crates.io-index"
1126: checksum = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462"
1127: dependencies = [
1128: "byteorder",
1129: "bytes 0.4.12",
1130: "fnv",
1131: "futures 0.1.31",
1132: "http 0.1.21",
1133: "indexmap",
1134: "log",
1135: "slab",
1136: "string",
1137: "tokio-io",
1138: ]
1139:
1140: [[package]]
1141: name = "h2"
1142: version = "0.3.19"
1143: source = "registry+https://github.com/rust-lang/crates.io-index"
1144: checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782"
1145: dependencies = [
1146: "bytes 1.4.0",
1147: "fnv",
1148: "futures-core",
1149: "futures-sink",
1150: "futures-util",
1151: "http 0.2.9",
1152: "indexmap",
1153: "slab",
aae1b6f580 2023-05-27 1154: "tokio 1.28.1",
1155: "tokio-util",
1156: "tracing",
1157: ]
1158:
1159: [[package]]
1160: name = "hashbrown"
1161: version = "0.12.3"
1162: source = "registry+https://github.com/rust-lang/crates.io-index"
1163: checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1164:
1165: [[package]]
1166: name = "hashbrown"
1167: version = "0.13.2"
1168: source = "registry+https://github.com/rust-lang/crates.io-index"
1169: checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
1170: dependencies = [
1171: "ahash 0.8.3",
1172: ]
1173:
1174: [[package]]
1175: name = "hashlink"
1176: version = "0.8.2"
1177: source = "registry+https://github.com/rust-lang/crates.io-index"
1178: checksum = "0761a1b9491c4f2e3d66aa0f62d0fba0af9a0e2852e4d48ea506632a4b56e6aa"
1179: dependencies = [
1180: "hashbrown 0.13.2",
1181: ]
1182:
1183: [[package]]
1184: name = "heck"
1185: version = "0.4.1"
1186: source = "registry+https://github.com/rust-lang/crates.io-index"
1187: checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1188: dependencies = [
1189: "unicode-segmentation",
1190: ]
1191:
1192: [[package]]
1193: name = "hermit-abi"
1194: version = "0.2.6"
1195: source = "registry+https://github.com/rust-lang/crates.io-index"
1196: checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
1197: dependencies = [
1198: "libc",
1199: ]
1200:
1201: [[package]]
1202: name = "hermit-abi"
1203: version = "0.3.1"
1204: source = "registry+https://github.com/rust-lang/crates.io-index"
1205: checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
1206:
1207: [[package]]
1208: name = "hex"
1209: version = "0.4.3"
1210: source = "registry+https://github.com/rust-lang/crates.io-index"
1211: checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1212:
1213: [[package]]
1214: name = "hkdf"
1215: version = "0.12.3"
1216: source = "registry+https://github.com/rust-lang/crates.io-index"
1217: checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
1218: dependencies = [
1219: "hmac",
1220: ]
1221:
1222: [[package]]
1223: name = "hmac"
1224: version = "0.12.1"
1225: source = "registry+https://github.com/rust-lang/crates.io-index"
1226: checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1227: dependencies = [
1228: "digest",
1229: ]
1230:
1231: [[package]]
1232: name = "http"
1233: version = "0.1.21"
1234: source = "registry+https://github.com/rust-lang/crates.io-index"
1235: checksum = "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0"
1236: dependencies = [
1237: "bytes 0.4.12",
1238: "fnv",
1239: "itoa 0.4.8",
1240: ]
1241:
1242: [[package]]
1243: name = "http"
1244: version = "0.2.9"
1245: source = "registry+https://github.com/rust-lang/crates.io-index"
1246: checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
1247: dependencies = [
1248: "bytes 1.4.0",
1249: "fnv",
1250: "itoa 1.0.6",
1251: ]
1252:
1253: [[package]]
1254: name = "http-body"
1255: version = "0.1.0"
1256: source = "registry+https://github.com/rust-lang/crates.io-index"
1257: checksum = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d"
1258: dependencies = [
1259: "bytes 0.4.12",
1260: "futures 0.1.31",
1261: "http 0.1.21",
1262: "tokio-buf",
1263: ]
1264:
1265: [[package]]
1266: name = "http-body"
1267: version = "0.4.5"
1268: source = "registry+https://github.com/rust-lang/crates.io-index"
1269: checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
1270: dependencies = [
1271: "bytes 1.4.0",
1272: "http 0.2.9",
1273: "pin-project-lite",
1274: ]
1275:
1276: [[package]]
1277: name = "httparse"
1278: version = "1.8.0"
1279: source = "registry+https://github.com/rust-lang/crates.io-index"
1280: checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
1281:
1282: [[package]]
1283: name = "httpdate"
1284: version = "1.0.2"
1285: source = "registry+https://github.com/rust-lang/crates.io-index"
1286: checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
1287:
1288: [[package]]
1289: name = "hyper"
1290: version = "0.12.36"
1291: source = "registry+https://github.com/rust-lang/crates.io-index"
1292: checksum = "5c843caf6296fc1f93444735205af9ed4e109a539005abb2564ae1d6fad34c52"
1293: dependencies = [
1294: "bytes 0.4.12",
1295: "futures 0.1.31",
1296: "futures-cpupool",
1297: "h2 0.1.26",
1298: "http 0.1.21",
1299: "http-body 0.1.0",
1300: "httparse",
1301: "iovec",
1302: "itoa 0.4.8",
1303: "log",
1304: "net2",
1305: "rustc_version",
1306: "time",
1307: "tokio 0.1.22",
1308: "tokio-buf",
1309: "tokio-executor",
1310: "tokio-io",
1311: "tokio-reactor",
1312: "tokio-tcp",
1313: "tokio-threadpool",
1314: "tokio-timer",
1315: "want 0.2.0",
1316: ]
1317:
1318: [[package]]
1319: name = "hyper"
1320: version = "0.14.26"
1321: source = "registry+https://github.com/rust-lang/crates.io-index"
1322: checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4"
1323: dependencies = [
1324: "bytes 1.4.0",
1325: "futures-channel",
1326: "futures-core",
1327: "futures-util",
1328: "h2 0.3.19",
1329: "http 0.2.9",
1330: "http-body 0.4.5",
1331: "httparse",
1332: "httpdate",
1333: "itoa 1.0.6",
1334: "pin-project-lite",
1335: "socket2",
aae1b6f580 2023-05-27 1336: "tokio 1.28.1",
1337: "tower-service",
1338: "tracing",
1339: "want 0.3.0",
1340: ]
1341:
1342: [[package]]
1343: name = "hyper-tls"
1344: version = "0.3.2"
1345: source = "registry+https://github.com/rust-lang/crates.io-index"
1346: checksum = "3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f"
1347: dependencies = [
1348: "bytes 0.4.12",
1349: "futures 0.1.31",
1350: "hyper 0.12.36",
1351: "native-tls",
1352: "tokio-io",
1353: ]
1354:
1355: [[package]]
1356: name = "hyper-tls"
1357: version = "0.5.0"
1358: source = "registry+https://github.com/rust-lang/crates.io-index"
1359: checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
1360: dependencies = [
1361: "bytes 1.4.0",
1362: "hyper 0.14.26",
1363: "native-tls",
aae1b6f580 2023-05-27 1364: "tokio 1.28.1",
1365: "tokio-native-tls",
1366: ]
1367:
1368: [[package]]
1369: name = "iana-time-zone"
1370: version = "0.1.56"
1371: source = "registry+https://github.com/rust-lang/crates.io-index"
1372: checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c"
1373: dependencies = [
1374: "android_system_properties",
1375: "core-foundation-sys",
1376: "iana-time-zone-haiku",
1377: "js-sys",
1378: "wasm-bindgen",
1379: "windows",
1380: ]
1381:
1382: [[package]]
1383: name = "iana-time-zone-haiku"
1384: version = "0.1.2"
1385: source = "registry+https://github.com/rust-lang/crates.io-index"
1386: checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1387: dependencies = [
1388: "cc",
1389: ]
1390:
1391: [[package]]
1392: name = "ident_case"
1393: version = "1.0.1"
1394: source = "registry+https://github.com/rust-lang/crates.io-index"
1395: checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1396:
1397: [[package]]
1398: name = "idna"
1399: version = "0.1.5"
1400: source = "registry+https://github.com/rust-lang/crates.io-index"
1401: checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
1402: dependencies = [
1403: "matches",
1404: "unicode-bidi",
1405: "unicode-normalization",
1406: ]
1407:
1408: [[package]]
1409: name = "idna"
1410: version = "0.2.3"
1411: source = "registry+https://github.com/rust-lang/crates.io-index"
1412: checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
1413: dependencies = [
1414: "matches",
1415: "unicode-bidi",
1416: "unicode-normalization",
1417: ]
1418:
1419: [[package]]
1420: name = "idna"
1421: version = "0.3.0"
1422: source = "registry+https://github.com/rust-lang/crates.io-index"
1423: checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
1424: dependencies = [
1425: "unicode-bidi",
1426: "unicode-normalization",
1427: ]
1428:
1429: [[package]]
1430: name = "indexmap"
1431: version = "1.9.3"
1432: source = "registry+https://github.com/rust-lang/crates.io-index"
1433: checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1434: dependencies = [
1435: "autocfg 1.1.0",
1436: "hashbrown 0.12.3",
1437: ]
1438:
1439: [[package]]
1440: name = "instant"
1441: version = "0.1.12"
1442: source = "registry+https://github.com/rust-lang/crates.io-index"
1443: checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
1444: dependencies = [
1445: "cfg-if 1.0.0",
1446: ]
1447:
1448: [[package]]
1449: name = "io-lifetimes"
1450: version = "1.0.11"
1451: source = "registry+https://github.com/rust-lang/crates.io-index"
1452: checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
1453: dependencies = [
1454: "hermit-abi 0.3.1",
1455: "libc",
1456: "windows-sys 0.48.0",
1457: ]
1458:
1459: [[package]]
1460: name = "iovec"
1461: version = "0.1.4"
1462: source = "registry+https://github.com/rust-lang/crates.io-index"
1463: checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
1464: dependencies = [
1465: "libc",
1466: ]
1467:
1468: [[package]]
1469: name = "ipnet"
1470: version = "2.7.2"
1471: source = "registry+https://github.com/rust-lang/crates.io-index"
1472: checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
1473:
1474: [[package]]
1475: name = "itertools"
1476: version = "0.10.5"
1477: source = "registry+https://github.com/rust-lang/crates.io-index"
1478: checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1479: dependencies = [
1480: "either",
1481: ]
1482:
1483: [[package]]
1484: name = "itoa"
1485: version = "0.4.8"
1486: source = "registry+https://github.com/rust-lang/crates.io-index"
1487: checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
1488:
1489: [[package]]
1490: name = "itoa"
1491: version = "1.0.6"
1492: source = "registry+https://github.com/rust-lang/crates.io-index"
1493: checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
1494:
1495: [[package]]
1496: name = "js-sys"
1497: version = "0.3.63"
1498: source = "registry+https://github.com/rust-lang/crates.io-index"
1499: checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790"
1500: dependencies = [
1501: "wasm-bindgen",
1502: ]
1503:
1504: [[package]]
1505: name = "kernel32-sys"
1506: version = "0.2.2"
1507: source = "registry+https://github.com/rust-lang/crates.io-index"
1508: checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
1509: dependencies = [
1510: "winapi 0.2.8",
1511: "winapi-build",
1512: ]
1513:
1514: [[package]]
1515: name = "kv-log-macro"
1516: version = "1.0.7"
1517: source = "registry+https://github.com/rust-lang/crates.io-index"
1518: checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
1519: dependencies = [
1520: "log",
1521: ]
1522:
1523: [[package]]
1524: name = "lazy_static"
1525: version = "1.4.0"
1526: source = "registry+https://github.com/rust-lang/crates.io-index"
1527: checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1528:
1529: [[package]]
1530: name = "libc"
1531: version = "0.2.144"
1532: source = "registry+https://github.com/rust-lang/crates.io-index"
1533: checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1"
1534:
1535: [[package]]
1536: name = "linux-raw-sys"
1537: version = "0.3.8"
1538: source = "registry+https://github.com/rust-lang/crates.io-index"
1539: checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
1540:
1541: [[package]]
1542: name = "lock_api"
1543: version = "0.3.4"
1544: source = "registry+https://github.com/rust-lang/crates.io-index"
1545: checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"
1546: dependencies = [
1547: "scopeguard",
1548: ]
1549:
1550: [[package]]
1551: name = "lock_api"
1552: version = "0.4.9"
1553: source = "registry+https://github.com/rust-lang/crates.io-index"
1554: checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
1555: dependencies = [
1556: "autocfg 1.1.0",
1557: "scopeguard",
1558: ]
1559:
1560: [[package]]
1561: name = "log"
aae1b6f580 2023-05-27 1562: version = "0.4.17"
1563: source = "registry+https://github.com/rust-lang/crates.io-index"
aae1b6f580 2023-05-27 1564: checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
1565: dependencies = [
aae1b6f580 2023-05-27 1566: "cfg-if 1.0.0",
1567: "value-bag",
1568: ]
1569:
1570: [[package]]
1571: name = "matches"
1572: version = "0.1.10"
1573: source = "registry+https://github.com/rust-lang/crates.io-index"
1574: checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
1575:
1576: [[package]]
1577: name = "maybe-uninit"
1578: version = "2.0.0"
1579: source = "registry+https://github.com/rust-lang/crates.io-index"
1580: checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
1581:
1582: [[package]]
1583: name = "md-5"
1584: version = "0.10.5"
1585: source = "registry+https://github.com/rust-lang/crates.io-index"
1586: checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
1587: dependencies = [
1588: "digest",
1589: ]
1590:
1591: [[package]]
1592: name = "memchr"
1593: version = "2.5.0"
1594: source = "registry+https://github.com/rust-lang/crates.io-index"
1595: checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
1596:
1597: [[package]]
1598: name = "memoffset"
1599: version = "0.5.6"
1600: source = "registry+https://github.com/rust-lang/crates.io-index"
1601: checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa"
1602: dependencies = [
1603: "autocfg 1.1.0",
1604: ]
1605:
1606: [[package]]
1607: name = "mime"
1608: version = "0.3.17"
1609: source = "registry+https://github.com/rust-lang/crates.io-index"
1610: checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1611:
1612: [[package]]
1613: name = "mime_guess"
1614: version = "2.0.4"
1615: source = "registry+https://github.com/rust-lang/crates.io-index"
1616: checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
1617: dependencies = [
1618: "mime",
1619: "unicase",
1620: ]
1621:
1622: [[package]]
1623: name = "minimal-lexical"
1624: version = "0.2.1"
1625: source = "registry+https://github.com/rust-lang/crates.io-index"
1626: checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1627:
1628: [[package]]
1629: name = "miniz_oxide"
1630: version = "0.6.2"
1631: source = "registry+https://github.com/rust-lang/crates.io-index"
1632: checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
1633: dependencies = [
1634: "adler",
1635: ]
1636:
1637: [[package]]
1638: name = "miniz_oxide"
1639: version = "0.7.1"
1640: source = "registry+https://github.com/rust-lang/crates.io-index"
1641: checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
1642: dependencies = [
1643: "adler",
1644: ]
1645:
1646: [[package]]
1647: name = "mio"
1648: version = "0.6.23"
1649: source = "registry+https://github.com/rust-lang/crates.io-index"
1650: checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
1651: dependencies = [
1652: "cfg-if 0.1.10",
1653: "fuchsia-zircon",
1654: "fuchsia-zircon-sys",
1655: "iovec",
1656: "kernel32-sys",
1657: "libc",
1658: "log",
1659: "miow",
1660: "net2",
1661: "slab",
1662: "winapi 0.2.8",
1663: ]
1664:
1665: [[package]]
1666: name = "mio"
1667: version = "0.8.6"
1668: source = "registry+https://github.com/rust-lang/crates.io-index"
1669: checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
1670: dependencies = [
1671: "libc",
1672: "log",
1673: "wasi 0.11.0+wasi-snapshot-preview1",
1674: "windows-sys 0.45.0",
1675: ]
1676:
1677: [[package]]
1678: name = "miow"
1679: version = "0.2.2"
1680: source = "registry+https://github.com/rust-lang/crates.io-index"
1681: checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
1682: dependencies = [
1683: "kernel32-sys",
1684: "net2",
1685: "winapi 0.2.8",
1686: "ws2_32-sys",
1687: ]
1688:
1689: [[package]]
1690: name = "multipart"
1691: version = "0.17.1"
1692: source = "registry+https://github.com/rust-lang/crates.io-index"
1693: checksum = "d050aeedc89243f5347c3e237e3e13dc76fbe4ae3742a57b94dc14f69acf76d4"
1694: dependencies = [
1695: "log",
1696: "mime",
1697: "mime_guess",
1698: "rand 0.7.3",
1699: "tempfile",
1700: ]
1701:
1702: [[package]]
1703: name = "native-tls"
1704: version = "0.2.11"
1705: source = "registry+https://github.com/rust-lang/crates.io-index"
1706: checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
1707: dependencies = [
1708: "lazy_static",
1709: "libc",
1710: "log",
1711: "openssl",
1712: "openssl-probe",
1713: "openssl-sys",
1714: "schannel",
1715: "security-framework",
1716: "security-framework-sys",
1717: "tempfile",
1718: ]
1719:
1720: [[package]]
1721: name = "net2"
1722: version = "0.2.38"
1723: source = "registry+https://github.com/rust-lang/crates.io-index"
1724: checksum = "74d0df99cfcd2530b2e694f6e17e7f37b8e26bb23983ac530c0c97408837c631"
1725: dependencies = [
1726: "cfg-if 0.1.10",
1727: "libc",
1728: "winapi 0.3.9",
1729: ]
1730:
1731: [[package]]
1732: name = "never"
1733: version = "0.1.0"
1734: source = "registry+https://github.com/rust-lang/crates.io-index"
1735: checksum = "c96aba5aa877601bb3f6dd6a63a969e1f82e60646e81e71b14496995e9853c91"
1736:
1737: [[package]]
1738: name = "nom"
1739: version = "7.1.3"
1740: source = "registry+https://github.com/rust-lang/crates.io-index"
1741: checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1742: dependencies = [
1743: "memchr",
1744: "minimal-lexical",
1745: ]
1746:
1747: [[package]]
1748: name = "num-integer"
1749: version = "0.1.45"
1750: source = "registry+https://github.com/rust-lang/crates.io-index"
1751: checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
1752: dependencies = [
1753: "autocfg 1.1.0",
1754: "num-traits",
1755: ]
1756:
1757: [[package]]
1758: name = "num-traits"
1759: version = "0.2.15"
1760: source = "registry+https://github.com/rust-lang/crates.io-index"
1761: checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
1762: dependencies = [
1763: "autocfg 1.1.0",
1764: ]
1765:
1766: [[package]]
1767: name = "num_cpus"
1768: version = "1.15.0"
1769: source = "registry+https://github.com/rust-lang/crates.io-index"
1770: checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
1771: dependencies = [
1772: "hermit-abi 0.2.6",
1773: "libc",
1774: ]
1775:
1776: [[package]]
1777: name = "object"
1778: version = "0.30.3"
1779: source = "registry+https://github.com/rust-lang/crates.io-index"
1780: checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439"
1781: dependencies = [
1782: "memchr",
1783: ]
1784:
1785: [[package]]
1786: name = "once_cell"
1787: version = "1.17.1"
1788: source = "registry+https://github.com/rust-lang/crates.io-index"
1789: checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
1790:
1791: [[package]]
1792: name = "openssl"
1793: version = "0.10.52"
1794: source = "registry+https://github.com/rust-lang/crates.io-index"
1795: checksum = "01b8574602df80f7b85fdfc5392fa884a4e3b3f4f35402c070ab34c3d3f78d56"
1796: dependencies = [
1797: "bitflags",
1798: "cfg-if 1.0.0",
1799: "foreign-types",
1800: "libc",
1801: "once_cell",
1802: "openssl-macros",
1803: "openssl-sys",
1804: ]
1805:
1806: [[package]]
1807: name = "openssl-macros"
1808: version = "0.1.1"
1809: source = "registry+https://github.com/rust-lang/crates.io-index"
1810: checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1811: dependencies = [
1812: "proc-macro2",
1813: "quote",
aae1b6f580 2023-05-27 1814: "syn 2.0.17",
1815: ]
1816:
1817: [[package]]
1818: name = "openssl-probe"
1819: version = "0.1.5"
1820: source = "registry+https://github.com/rust-lang/crates.io-index"
1821: checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1822:
1823: [[package]]
1824: name = "openssl-sys"
1825: version = "0.9.87"
1826: source = "registry+https://github.com/rust-lang/crates.io-index"
1827: checksum = "8e17f59264b2809d77ae94f0e1ebabc434773f370d6ca667bd223ea10e06cc7e"
1828: dependencies = [
1829: "cc",
1830: "libc",
1831: "pkg-config",
1832: "vcpkg",
1833: ]
1834:
1835: [[package]]
1836: name = "ordered-float"
1837: version = "2.10.0"
1838: source = "registry+https://github.com/rust-lang/crates.io-index"
1839: checksum = "7940cf2ca942593318d07fcf2596cdca60a85c9e7fab408a5e21a4f9dcd40d87"
1840: dependencies = [
1841: "num-traits",
1842: ]
1843:
1844: [[package]]
1845: name = "parking"
1846: version = "2.1.0"
1847: source = "registry+https://github.com/rust-lang/crates.io-index"
1848: checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e"
1849:
1850: [[package]]
1851: name = "parking_lot"
1852: version = "0.9.0"
1853: source = "registry+https://github.com/rust-lang/crates.io-index"
1854: checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252"
1855: dependencies = [
1856: "lock_api 0.3.4",
1857: "parking_lot_core 0.6.3",
1858: "rustc_version",
1859: ]
1860:
1861: [[package]]
1862: name = "parking_lot"
1863: version = "0.11.2"
1864: source = "registry+https://github.com/rust-lang/crates.io-index"
1865: checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
1866: dependencies = [
1867: "instant",
1868: "lock_api 0.4.9",
1869: "parking_lot_core 0.8.6",
1870: ]
1871:
1872: [[package]]
1873: name = "parking_lot_core"
1874: version = "0.6.3"
1875: source = "registry+https://github.com/rust-lang/crates.io-index"
1876: checksum = "bda66b810a62be75176a80873726630147a5ca780cd33921e0b5709033e66b0a"
1877: dependencies = [
1878: "cfg-if 0.1.10",
1879: "cloudabi",
1880: "libc",
1881: "redox_syscall 0.1.57",
1882: "rustc_version",
1883: "smallvec 0.6.14",
1884: "winapi 0.3.9",
1885: ]
1886:
1887: [[package]]
1888: name = "parking_lot_core"
1889: version = "0.8.6"
1890: source = "registry+https://github.com/rust-lang/crates.io-index"
1891: checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
1892: dependencies = [
1893: "cfg-if 1.0.0",
1894: "instant",
1895: "libc",
1896: "redox_syscall 0.2.16",
1897: "smallvec 1.10.0",
1898: "winapi 0.3.9",
1899: ]
1900:
1901: [[package]]
1902: name = "paste"
1903: version = "1.0.12"
1904: source = "registry+https://github.com/rust-lang/crates.io-index"
1905: checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79"
1906:
1907: [[package]]
1908: name = "pathdiff"
1909: version = "0.2.1"
1910: source = "registry+https://github.com/rust-lang/crates.io-index"
1911: checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
1912:
1913: [[package]]
1914: name = "percent-encoding"
1915: version = "1.0.1"
1916: source = "registry+https://github.com/rust-lang/crates.io-index"
1917: checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
1918:
1919: [[package]]
1920: name = "percent-encoding"
1921: version = "2.2.0"
1922: source = "registry+https://github.com/rust-lang/crates.io-index"
1923: checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
1924:
1925: [[package]]
1926: name = "pin-project"
1927: version = "1.1.0"
1928: source = "registry+https://github.com/rust-lang/crates.io-index"
1929: checksum = "c95a7476719eab1e366eaf73d0260af3021184f18177925b07f54b30089ceead"
1930: dependencies = [
1931: "pin-project-internal",
1932: ]
1933:
1934: [[package]]
1935: name = "pin-project-internal"
1936: version = "1.1.0"
1937: source = "registry+https://github.com/rust-lang/crates.io-index"
1938: checksum = "39407670928234ebc5e6e580247dd567ad73a3578460c5990f9503df207e8f07"
1939: dependencies = [
1940: "proc-macro2",
1941: "quote",
aae1b6f580 2023-05-27 1942: "syn 2.0.17",
1943: ]
1944:
1945: [[package]]
1946: name = "pin-project-lite"
1947: version = "0.2.9"
1948: source = "registry+https://github.com/rust-lang/crates.io-index"
1949: checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
1950:
1951: [[package]]
1952: name = "pin-utils"
1953: version = "0.1.0"
1954: source = "registry+https://github.com/rust-lang/crates.io-index"
1955: checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1956:
1957: [[package]]
1958: name = "pkg-config"
1959: version = "0.3.27"
1960: source = "registry+https://github.com/rust-lang/crates.io-index"
1961: checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
1962:
1963: [[package]]
1964: name = "polling"
1965: version = "2.8.0"
1966: source = "registry+https://github.com/rust-lang/crates.io-index"
1967: checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
1968: dependencies = [
1969: "autocfg 1.1.0",
1970: "bitflags",
1971: "cfg-if 1.0.0",
1972: "concurrent-queue",
1973: "libc",
1974: "log",
1975: "pin-project-lite",
1976: "windows-sys 0.48.0",
1977: ]
1978:
1979: [[package]]
1980: name = "ppv-lite86"
1981: version = "0.2.17"
1982: source = "registry+https://github.com/rust-lang/crates.io-index"
1983: checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
1984:
1985: [[package]]
1986: name = "proc-macro2"
1987: version = "1.0.59"
1988: source = "registry+https://github.com/rust-lang/crates.io-index"
1989: checksum = "6aeca18b86b413c660b781aa319e4e2648a3e6f9eadc9b47e9038e6fe9f3451b"
1990: dependencies = [
1991: "unicode-ident",
1992: ]
1993:
1994: [[package]]
1995: name = "publicsuffix"
1996: version = "1.5.6"
1997: source = "registry+https://github.com/rust-lang/crates.io-index"
1998: checksum = "95b4ce31ff0a27d93c8de1849cf58162283752f065a90d508f1105fa6c9a213f"
1999: dependencies = [
2000: "idna 0.2.3",
2001: "url 2.3.1",
2002: ]
2003:
2004: [[package]]
2005: name = "quick-xml"
2006: version = "0.17.2"
2007: source = "registry+https://github.com/rust-lang/crates.io-index"
2008: checksum = "fe1e430bdcf30c9fdc25053b9c459bb1a4672af4617b6c783d7d91dc17c6bbb0"
2009: dependencies = [
2010: "encoding_rs",
2011: "memchr",
2012: ]
2013:
2014: [[package]]
2015: name = "quick-xml"
2016: version = "0.28.2"
2017: source = "registry+https://github.com/rust-lang/crates.io-index"
2018: checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1"
2019: dependencies = [
2020: "encoding_rs",
2021: "memchr",
2022: ]
2023:
2024: [[package]]
2025: name = "quote"
2026: version = "1.0.28"
2027: source = "registry+https://github.com/rust-lang/crates.io-index"
2028: checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488"
2029: dependencies = [
2030: "proc-macro2",
2031: ]
2032:
2033: [[package]]
2034: name = "rand"
2035: version = "0.6.5"
2036: source = "registry+https://github.com/rust-lang/crates.io-index"
2037: checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
2038: dependencies = [
2039: "autocfg 0.1.8",
2040: "libc",
2041: "rand_chacha 0.1.1",
2042: "rand_core 0.4.2",
2043: "rand_hc 0.1.0",
2044: "rand_isaac",
2045: "rand_jitter",
2046: "rand_os",
2047: "rand_pcg",
2048: "rand_xorshift",
2049: "winapi 0.3.9",
2050: ]
2051:
2052: [[package]]
2053: name = "rand"
2054: version = "0.7.3"
2055: source = "registry+https://github.com/rust-lang/crates.io-index"
2056: checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
2057: dependencies = [
2058: "getrandom 0.1.16",
2059: "libc",
2060: "rand_chacha 0.2.2",
2061: "rand_core 0.5.1",
2062: "rand_hc 0.2.0",
2063: ]
2064:
2065: [[package]]
2066: name = "rand"
2067: version = "0.8.5"
2068: source = "registry+https://github.com/rust-lang/crates.io-index"
2069: checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2070: dependencies = [
2071: "libc",
2072: "rand_chacha 0.3.1",
2073: "rand_core 0.6.4",
2074: ]
2075:
2076: [[package]]
2077: name = "rand_chacha"
2078: version = "0.1.1"
2079: source = "registry+https://github.com/rust-lang/crates.io-index"
2080: checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
2081: dependencies = [
2082: "autocfg 0.1.8",
2083: "rand_core 0.3.1",
2084: ]
2085:
2086: [[package]]
2087: name = "rand_chacha"
2088: version = "0.2.2"
2089: source = "registry+https://github.com/rust-lang/crates.io-index"
2090: checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
2091: dependencies = [
2092: "ppv-lite86",
2093: "rand_core 0.5.1",
2094: ]
2095:
2096: [[package]]
2097: name = "rand_chacha"
2098: version = "0.3.1"
2099: source = "registry+https://github.com/rust-lang/crates.io-index"
2100: checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2101: dependencies = [
2102: "ppv-lite86",
2103: "rand_core 0.6.4",
2104: ]
2105:
2106: [[package]]
2107: name = "rand_core"
2108: version = "0.3.1"
2109: source = "registry+https://github.com/rust-lang/crates.io-index"
2110: checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
2111: dependencies = [
2112: "rand_core 0.4.2",
2113: ]
2114:
2115: [[package]]
2116: name = "rand_core"
2117: version = "0.4.2"
2118: source = "registry+https://github.com/rust-lang/crates.io-index"
2119: checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
2120:
2121: [[package]]
2122: name = "rand_core"
2123: version = "0.5.1"
2124: source = "registry+https://github.com/rust-lang/crates.io-index"
2125: checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2126: dependencies = [
2127: "getrandom 0.1.16",
2128: ]
2129:
2130: [[package]]
2131: name = "rand_core"
2132: version = "0.6.4"
2133: source = "registry+https://github.com/rust-lang/crates.io-index"
2134: checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2135: dependencies = [
2136: "getrandom 0.2.9",
2137: ]
2138:
2139: [[package]]
2140: name = "rand_hc"
2141: version = "0.1.0"
2142: source = "registry+https://github.com/rust-lang/crates.io-index"
2143: checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
2144: dependencies = [
2145: "rand_core 0.3.1",
2146: ]
2147:
2148: [[package]]
2149: name = "rand_hc"
2150: version = "0.2.0"
2151: source = "registry+https://github.com/rust-lang/crates.io-index"
2152: checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2153: dependencies = [
2154: "rand_core 0.5.1",
2155: ]
2156:
2157: [[package]]
2158: name = "rand_isaac"
2159: version = "0.1.1"
2160: source = "registry+https://github.com/rust-lang/crates.io-index"
2161: checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
2162: dependencies = [
2163: "rand_core 0.3.1",
2164: ]
2165:
2166: [[package]]
2167: name = "rand_jitter"
2168: version = "0.1.4"
2169: source = "registry+https://github.com/rust-lang/crates.io-index"
2170: checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
2171: dependencies = [
2172: "libc",
2173: "rand_core 0.4.2",
2174: "winapi 0.3.9",
2175: ]
2176:
2177: [[package]]
2178: name = "rand_os"
2179: version = "0.1.3"
2180: source = "registry+https://github.com/rust-lang/crates.io-index"
2181: checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
2182: dependencies = [
2183: "cloudabi",
2184: "fuchsia-cprng",
2185: "libc",
2186: "rand_core 0.4.2",
2187: "rdrand",
2188: "winapi 0.3.9",
2189: ]
2190:
2191: [[package]]
2192: name = "rand_pcg"
2193: version = "0.1.2"
2194: source = "registry+https://github.com/rust-lang/crates.io-index"
2195: checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
2196: dependencies = [
2197: "autocfg 0.1.8",
2198: "rand_core 0.4.2",
2199: ]
2200:
2201: [[package]]
2202: name = "rand_xorshift"
2203: version = "0.1.1"
2204: source = "registry+https://github.com/rust-lang/crates.io-index"
2205: checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
2206: dependencies = [
2207: "rand_core 0.3.1",
2208: ]
2209:
2210: [[package]]
2211: name = "rdrand"
2212: version = "0.4.0"
2213: source = "registry+https://github.com/rust-lang/crates.io-index"
2214: checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
2215: dependencies = [
2216: "rand_core 0.3.1",
2217: ]
2218:
2219: [[package]]
2220: name = "redox_syscall"
2221: version = "0.1.57"
2222: source = "registry+https://github.com/rust-lang/crates.io-index"
2223: checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
2224:
2225: [[package]]
2226: name = "redox_syscall"
2227: version = "0.2.16"
2228: source = "registry+https://github.com/rust-lang/crates.io-index"
2229: checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2230: dependencies = [
2231: "bitflags",
2232: ]
2233:
2234: [[package]]
2235: name = "redox_syscall"
2236: version = "0.3.5"
2237: source = "registry+https://github.com/rust-lang/crates.io-index"
2238: checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
2239: dependencies = [
2240: "bitflags",
2241: ]
2242:
2243: [[package]]
2244: name = "redox_users"
2245: version = "0.4.3"
2246: source = "registry+https://github.com/rust-lang/crates.io-index"
2247: checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
2248: dependencies = [
2249: "getrandom 0.2.9",
2250: "redox_syscall 0.2.16",
2251: "thiserror",
2252: ]
2253:
2254: [[package]]
2255: name = "regex"
2256: version = "1.8.3"
2257: source = "registry+https://github.com/rust-lang/crates.io-index"
2258: checksum = "81ca098a9821bd52d6b24fd8b10bd081f47d39c22778cafaa75a2857a62c6390"
2259: dependencies = [
2260: "aho-corasick",
2261: "memchr",
2262: "regex-syntax",
2263: ]
2264:
2265: [[package]]
2266: name = "regex-syntax"
2267: version = "0.7.2"
2268: source = "registry+https://github.com/rust-lang/crates.io-index"
2269: checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
2270:
2271: [[package]]
2272: name = "reqwest"
2273: version = "0.9.24"
2274: source = "registry+https://github.com/rust-lang/crates.io-index"
2275: checksum = "f88643aea3c1343c804950d7bf983bd2067f5ab59db6d613a08e05572f2714ab"
2276: dependencies = [
2277: "base64 0.10.1",
2278: "bytes 0.4.12",
2279: "cookie",
2280: "cookie_store",
2281: "encoding_rs",
2282: "flate2",
2283: "futures 0.1.31",
2284: "http 0.1.21",
2285: "hyper 0.12.36",
2286: "hyper-tls 0.3.2",
2287: "log",
2288: "mime",
2289: "mime_guess",
2290: "native-tls",
2291: "serde",
2292: "serde_json",
2293: "serde_urlencoded 0.5.5",
2294: "time",
2295: "tokio 0.1.22",
2296: "tokio-executor",
2297: "tokio-io",
2298: "tokio-threadpool",
2299: "tokio-timer",
2300: "url 1.7.2",
2301: "uuid",
2302: "winreg 0.6.2",
2303: ]
2304:
2305: [[package]]
2306: name = "reqwest"
2307: version = "0.11.18"
2308: source = "registry+https://github.com/rust-lang/crates.io-index"
2309: checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
2310: dependencies = [
2311: "async-compression",
2312: "base64 0.21.2",
2313: "bytes 1.4.0",
2314: "encoding_rs",
2315: "futures-core",
2316: "futures-util",
2317: "h2 0.3.19",
2318: "http 0.2.9",
2319: "http-body 0.4.5",
2320: "hyper 0.14.26",
2321: "hyper-tls 0.5.0",
2322: "ipnet",
2323: "js-sys",
2324: "log",
2325: "mime",
2326: "native-tls",
2327: "once_cell",
2328: "percent-encoding 2.2.0",
2329: "pin-project-lite",
2330: "serde",
2331: "serde_json",
2332: "serde_urlencoded 0.7.1",
aae1b6f580 2023-05-27 2333: "tokio 1.28.1",
2334: "tokio-native-tls",
2335: "tokio-util",
2336: "tower-service",
2337: "url 2.3.1",
2338: "wasm-bindgen",
2339: "wasm-bindgen-futures",
2340: "web-sys",
2341: "winreg 0.10.1",
2342: ]
2343:
2344: [[package]]
2345: name = "ring"
2346: version = "0.16.20"
2347: source = "registry+https://github.com/rust-lang/crates.io-index"
2348: checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
2349: dependencies = [
2350: "cc",
2351: "libc",
2352: "once_cell",
2353: "spin",
2354: "untrusted",
2355: "web-sys",
2356: "winapi 0.3.9",
2357: ]
2358:
2359: [[package]]
2360: name = "rss"
2361: version = "1.9.0"
2362: source = "registry+https://github.com/rust-lang/crates.io-index"
2363: checksum = "99979205510c60f80a119dedbabd0b8426517384edf205322f8bcd51796bcef9"
2364: dependencies = [
2365: "derive_builder 0.9.0",
2366: "quick-xml 0.17.2",
2367: "reqwest 0.9.24",
2368: ]
2369:
2370: [[package]]
2371: name = "rsstg"
aae1b6f580 2023-05-27 2372: version = "0.2.17"
2373: dependencies = [
2374: "anyhow",
2375: "async-std",
2376: "atom_syndication",
2377: "chrono",
2378: "config",
2379: "futures 0.3.28",
2380: "futures-util",
2381: "lazy_static",
2382: "regex",
2383: "reqwest 0.11.18",
2384: "rss",
2385: "sedregex",
2386: "sqlx",
2387: "telegram-bot",
2388: ]
2389:
2390: [[package]]
2391: name = "rustc-demangle"
2392: version = "0.1.23"
2393: source = "registry+https://github.com/rust-lang/crates.io-index"
2394: checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2395:
2396: [[package]]
2397: name = "rustc_version"
2398: version = "0.2.3"
2399: source = "registry+https://github.com/rust-lang/crates.io-index"
2400: checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
2401: dependencies = [
2402: "semver",
2403: ]
2404:
2405: [[package]]
2406: name = "rustix"
2407: version = "0.37.19"
2408: source = "registry+https://github.com/rust-lang/crates.io-index"
2409: checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d"
2410: dependencies = [
2411: "bitflags",
2412: "errno",
2413: "io-lifetimes",
2414: "libc",
2415: "linux-raw-sys",
2416: "windows-sys 0.48.0",
2417: ]
2418:
2419: [[package]]
2420: name = "rustls"
2421: version = "0.20.8"
2422: source = "registry+https://github.com/rust-lang/crates.io-index"
2423: checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
2424: dependencies = [
2425: "log",
2426: "ring",
2427: "sct",
2428: "webpki",
2429: ]
2430:
2431: [[package]]
2432: name = "rustls-pemfile"
2433: version = "1.0.2"
2434: source = "registry+https://github.com/rust-lang/crates.io-index"
2435: checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
2436: dependencies = [
2437: "base64 0.21.2",
2438: ]
2439:
2440: [[package]]
2441: name = "ryu"
2442: version = "1.0.13"
2443: source = "registry+https://github.com/rust-lang/crates.io-index"
2444: checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
2445:
2446: [[package]]
2447: name = "schannel"
2448: version = "0.1.21"
2449: source = "registry+https://github.com/rust-lang/crates.io-index"
2450: checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
2451: dependencies = [
2452: "windows-sys 0.42.0",
2453: ]
2454:
2455: [[package]]
2456: name = "scopeguard"
2457: version = "1.1.0"
2458: source = "registry+https://github.com/rust-lang/crates.io-index"
2459: checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2460:
2461: [[package]]
2462: name = "sct"
2463: version = "0.7.0"
2464: source = "registry+https://github.com/rust-lang/crates.io-index"
2465: checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
2466: dependencies = [
2467: "ring",
2468: "untrusted",
2469: ]
2470:
2471: [[package]]
2472: name = "security-framework"
2473: version = "2.9.1"
2474: source = "registry+https://github.com/rust-lang/crates.io-index"
2475: checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8"
2476: dependencies = [
2477: "bitflags",
2478: "core-foundation",
2479: "core-foundation-sys",
2480: "libc",
2481: "security-framework-sys",
2482: ]
2483:
2484: [[package]]
2485: name = "security-framework-sys"
2486: version = "2.9.0"
2487: source = "registry+https://github.com/rust-lang/crates.io-index"
2488: checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7"
2489: dependencies = [
2490: "core-foundation-sys",
2491: "libc",
2492: ]
2493:
2494: [[package]]
2495: name = "sedregex"
2496: version = "0.2.5"
2497: source = "registry+https://github.com/rust-lang/crates.io-index"
2498: checksum = "19411e23596093f03bbd11dc45603b6329bb4bfec77b9fd13e2b9fc9b02efe3e"
2499: dependencies = [
2500: "regex",
2501: ]
2502:
2503: [[package]]
2504: name = "semver"
2505: version = "0.9.0"
2506: source = "registry+https://github.com/rust-lang/crates.io-index"
2507: checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
2508: dependencies = [
2509: "semver-parser",
2510: ]
2511:
2512: [[package]]
2513: name = "semver-parser"
2514: version = "0.7.0"
2515: source = "registry+https://github.com/rust-lang/crates.io-index"
2516: checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2517:
2518: [[package]]
2519: name = "serde"
2520: version = "1.0.163"
2521: source = "registry+https://github.com/rust-lang/crates.io-index"
2522: checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2"
2523: dependencies = [
2524: "serde_derive",
2525: ]
2526:
2527: [[package]]
2528: name = "serde-value"
2529: version = "0.7.0"
2530: source = "registry+https://github.com/rust-lang/crates.io-index"
2531: checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c"
2532: dependencies = [
2533: "ordered-float",
2534: "serde",
2535: ]
2536:
2537: [[package]]
2538: name = "serde_derive"
2539: version = "1.0.163"
2540: source = "registry+https://github.com/rust-lang/crates.io-index"
2541: checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e"
2542: dependencies = [
2543: "proc-macro2",
2544: "quote",
aae1b6f580 2023-05-27 2545: "syn 2.0.17",
2546: ]
2547:
2548: [[package]]
2549: name = "serde_json"
2550: version = "1.0.96"
2551: source = "registry+https://github.com/rust-lang/crates.io-index"
2552: checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
2553: dependencies = [
2554: "itoa 1.0.6",
2555: "ryu",
2556: "serde",
2557: ]
2558:
2559: [[package]]
2560: name = "serde_urlencoded"
2561: version = "0.5.5"
2562: source = "registry+https://github.com/rust-lang/crates.io-index"
2563: checksum = "642dd69105886af2efd227f75a520ec9b44a820d65bc133a9131f7d229fd165a"
2564: dependencies = [
2565: "dtoa",
2566: "itoa 0.4.8",
2567: "serde",
2568: "url 1.7.2",
2569: ]
2570:
2571: [[package]]
2572: name = "serde_urlencoded"
2573: version = "0.7.1"
2574: source = "registry+https://github.com/rust-lang/crates.io-index"
2575: checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2576: dependencies = [
2577: "form_urlencoded",
2578: "itoa 1.0.6",
2579: "ryu",
2580: "serde",
2581: ]
2582:
2583: [[package]]
2584: name = "sha1"
2585: version = "0.10.5"
2586: source = "registry+https://github.com/rust-lang/crates.io-index"
2587: checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
2588: dependencies = [
2589: "cfg-if 1.0.0",
2590: "cpufeatures",
2591: "digest",
2592: ]
2593:
2594: [[package]]
2595: name = "sha2"
2596: version = "0.10.6"
2597: source = "registry+https://github.com/rust-lang/crates.io-index"
2598: checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
2599: dependencies = [
2600: "cfg-if 1.0.0",
2601: "cpufeatures",
2602: "digest",
2603: ]
2604:
2605: [[package]]
2606: name = "signal-hook"
2607: version = "0.3.15"
2608: source = "registry+https://github.com/rust-lang/crates.io-index"
2609: checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9"
2610: dependencies = [
2611: "libc",
2612: "signal-hook-registry",
2613: ]
2614:
2615: [[package]]
2616: name = "signal-hook-registry"
2617: version = "1.4.1"
2618: source = "registry+https://github.com/rust-lang/crates.io-index"
2619: checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2620: dependencies = [
2621: "libc",
2622: ]
2623:
2624: [[package]]
2625: name = "slab"
2626: version = "0.4.8"
2627: source = "registry+https://github.com/rust-lang/crates.io-index"
2628: checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
2629: dependencies = [
2630: "autocfg 1.1.0",
2631: ]
2632:
2633: [[package]]
2634: name = "smallvec"
2635: version = "0.6.14"
2636: source = "registry+https://github.com/rust-lang/crates.io-index"
2637: checksum = "b97fcaeba89edba30f044a10c6a3cc39df9c3f17d7cd829dd1446cab35f890e0"
2638: dependencies = [
2639: "maybe-uninit",
2640: ]
2641:
2642: [[package]]
2643: name = "smallvec"
2644: version = "1.10.0"
2645: source = "registry+https://github.com/rust-lang/crates.io-index"
2646: checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2647:
2648: [[package]]
2649: name = "socket2"
2650: version = "0.4.9"
2651: source = "registry+https://github.com/rust-lang/crates.io-index"
2652: checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
2653: dependencies = [
2654: "libc",
2655: "winapi 0.3.9",
2656: ]
2657:
2658: [[package]]
2659: name = "spin"
2660: version = "0.5.2"
2661: source = "registry+https://github.com/rust-lang/crates.io-index"
2662: checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2663:
2664: [[package]]
2665: name = "sqlformat"
2666: version = "0.2.1"
2667: source = "registry+https://github.com/rust-lang/crates.io-index"
2668: checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e"
2669: dependencies = [
2670: "itertools",
2671: "nom",
2672: "unicode_categories",
2673: ]
2674:
2675: [[package]]
2676: name = "sqlx"
2677: version = "0.6.3"
2678: source = "registry+https://github.com/rust-lang/crates.io-index"
2679: checksum = "f8de3b03a925878ed54a954f621e64bf55a3c1bd29652d0d1a17830405350188"
2680: dependencies = [
2681: "sqlx-core",
2682: "sqlx-macros",
2683: ]
2684:
2685: [[package]]
2686: name = "sqlx-core"
2687: version = "0.6.3"
2688: source = "registry+https://github.com/rust-lang/crates.io-index"
2689: checksum = "fa8241483a83a3f33aa5fff7e7d9def398ff9990b2752b6c6112b83c6d246029"
2690: dependencies = [
2691: "ahash 0.7.6",
2692: "atoi",
2693: "base64 0.13.1",
2694: "bitflags",
2695: "byteorder",
2696: "bytes 1.4.0",
2697: "chrono",
2698: "crc",
2699: "crossbeam-queue 0.3.8",
2700: "dirs",
2701: "dotenvy",
2702: "either",
2703: "event-listener",
2704: "futures-channel",
2705: "futures-core",
2706: "futures-intrusive",
2707: "futures-util",
2708: "hashlink",
2709: "hex",
2710: "hkdf",
2711: "hmac",
2712: "indexmap",
2713: "itoa 1.0.6",
2714: "libc",
2715: "log",
2716: "md-5",
2717: "memchr",
2718: "once_cell",
2719: "paste",
2720: "percent-encoding 2.2.0",
2721: "rand 0.8.5",
2722: "rustls",
2723: "rustls-pemfile",
2724: "serde",
2725: "serde_json",
2726: "sha1",
2727: "sha2",
2728: "smallvec 1.10.0",
2729: "sqlformat",
2730: "sqlx-rt",
2731: "stringprep",
2732: "thiserror",
2733: "url 2.3.1",
2734: "webpki-roots",
2735: "whoami",
2736: ]
2737:
2738: [[package]]
2739: name = "sqlx-macros"
2740: version = "0.6.3"
2741: source = "registry+https://github.com/rust-lang/crates.io-index"
2742: checksum = "9966e64ae989e7e575b19d7265cb79d7fc3cbbdf179835cb0d716f294c2049c9"
2743: dependencies = [
2744: "dotenvy",
2745: "either",
2746: "heck",
2747: "once_cell",
2748: "proc-macro2",
2749: "quote",
2750: "sha2",
2751: "sqlx-core",
2752: "sqlx-rt",
2753: "syn 1.0.109",
2754: "url 2.3.1",
2755: ]
2756:
2757: [[package]]
2758: name = "sqlx-rt"
2759: version = "0.6.3"
2760: source = "registry+https://github.com/rust-lang/crates.io-index"
2761: checksum = "804d3f245f894e61b1e6263c84b23ca675d96753b5abfd5cc8597d86806e8024"
2762: dependencies = [
2763: "async-std",
2764: "futures-rustls",
2765: ]
2766:
2767: [[package]]
2768: name = "string"
2769: version = "0.2.1"
2770: source = "registry+https://github.com/rust-lang/crates.io-index"
2771: checksum = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d"
2772: dependencies = [
2773: "bytes 0.4.12",
2774: ]
2775:
2776: [[package]]
2777: name = "stringprep"
2778: version = "0.1.2"
2779: source = "registry+https://github.com/rust-lang/crates.io-index"
2780: checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
2781: dependencies = [
2782: "unicode-bidi",
2783: "unicode-normalization",
2784: ]
2785:
2786: [[package]]
2787: name = "strsim"
2788: version = "0.9.3"
2789: source = "registry+https://github.com/rust-lang/crates.io-index"
2790: checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
2791:
2792: [[package]]
2793: name = "strsim"
2794: version = "0.10.0"
2795: source = "registry+https://github.com/rust-lang/crates.io-index"
2796: checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2797:
2798: [[package]]
2799: name = "subtle"
2800: version = "2.5.0"
2801: source = "registry+https://github.com/rust-lang/crates.io-index"
2802: checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
2803:
2804: [[package]]
2805: name = "syn"
2806: version = "1.0.109"
2807: source = "registry+https://github.com/rust-lang/crates.io-index"
2808: checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2809: dependencies = [
2810: "proc-macro2",
2811: "quote",
2812: "unicode-ident",
2813: ]
2814:
2815: [[package]]
2816: name = "syn"
aae1b6f580 2023-05-27 2817: version = "2.0.17"
2818: source = "registry+https://github.com/rust-lang/crates.io-index"
aae1b6f580 2023-05-27 2819: checksum = "45b6ddbb36c5b969c182aec3c4a0bce7df3fbad4b77114706a49aacc80567388"
2820: dependencies = [
2821: "proc-macro2",
2822: "quote",
2823: "unicode-ident",
2824: ]
2825:
2826: [[package]]
2827: name = "synstructure"
2828: version = "0.12.6"
2829: source = "registry+https://github.com/rust-lang/crates.io-index"
2830: checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
2831: dependencies = [
2832: "proc-macro2",
2833: "quote",
2834: "syn 1.0.109",
2835: "unicode-xid",
2836: ]
2837:
2838: [[package]]
2839: name = "telegram-bot"
2840: version = "0.9.0"
2841: source = "git+https://github.com/telegram-rs/telegram-bot#65ad5cfd578e9a1260ce6daac714eb2153c0bec7"
2842: dependencies = [
2843: "bytes 1.4.0",
2844: "futures 0.3.28",
2845: "hyper 0.14.26",
2846: "hyper-tls 0.5.0",
2847: "multipart",
2848: "telegram-bot-raw",
aae1b6f580 2023-05-27 2849: "tokio 1.28.1",
2850: "tracing",
2851: "tracing-futures",
2852: ]
2853:
2854: [[package]]
2855: name = "telegram-bot-raw"
2856: version = "0.9.0"
2857: source = "git+https://github.com/telegram-rs/telegram-bot#65ad5cfd578e9a1260ce6daac714eb2153c0bec7"
2858: dependencies = [
2859: "bytes 1.4.0",
2860: "serde",
2861: "serde-value",
2862: "serde_derive",
2863: "serde_json",
2864: ]
2865:
2866: [[package]]
2867: name = "tempfile"
2868: version = "3.5.0"
2869: source = "registry+https://github.com/rust-lang/crates.io-index"
2870: checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
2871: dependencies = [
2872: "cfg-if 1.0.0",
2873: "fastrand",
2874: "redox_syscall 0.3.5",
2875: "rustix",
2876: "windows-sys 0.45.0",
2877: ]
2878:
2879: [[package]]
2880: name = "thiserror"
2881: version = "1.0.40"
2882: source = "registry+https://github.com/rust-lang/crates.io-index"
2883: checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
2884: dependencies = [
2885: "thiserror-impl",
2886: ]
2887:
2888: [[package]]
2889: name = "thiserror-impl"
2890: version = "1.0.40"
2891: source = "registry+https://github.com/rust-lang/crates.io-index"
2892: checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
2893: dependencies = [
2894: "proc-macro2",
2895: "quote",
aae1b6f580 2023-05-27 2896: "syn 2.0.17",
2897: ]
2898:
2899: [[package]]
2900: name = "time"
2901: version = "0.1.45"
2902: source = "registry+https://github.com/rust-lang/crates.io-index"
2903: checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
2904: dependencies = [
2905: "libc",
2906: "wasi 0.10.0+wasi-snapshot-preview1",
2907: "winapi 0.3.9",
2908: ]
2909:
2910: [[package]]
2911: name = "tinyvec"
2912: version = "1.6.0"
2913: source = "registry+https://github.com/rust-lang/crates.io-index"
2914: checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2915: dependencies = [
2916: "tinyvec_macros",
2917: ]
2918:
2919: [[package]]
2920: name = "tinyvec_macros"
2921: version = "0.1.1"
2922: source = "registry+https://github.com/rust-lang/crates.io-index"
2923: checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2924:
2925: [[package]]
2926: name = "tokio"
2927: version = "0.1.22"
2928: source = "registry+https://github.com/rust-lang/crates.io-index"
2929: checksum = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6"
2930: dependencies = [
2931: "bytes 0.4.12",
2932: "futures 0.1.31",
2933: "mio 0.6.23",
2934: "num_cpus",
2935: "tokio-current-thread",
2936: "tokio-executor",
2937: "tokio-io",
2938: "tokio-reactor",
2939: "tokio-tcp",
2940: "tokio-threadpool",
2941: "tokio-timer",
2942: ]
2943:
2944: [[package]]
2945: name = "tokio"
aae1b6f580 2023-05-27 2946: version = "1.28.1"
2947: source = "registry+https://github.com/rust-lang/crates.io-index"
aae1b6f580 2023-05-27 2948: checksum = "0aa32867d44e6f2ce3385e89dceb990188b8bb0fb25b0cf576647a6f98ac5105"
2949: dependencies = [
2950: "autocfg 1.1.0",
2951: "bytes 1.4.0",
2952: "libc",
2953: "mio 0.8.6",
2954: "num_cpus",
2955: "pin-project-lite",
2956: "socket2",
2957: "windows-sys 0.48.0",
2958: ]
2959:
2960: [[package]]
2961: name = "tokio-buf"
2962: version = "0.1.1"
2963: source = "registry+https://github.com/rust-lang/crates.io-index"
2964: checksum = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46"
2965: dependencies = [
2966: "bytes 0.4.12",
2967: "either",
2968: "futures 0.1.31",
2969: ]
2970:
2971: [[package]]
2972: name = "tokio-current-thread"
2973: version = "0.1.7"
2974: source = "registry+https://github.com/rust-lang/crates.io-index"
2975: checksum = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e"
2976: dependencies = [
2977: "futures 0.1.31",
2978: "tokio-executor",
2979: ]
2980:
2981: [[package]]
2982: name = "tokio-executor"
2983: version = "0.1.10"
2984: source = "registry+https://github.com/rust-lang/crates.io-index"
2985: checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671"
2986: dependencies = [
2987: "crossbeam-utils 0.7.2",
2988: "futures 0.1.31",
2989: ]
2990:
2991: [[package]]
2992: name = "tokio-io"
2993: version = "0.1.13"
2994: source = "registry+https://github.com/rust-lang/crates.io-index"
2995: checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674"
2996: dependencies = [
2997: "bytes 0.4.12",
2998: "futures 0.1.31",
2999: "log",
3000: ]
3001:
3002: [[package]]
3003: name = "tokio-native-tls"
3004: version = "0.3.1"
3005: source = "registry+https://github.com/rust-lang/crates.io-index"
3006: checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
3007: dependencies = [
3008: "native-tls",
aae1b6f580 2023-05-27 3009: "tokio 1.28.1",
3010: ]
3011:
3012: [[package]]
3013: name = "tokio-reactor"
3014: version = "0.1.12"
3015: source = "registry+https://github.com/rust-lang/crates.io-index"
3016: checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351"
3017: dependencies = [
3018: "crossbeam-utils 0.7.2",
3019: "futures 0.1.31",
3020: "lazy_static",
3021: "log",
3022: "mio 0.6.23",
3023: "num_cpus",
3024: "parking_lot 0.9.0",
3025: "slab",
3026: "tokio-executor",
3027: "tokio-io",
3028: "tokio-sync",
3029: ]
3030:
3031: [[package]]
3032: name = "tokio-sync"
3033: version = "0.1.8"
3034: source = "registry+https://github.com/rust-lang/crates.io-index"
3035: checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee"
3036: dependencies = [
3037: "fnv",
3038: "futures 0.1.31",
3039: ]
3040:
3041: [[package]]
3042: name = "tokio-tcp"
3043: version = "0.1.4"
3044: source = "registry+https://github.com/rust-lang/crates.io-index"
3045: checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72"
3046: dependencies = [
3047: "bytes 0.4.12",
3048: "futures 0.1.31",
3049: "iovec",
3050: "mio 0.6.23",
3051: "tokio-io",
3052: "tokio-reactor",
3053: ]
3054:
3055: [[package]]
3056: name = "tokio-threadpool"
3057: version = "0.1.18"
3058: source = "registry+https://github.com/rust-lang/crates.io-index"
3059: checksum = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89"
3060: dependencies = [
3061: "crossbeam-deque",
3062: "crossbeam-queue 0.2.3",
3063: "crossbeam-utils 0.7.2",
3064: "futures 0.1.31",
3065: "lazy_static",
3066: "log",
3067: "num_cpus",
3068: "slab",
3069: "tokio-executor",
3070: ]
3071:
3072: [[package]]
3073: name = "tokio-timer"
3074: version = "0.2.13"
3075: source = "registry+https://github.com/rust-lang/crates.io-index"
3076: checksum = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296"
3077: dependencies = [
3078: "crossbeam-utils 0.7.2",
3079: "futures 0.1.31",
3080: "slab",
3081: "tokio-executor",
3082: ]
3083:
3084: [[package]]
3085: name = "tokio-util"
3086: version = "0.7.8"
3087: source = "registry+https://github.com/rust-lang/crates.io-index"
3088: checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
3089: dependencies = [
3090: "bytes 1.4.0",
3091: "futures-core",
3092: "futures-sink",
3093: "pin-project-lite",
aae1b6f580 2023-05-27 3094: "tokio 1.28.1",
3095: "tracing",
3096: ]
3097:
3098: [[package]]
3099: name = "toml"
3100: version = "0.5.11"
3101: source = "registry+https://github.com/rust-lang/crates.io-index"
3102: checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
3103: dependencies = [
3104: "serde",
3105: ]
3106:
3107: [[package]]
3108: name = "tower-service"
3109: version = "0.3.2"
3110: source = "registry+https://github.com/rust-lang/crates.io-index"
3111: checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
3112:
3113: [[package]]
3114: name = "tracing"
3115: version = "0.1.37"
3116: source = "registry+https://github.com/rust-lang/crates.io-index"
3117: checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
3118: dependencies = [
3119: "cfg-if 1.0.0",
3120: "pin-project-lite",
3121: "tracing-attributes",
3122: "tracing-core",
3123: ]
3124:
3125: [[package]]
3126: name = "tracing-attributes"
3127: version = "0.1.24"
3128: source = "registry+https://github.com/rust-lang/crates.io-index"
3129: checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74"
3130: dependencies = [
3131: "proc-macro2",
3132: "quote",
aae1b6f580 2023-05-27 3133: "syn 2.0.17",
3134: ]
3135:
3136: [[package]]
3137: name = "tracing-core"
3138: version = "0.1.31"
3139: source = "registry+https://github.com/rust-lang/crates.io-index"
3140: checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
3141: dependencies = [
3142: "once_cell",
3143: ]
3144:
3145: [[package]]
3146: name = "tracing-futures"
3147: version = "0.2.5"
3148: source = "registry+https://github.com/rust-lang/crates.io-index"
3149: checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
3150: dependencies = [
3151: "pin-project",
3152: "tracing",
3153: ]
3154:
3155: [[package]]
3156: name = "try-lock"
3157: version = "0.2.4"
3158: source = "registry+https://github.com/rust-lang/crates.io-index"
3159: checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
3160:
3161: [[package]]
3162: name = "try_from"
3163: version = "0.3.2"
3164: source = "registry+https://github.com/rust-lang/crates.io-index"
3165: checksum = "283d3b89e1368717881a9d51dad843cc435380d8109c9e47d38780a324698d8b"
3166: dependencies = [
3167: "cfg-if 0.1.10",
3168: ]
3169:
3170: [[package]]
3171: name = "typenum"
3172: version = "1.16.0"
3173: source = "registry+https://github.com/rust-lang/crates.io-index"
3174: checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
3175:
3176: [[package]]
3177: name = "unicase"
3178: version = "2.6.0"
3179: source = "registry+https://github.com/rust-lang/crates.io-index"
3180: checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
3181: dependencies = [
3182: "version_check",
3183: ]
3184:
3185: [[package]]
3186: name = "unicode-bidi"
3187: version = "0.3.13"
3188: source = "registry+https://github.com/rust-lang/crates.io-index"
3189: checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
3190:
3191: [[package]]
3192: name = "unicode-ident"
3193: version = "1.0.9"
3194: source = "registry+https://github.com/rust-lang/crates.io-index"
3195: checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0"
3196:
3197: [[package]]
3198: name = "unicode-normalization"
3199: version = "0.1.22"
3200: source = "registry+https://github.com/rust-lang/crates.io-index"
3201: checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
3202: dependencies = [
3203: "tinyvec",
3204: ]
3205:
3206: [[package]]
3207: name = "unicode-segmentation"
3208: version = "1.10.1"
3209: source = "registry+https://github.com/rust-lang/crates.io-index"
3210: checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
3211:
3212: [[package]]
3213: name = "unicode-xid"
3214: version = "0.2.4"
3215: source = "registry+https://github.com/rust-lang/crates.io-index"
3216: checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
3217:
3218: [[package]]
3219: name = "unicode_categories"
3220: version = "0.1.1"
3221: source = "registry+https://github.com/rust-lang/crates.io-index"
3222: checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
3223:
3224: [[package]]
3225: name = "untrusted"
3226: version = "0.7.1"
3227: source = "registry+https://github.com/rust-lang/crates.io-index"
3228: checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
3229:
3230: [[package]]
3231: name = "url"
3232: version = "1.7.2"
3233: source = "registry+https://github.com/rust-lang/crates.io-index"
3234: checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
3235: dependencies = [
3236: "idna 0.1.5",
3237: "matches",
3238: "percent-encoding 1.0.1",
3239: ]
3240:
3241: [[package]]
3242: name = "url"
3243: version = "2.3.1"
3244: source = "registry+https://github.com/rust-lang/crates.io-index"
3245: checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
3246: dependencies = [
3247: "form_urlencoded",
3248: "idna 0.3.0",
3249: "percent-encoding 2.2.0",
3250: ]
3251:
3252: [[package]]
3253: name = "uuid"
3254: version = "0.7.4"
3255: source = "registry+https://github.com/rust-lang/crates.io-index"
3256: checksum = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a"
3257: dependencies = [
3258: "rand 0.6.5",
3259: ]
3260:
3261: [[package]]
3262: name = "value-bag"
aae1b6f580 2023-05-27 3263: version = "1.0.0-alpha.9"
3264: source = "registry+https://github.com/rust-lang/crates.io-index"
aae1b6f580 2023-05-27 3265: checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55"
aae1b6f580 2023-05-27 3266: dependencies = [
aae1b6f580 2023-05-27 3267: "ctor",
aae1b6f580 2023-05-27 3268: "version_check",
aae1b6f580 2023-05-27 3269: ]
3270:
3271: [[package]]
3272: name = "vcpkg"
3273: version = "0.2.15"
3274: source = "registry+https://github.com/rust-lang/crates.io-index"
3275: checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3276:
3277: [[package]]
3278: name = "version_check"
3279: version = "0.9.4"
3280: source = "registry+https://github.com/rust-lang/crates.io-index"
3281: checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
3282:
3283: [[package]]
3284: name = "waker-fn"
3285: version = "1.1.0"
3286: source = "registry+https://github.com/rust-lang/crates.io-index"
3287: checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
3288:
3289: [[package]]
3290: name = "want"
3291: version = "0.2.0"
3292: source = "registry+https://github.com/rust-lang/crates.io-index"
3293: checksum = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230"
3294: dependencies = [
3295: "futures 0.1.31",
3296: "log",
3297: "try-lock",
3298: ]
3299:
3300: [[package]]
3301: name = "want"
3302: version = "0.3.0"
3303: source = "registry+https://github.com/rust-lang/crates.io-index"
3304: checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
3305: dependencies = [
3306: "log",
3307: "try-lock",
3308: ]
3309:
3310: [[package]]
3311: name = "wasi"
3312: version = "0.9.0+wasi-snapshot-preview1"
3313: source = "registry+https://github.com/rust-lang/crates.io-index"
3314: checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
3315:
3316: [[package]]
3317: name = "wasi"
3318: version = "0.10.0+wasi-snapshot-preview1"
3319: source = "registry+https://github.com/rust-lang/crates.io-index"
3320: checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
3321:
3322: [[package]]
3323: name = "wasi"
3324: version = "0.11.0+wasi-snapshot-preview1"
3325: source = "registry+https://github.com/rust-lang/crates.io-index"
3326: checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3327:
3328: [[package]]
3329: name = "wasm-bindgen"
3330: version = "0.2.86"
3331: source = "registry+https://github.com/rust-lang/crates.io-index"
3332: checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73"
3333: dependencies = [
3334: "cfg-if 1.0.0",
3335: "wasm-bindgen-macro",
3336: ]
3337:
3338: [[package]]
3339: name = "wasm-bindgen-backend"
3340: version = "0.2.86"
3341: source = "registry+https://github.com/rust-lang/crates.io-index"
3342: checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb"
3343: dependencies = [
3344: "bumpalo",
3345: "log",
3346: "once_cell",
3347: "proc-macro2",
3348: "quote",
aae1b6f580 2023-05-27 3349: "syn 2.0.17",
3350: "wasm-bindgen-shared",
3351: ]
3352:
3353: [[package]]
3354: name = "wasm-bindgen-futures"
3355: version = "0.4.36"
3356: source = "registry+https://github.com/rust-lang/crates.io-index"
3357: checksum = "2d1985d03709c53167ce907ff394f5316aa22cb4e12761295c5dc57dacb6297e"
3358: dependencies = [
3359: "cfg-if 1.0.0",
3360: "js-sys",
3361: "wasm-bindgen",
3362: "web-sys",
3363: ]
3364:
3365: [[package]]
3366: name = "wasm-bindgen-macro"
3367: version = "0.2.86"
3368: source = "registry+https://github.com/rust-lang/crates.io-index"
3369: checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258"
3370: dependencies = [
3371: "quote",
3372: "wasm-bindgen-macro-support",
3373: ]
3374:
3375: [[package]]
3376: name = "wasm-bindgen-macro-support"
3377: version = "0.2.86"
3378: source = "registry+https://github.com/rust-lang/crates.io-index"
3379: checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8"
3380: dependencies = [
3381: "proc-macro2",
3382: "quote",
aae1b6f580 2023-05-27 3383: "syn 2.0.17",
3384: "wasm-bindgen-backend",
3385: "wasm-bindgen-shared",
3386: ]
3387:
3388: [[package]]
3389: name = "wasm-bindgen-shared"
3390: version = "0.2.86"
3391: source = "registry+https://github.com/rust-lang/crates.io-index"
3392: checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93"
3393:
3394: [[package]]
3395: name = "web-sys"
3396: version = "0.3.63"
3397: source = "registry+https://github.com/rust-lang/crates.io-index"
3398: checksum = "3bdd9ef4e984da1187bf8110c5cf5b845fbc87a23602cdf912386a76fcd3a7c2"
3399: dependencies = [
3400: "js-sys",
3401: "wasm-bindgen",
3402: ]
3403:
3404: [[package]]
3405: name = "webpki"
3406: version = "0.22.0"
3407: source = "registry+https://github.com/rust-lang/crates.io-index"
3408: checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
3409: dependencies = [
3410: "ring",
3411: "untrusted",
3412: ]
3413:
3414: [[package]]
3415: name = "webpki-roots"
3416: version = "0.22.6"
3417: source = "registry+https://github.com/rust-lang/crates.io-index"
3418: checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
3419: dependencies = [
3420: "webpki",
3421: ]
3422:
3423: [[package]]
3424: name = "whoami"
3425: version = "1.4.0"
3426: source = "registry+https://github.com/rust-lang/crates.io-index"
3427: checksum = "2c70234412ca409cc04e864e89523cb0fc37f5e1344ebed5a3ebf4192b6b9f68"
3428: dependencies = [
3429: "wasm-bindgen",
3430: "web-sys",
3431: ]
3432:
3433: [[package]]
3434: name = "winapi"
3435: version = "0.2.8"
3436: source = "registry+https://github.com/rust-lang/crates.io-index"
3437: checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
3438:
3439: [[package]]
3440: name = "winapi"
3441: version = "0.3.9"
3442: source = "registry+https://github.com/rust-lang/crates.io-index"
3443: checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3444: dependencies = [
3445: "winapi-i686-pc-windows-gnu",
3446: "winapi-x86_64-pc-windows-gnu",
3447: ]
3448:
3449: [[package]]
3450: name = "winapi-build"
3451: version = "0.1.1"
3452: source = "registry+https://github.com/rust-lang/crates.io-index"
3453: checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
3454:
3455: [[package]]
3456: name = "winapi-i686-pc-windows-gnu"
3457: version = "0.4.0"
3458: source = "registry+https://github.com/rust-lang/crates.io-index"
3459: checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3460:
3461: [[package]]
3462: name = "winapi-x86_64-pc-windows-gnu"
3463: version = "0.4.0"
3464: source = "registry+https://github.com/rust-lang/crates.io-index"
3465: checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3466:
3467: [[package]]
3468: name = "windows"
3469: version = "0.48.0"
3470: source = "registry+https://github.com/rust-lang/crates.io-index"
3471: checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
3472: dependencies = [
3473: "windows-targets 0.48.0",
3474: ]
3475:
3476: [[package]]
3477: name = "windows-sys"
3478: version = "0.42.0"
3479: source = "registry+https://github.com/rust-lang/crates.io-index"
3480: checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
3481: dependencies = [
3482: "windows_aarch64_gnullvm 0.42.2",
3483: "windows_aarch64_msvc 0.42.2",
3484: "windows_i686_gnu 0.42.2",
3485: "windows_i686_msvc 0.42.2",
3486: "windows_x86_64_gnu 0.42.2",
3487: "windows_x86_64_gnullvm 0.42.2",
3488: "windows_x86_64_msvc 0.42.2",
3489: ]
3490:
3491: [[package]]
3492: name = "windows-sys"
3493: version = "0.45.0"
3494: source = "registry+https://github.com/rust-lang/crates.io-index"
3495: checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
3496: dependencies = [
3497: "windows-targets 0.42.2",
3498: ]
3499:
3500: [[package]]
3501: name = "windows-sys"
3502: version = "0.48.0"
3503: source = "registry+https://github.com/rust-lang/crates.io-index"
3504: checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3505: dependencies = [
3506: "windows-targets 0.48.0",
3507: ]
3508:
3509: [[package]]
3510: name = "windows-targets"
3511: version = "0.42.2"
3512: source = "registry+https://github.com/rust-lang/crates.io-index"
3513: checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
3514: dependencies = [
3515: "windows_aarch64_gnullvm 0.42.2",
3516: "windows_aarch64_msvc 0.42.2",
3517: "windows_i686_gnu 0.42.2",
3518: "windows_i686_msvc 0.42.2",
3519: "windows_x86_64_gnu 0.42.2",
3520: "windows_x86_64_gnullvm 0.42.2",
3521: "windows_x86_64_msvc 0.42.2",
3522: ]
3523:
3524: [[package]]
3525: name = "windows-targets"
3526: version = "0.48.0"
3527: source = "registry+https://github.com/rust-lang/crates.io-index"
3528: checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
3529: dependencies = [
3530: "windows_aarch64_gnullvm 0.48.0",
3531: "windows_aarch64_msvc 0.48.0",
3532: "windows_i686_gnu 0.48.0",
3533: "windows_i686_msvc 0.48.0",
3534: "windows_x86_64_gnu 0.48.0",
3535: "windows_x86_64_gnullvm 0.48.0",
3536: "windows_x86_64_msvc 0.48.0",
3537: ]
3538:
3539: [[package]]
3540: name = "windows_aarch64_gnullvm"
3541: version = "0.42.2"
3542: source = "registry+https://github.com/rust-lang/crates.io-index"
3543: checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
3544:
3545: [[package]]
3546: name = "windows_aarch64_gnullvm"
3547: version = "0.48.0"
3548: source = "registry+https://github.com/rust-lang/crates.io-index"
3549: checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
3550:
3551: [[package]]
3552: name = "windows_aarch64_msvc"
3553: version = "0.42.2"
3554: source = "registry+https://github.com/rust-lang/crates.io-index"
3555: checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
3556:
3557: [[package]]
3558: name = "windows_aarch64_msvc"
3559: version = "0.48.0"
3560: source = "registry+https://github.com/rust-lang/crates.io-index"
3561: checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
3562:
3563: [[package]]
3564: name = "windows_i686_gnu"
3565: version = "0.42.2"
3566: source = "registry+https://github.com/rust-lang/crates.io-index"
3567: checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
3568:
3569: [[package]]
3570: name = "windows_i686_gnu"
3571: version = "0.48.0"
3572: source = "registry+https://github.com/rust-lang/crates.io-index"
3573: checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
3574:
3575: [[package]]
3576: name = "windows_i686_msvc"
3577: version = "0.42.2"
3578: source = "registry+https://github.com/rust-lang/crates.io-index"
3579: checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
3580:
3581: [[package]]
3582: name = "windows_i686_msvc"
3583: version = "0.48.0"
3584: source = "registry+https://github.com/rust-lang/crates.io-index"
3585: checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
3586:
3587: [[package]]
3588: name = "windows_x86_64_gnu"
3589: version = "0.42.2"
3590: source = "registry+https://github.com/rust-lang/crates.io-index"
3591: checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
3592:
3593: [[package]]
3594: name = "windows_x86_64_gnu"
3595: version = "0.48.0"
3596: source = "registry+https://github.com/rust-lang/crates.io-index"
3597: checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
3598:
3599: [[package]]
3600: name = "windows_x86_64_gnullvm"
3601: version = "0.42.2"
3602: source = "registry+https://github.com/rust-lang/crates.io-index"
3603: checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
3604:
3605: [[package]]
3606: name = "windows_x86_64_gnullvm"
3607: version = "0.48.0"
3608: source = "registry+https://github.com/rust-lang/crates.io-index"
3609: checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
3610:
3611: [[package]]
3612: name = "windows_x86_64_msvc"
3613: version = "0.42.2"
3614: source = "registry+https://github.com/rust-lang/crates.io-index"
3615: checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
3616:
3617: [[package]]
3618: name = "windows_x86_64_msvc"
3619: version = "0.48.0"
3620: source = "registry+https://github.com/rust-lang/crates.io-index"
3621: checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
3622:
3623: [[package]]
3624: name = "winreg"
3625: version = "0.6.2"
3626: source = "registry+https://github.com/rust-lang/crates.io-index"
3627: checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
3628: dependencies = [
3629: "winapi 0.3.9",
3630: ]
3631:
3632: [[package]]
3633: name = "winreg"
3634: version = "0.10.1"
3635: source = "registry+https://github.com/rust-lang/crates.io-index"
3636: checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
3637: dependencies = [
3638: "winapi 0.3.9",
3639: ]
3640:
3641: [[package]]
3642: name = "ws2_32-sys"
3643: version = "0.2.1"
3644: source = "registry+https://github.com/rust-lang/crates.io-index"
3645: checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
3646: dependencies = [
3647: "winapi 0.2.8",
3648: "winapi-build",
3649: ]