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