@tarojs/helper 3.5.8 → 3.5.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2034 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "Inflector"
7
+ version = "0.11.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
10
+ dependencies = [
11
+ "lazy_static",
12
+ "regex",
13
+ ]
14
+
15
+ [[package]]
16
+ name = "addr2line"
17
+ version = "0.17.0"
18
+ source = "registry+https://github.com/rust-lang/crates.io-index"
19
+ checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
20
+ dependencies = [
21
+ "gimli",
22
+ ]
23
+
24
+ [[package]]
25
+ name = "adler"
26
+ version = "1.0.2"
27
+ source = "registry+https://github.com/rust-lang/crates.io-index"
28
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
29
+
30
+ [[package]]
31
+ name = "ahash"
32
+ version = "0.7.6"
33
+ source = "registry+https://github.com/rust-lang/crates.io-index"
34
+ checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
35
+ dependencies = [
36
+ "getrandom",
37
+ "once_cell",
38
+ "version_check",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "aho-corasick"
43
+ version = "0.7.19"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
46
+ dependencies = [
47
+ "memchr",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "ansi_term"
52
+ version = "0.12.1"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
55
+ dependencies = [
56
+ "winapi",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anyhow"
61
+ version = "1.0.66"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
64
+
65
+ [[package]]
66
+ name = "ast_node"
67
+ version = "0.8.6"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "cf94863c5fdfee166d0907c44e5fee970123b2b7307046d35d1e671aa93afbba"
70
+ dependencies = [
71
+ "darling",
72
+ "pmutil",
73
+ "proc-macro2",
74
+ "quote",
75
+ "swc_macros_common",
76
+ "syn",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "atty"
81
+ version = "0.2.14"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
84
+ dependencies = [
85
+ "hermit-abi",
86
+ "libc",
87
+ "winapi",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "autocfg"
92
+ version = "1.1.0"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
95
+
96
+ [[package]]
97
+ name = "backtrace"
98
+ version = "0.3.66"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7"
101
+ dependencies = [
102
+ "addr2line",
103
+ "cc",
104
+ "cfg-if",
105
+ "libc",
106
+ "miniz_oxide",
107
+ "object",
108
+ "rustc-demangle",
109
+ ]
110
+
111
+ [[package]]
112
+ name = "base64"
113
+ version = "0.13.1"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
116
+
117
+ [[package]]
118
+ name = "better_scoped_tls"
119
+ version = "0.1.0"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "b73e8ecdec39e98aa3b19e8cd0b8ed8f77ccb86a6b0b2dc7cd86d105438a2123"
122
+ dependencies = [
123
+ "scoped-tls",
124
+ ]
125
+
126
+ [[package]]
127
+ name = "bitflags"
128
+ version = "1.3.2"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
131
+
132
+ [[package]]
133
+ name = "block-buffer"
134
+ version = "0.10.3"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
137
+ dependencies = [
138
+ "generic-array",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "bytecheck"
143
+ version = "0.6.9"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "d11cac2c12b5adc6570dad2ee1b87eff4955dac476fe12d81e5fdd352e52406f"
146
+ dependencies = [
147
+ "bytecheck_derive",
148
+ "ptr_meta",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "bytecheck_derive"
153
+ version = "0.6.9"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "13e576ebe98e605500b3c8041bb888e966653577172df6dd97398714eb30b9bf"
156
+ dependencies = [
157
+ "proc-macro2",
158
+ "quote",
159
+ "syn",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "cc"
164
+ version = "1.0.74"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "581f5dba903aac52ea3feb5ec4810848460ee833876f1f9b0fdeab1f19091574"
167
+
168
+ [[package]]
169
+ name = "cfg-if"
170
+ version = "1.0.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
173
+
174
+ [[package]]
175
+ name = "cpufeatures"
176
+ version = "0.2.5"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
179
+ dependencies = [
180
+ "libc",
181
+ ]
182
+
183
+ [[package]]
184
+ name = "crypto-common"
185
+ version = "0.1.6"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
188
+ dependencies = [
189
+ "generic-array",
190
+ "typenum",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "ctor"
195
+ version = "0.1.26"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
198
+ dependencies = [
199
+ "quote",
200
+ "syn",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "darling"
205
+ version = "0.13.4"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c"
208
+ dependencies = [
209
+ "darling_core",
210
+ "darling_macro",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "darling_core"
215
+ version = "0.13.4"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
218
+ dependencies = [
219
+ "fnv",
220
+ "ident_case",
221
+ "proc-macro2",
222
+ "quote",
223
+ "strsim",
224
+ "syn",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "darling_macro"
229
+ version = "0.13.4"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
232
+ dependencies = [
233
+ "darling_core",
234
+ "quote",
235
+ "syn",
236
+ ]
237
+
238
+ [[package]]
239
+ name = "diff"
240
+ version = "0.1.13"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
243
+
244
+ [[package]]
245
+ name = "difference"
246
+ version = "2.0.0"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
249
+
250
+ [[package]]
251
+ name = "digest"
252
+ version = "0.10.5"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c"
255
+ dependencies = [
256
+ "block-buffer",
257
+ "crypto-common",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "either"
262
+ version = "1.8.0"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
265
+
266
+ [[package]]
267
+ name = "enum-iterator"
268
+ version = "1.1.3"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "45a0ac4aeb3a18f92eaf09c6bb9b3ac30ff61ca95514fc58cbead1c9a6bf5401"
271
+ dependencies = [
272
+ "enum-iterator-derive",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "enum-iterator-derive"
277
+ version = "1.1.0"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "828de45d0ca18782232dfb8f3ea9cc428e8ced380eb26a520baaacfc70de39ce"
280
+ dependencies = [
281
+ "proc-macro2",
282
+ "quote",
283
+ "syn",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "enum_kind"
288
+ version = "0.2.1"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "78b940da354ae81ef0926c5eaa428207b8f4f091d3956c891dfbd124162bed99"
291
+ dependencies = [
292
+ "pmutil",
293
+ "proc-macro2",
294
+ "swc_macros_common",
295
+ "syn",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "fastrand"
300
+ version = "1.8.0"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
303
+ dependencies = [
304
+ "instant",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "fnv"
309
+ version = "1.0.7"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
312
+
313
+ [[package]]
314
+ name = "form_urlencoded"
315
+ version = "1.1.0"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
318
+ dependencies = [
319
+ "percent-encoding",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "from_variant"
324
+ version = "0.1.4"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "f0981e470d2ab9f643df3921d54f1952ea100c39fdb6a3fdc820e20d2291df6c"
327
+ dependencies = [
328
+ "pmutil",
329
+ "proc-macro2",
330
+ "swc_macros_common",
331
+ "syn",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "generic-array"
336
+ version = "0.14.6"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
339
+ dependencies = [
340
+ "typenum",
341
+ "version_check",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "getrandom"
346
+ version = "0.2.8"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
349
+ dependencies = [
350
+ "cfg-if",
351
+ "libc",
352
+ "wasi",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "getset"
357
+ version = "0.1.2"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "e45727250e75cc04ff2846a66397da8ef2b3db8e40e0cef4df67950a07621eb9"
360
+ dependencies = [
361
+ "proc-macro-error",
362
+ "proc-macro2",
363
+ "quote",
364
+ "syn",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "gimli"
369
+ version = "0.26.2"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
372
+
373
+ [[package]]
374
+ name = "glob"
375
+ version = "0.3.0"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
378
+
379
+ [[package]]
380
+ name = "hashbrown"
381
+ version = "0.12.3"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
384
+ dependencies = [
385
+ "ahash",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "hermit-abi"
390
+ version = "0.1.19"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
393
+ dependencies = [
394
+ "libc",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "hex"
399
+ version = "0.4.3"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
402
+
403
+ [[package]]
404
+ name = "ident_case"
405
+ version = "1.0.1"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
408
+
409
+ [[package]]
410
+ name = "idna"
411
+ version = "0.3.0"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
414
+ dependencies = [
415
+ "unicode-bidi",
416
+ "unicode-normalization",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "if_chain"
421
+ version = "1.0.2"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed"
424
+
425
+ [[package]]
426
+ name = "indexmap"
427
+ version = "1.9.1"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
430
+ dependencies = [
431
+ "autocfg",
432
+ "hashbrown",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "instant"
437
+ version = "0.1.12"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
440
+ dependencies = [
441
+ "cfg-if",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "is-macro"
446
+ version = "0.2.1"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "1c068d4c6b922cd6284c609cfa6dec0e41615c9c5a1a4ba729a970d8daba05fb"
449
+ dependencies = [
450
+ "Inflector",
451
+ "pmutil",
452
+ "proc-macro2",
453
+ "quote",
454
+ "syn",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "is_ci"
459
+ version = "1.1.1"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb"
462
+
463
+ [[package]]
464
+ name = "itoa"
465
+ version = "1.0.4"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
468
+
469
+ [[package]]
470
+ name = "lazy_static"
471
+ version = "1.4.0"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
474
+
475
+ [[package]]
476
+ name = "lexical"
477
+ version = "6.1.1"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "c7aefb36fd43fef7003334742cbf77b243fcd36418a1d1bdd480d613a67968f6"
480
+ dependencies = [
481
+ "lexical-core",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "lexical-core"
486
+ version = "0.8.5"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
489
+ dependencies = [
490
+ "lexical-parse-float",
491
+ "lexical-parse-integer",
492
+ "lexical-util",
493
+ "lexical-write-float",
494
+ "lexical-write-integer",
495
+ ]
496
+
497
+ [[package]]
498
+ name = "lexical-parse-float"
499
+ version = "0.8.5"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
502
+ dependencies = [
503
+ "lexical-parse-integer",
504
+ "lexical-util",
505
+ "static_assertions",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "lexical-parse-integer"
510
+ version = "0.8.6"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
513
+ dependencies = [
514
+ "lexical-util",
515
+ "static_assertions",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "lexical-util"
520
+ version = "0.8.5"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
523
+ dependencies = [
524
+ "static_assertions",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "lexical-write-float"
529
+ version = "0.8.5"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
532
+ dependencies = [
533
+ "lexical-util",
534
+ "lexical-write-integer",
535
+ "static_assertions",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "lexical-write-integer"
540
+ version = "0.8.5"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
543
+ dependencies = [
544
+ "lexical-util",
545
+ "static_assertions",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "libc"
550
+ version = "0.2.137"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
553
+
554
+ [[package]]
555
+ name = "lock_api"
556
+ version = "0.4.9"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
559
+ dependencies = [
560
+ "autocfg",
561
+ "scopeguard",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "log"
566
+ version = "0.4.17"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
569
+ dependencies = [
570
+ "cfg-if",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "matchers"
575
+ version = "0.1.0"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
578
+ dependencies = [
579
+ "regex-automata",
580
+ ]
581
+
582
+ [[package]]
583
+ name = "memchr"
584
+ version = "2.5.0"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
587
+
588
+ [[package]]
589
+ name = "miette"
590
+ version = "4.7.1"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "1c90329e44f9208b55f45711f9558cec15d7ef8295cc65ecd6d4188ae8edc58c"
593
+ dependencies = [
594
+ "atty",
595
+ "backtrace",
596
+ "miette-derive",
597
+ "once_cell",
598
+ "owo-colors",
599
+ "supports-color",
600
+ "supports-hyperlinks",
601
+ "supports-unicode",
602
+ "terminal_size",
603
+ "textwrap",
604
+ "thiserror",
605
+ "unicode-width",
606
+ ]
607
+
608
+ [[package]]
609
+ name = "miette-derive"
610
+ version = "4.7.1"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "6b5bc45b761bcf1b5e6e6c4128cd93b84c218721a8d9b894aa0aff4ed180174c"
613
+ dependencies = [
614
+ "proc-macro2",
615
+ "quote",
616
+ "syn",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "miniz_oxide"
621
+ version = "0.5.4"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
624
+ dependencies = [
625
+ "adler",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "new_debug_unreachable"
630
+ version = "1.0.4"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
633
+
634
+ [[package]]
635
+ name = "nu-ansi-term"
636
+ version = "0.46.0"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
639
+ dependencies = [
640
+ "overload",
641
+ "winapi",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "num-bigint"
646
+ version = "0.4.3"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
649
+ dependencies = [
650
+ "autocfg",
651
+ "num-integer",
652
+ "num-traits",
653
+ "serde",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "num-integer"
658
+ version = "0.1.45"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
661
+ dependencies = [
662
+ "autocfg",
663
+ "num-traits",
664
+ ]
665
+
666
+ [[package]]
667
+ name = "num-traits"
668
+ version = "0.2.15"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
671
+ dependencies = [
672
+ "autocfg",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "num_cpus"
677
+ version = "1.14.0"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5"
680
+ dependencies = [
681
+ "hermit-abi",
682
+ "libc",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "num_threads"
687
+ version = "0.1.6"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
690
+ dependencies = [
691
+ "libc",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "object"
696
+ version = "0.29.0"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53"
699
+ dependencies = [
700
+ "memchr",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "once_cell"
705
+ version = "1.16.0"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
708
+
709
+ [[package]]
710
+ name = "output_vt100"
711
+ version = "0.1.3"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66"
714
+ dependencies = [
715
+ "winapi",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "overload"
720
+ version = "0.1.1"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
723
+
724
+ [[package]]
725
+ name = "owo-colors"
726
+ version = "3.5.0"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
729
+
730
+ [[package]]
731
+ name = "parking_lot"
732
+ version = "0.12.1"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
735
+ dependencies = [
736
+ "lock_api",
737
+ "parking_lot_core",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "parking_lot_core"
742
+ version = "0.9.4"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0"
745
+ dependencies = [
746
+ "cfg-if",
747
+ "libc",
748
+ "redox_syscall",
749
+ "smallvec",
750
+ "windows-sys",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "percent-encoding"
755
+ version = "2.2.0"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
758
+
759
+ [[package]]
760
+ name = "phf"
761
+ version = "0.10.1"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
764
+ dependencies = [
765
+ "phf_macros",
766
+ "phf_shared",
767
+ "proc-macro-hack",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "phf_generator"
772
+ version = "0.10.0"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
775
+ dependencies = [
776
+ "phf_shared",
777
+ "rand",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "phf_macros"
782
+ version = "0.10.0"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0"
785
+ dependencies = [
786
+ "phf_generator",
787
+ "phf_shared",
788
+ "proc-macro-hack",
789
+ "proc-macro2",
790
+ "quote",
791
+ "syn",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "phf_shared"
796
+ version = "0.10.0"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
799
+ dependencies = [
800
+ "siphasher",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "pin-project-lite"
805
+ version = "0.2.9"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
808
+
809
+ [[package]]
810
+ name = "pmutil"
811
+ version = "0.5.3"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "3894e5d549cccbe44afecf72922f277f603cd4bb0219c8342631ef18fffbe004"
814
+ dependencies = [
815
+ "proc-macro2",
816
+ "quote",
817
+ "syn",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "ppv-lite86"
822
+ version = "0.2.16"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
825
+
826
+ [[package]]
827
+ name = "precomputed-hash"
828
+ version = "0.1.1"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
831
+
832
+ [[package]]
833
+ name = "pretty_assertions"
834
+ version = "1.3.0"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755"
837
+ dependencies = [
838
+ "ctor",
839
+ "diff",
840
+ "output_vt100",
841
+ "yansi",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "proc-macro-error"
846
+ version = "1.0.4"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
849
+ dependencies = [
850
+ "proc-macro-error-attr",
851
+ "proc-macro2",
852
+ "quote",
853
+ "syn",
854
+ "version_check",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "proc-macro-error-attr"
859
+ version = "1.0.4"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
862
+ dependencies = [
863
+ "proc-macro2",
864
+ "quote",
865
+ "version_check",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "proc-macro-hack"
870
+ version = "0.5.19"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
873
+
874
+ [[package]]
875
+ name = "proc-macro2"
876
+ version = "1.0.47"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
879
+ dependencies = [
880
+ "unicode-ident",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "ptr_meta"
885
+ version = "0.1.4"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
888
+ dependencies = [
889
+ "ptr_meta_derive",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "ptr_meta_derive"
894
+ version = "0.1.4"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
897
+ dependencies = [
898
+ "proc-macro2",
899
+ "quote",
900
+ "syn",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "quote"
905
+ version = "1.0.21"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
908
+ dependencies = [
909
+ "proc-macro2",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "rand"
914
+ version = "0.8.5"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
917
+ dependencies = [
918
+ "libc",
919
+ "rand_chacha",
920
+ "rand_core",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "rand_chacha"
925
+ version = "0.3.1"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
928
+ dependencies = [
929
+ "ppv-lite86",
930
+ "rand_core",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "rand_core"
935
+ version = "0.6.4"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
938
+ dependencies = [
939
+ "getrandom",
940
+ ]
941
+
942
+ [[package]]
943
+ name = "redox_syscall"
944
+ version = "0.2.16"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
947
+ dependencies = [
948
+ "bitflags",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "regex"
953
+ version = "1.6.0"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
956
+ dependencies = [
957
+ "aho-corasick",
958
+ "memchr",
959
+ "regex-syntax",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "regex-automata"
964
+ version = "0.1.10"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
967
+ dependencies = [
968
+ "regex-syntax",
969
+ ]
970
+
971
+ [[package]]
972
+ name = "regex-syntax"
973
+ version = "0.6.27"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
976
+
977
+ [[package]]
978
+ name = "relative-path"
979
+ version = "1.7.2"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "0df32d82cedd1499386877b062ebe8721f806de80b08d183c70184ef17dd1d42"
982
+
983
+ [[package]]
984
+ name = "remove_dir_all"
985
+ version = "0.5.3"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
988
+ dependencies = [
989
+ "winapi",
990
+ ]
991
+
992
+ [[package]]
993
+ name = "rend"
994
+ version = "0.3.6"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "79af64b4b6362ffba04eef3a4e10829718a4896dac19daa741851c86781edf95"
997
+ dependencies = [
998
+ "bytecheck",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "rkyv"
1003
+ version = "0.7.37"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "1f08c8062c1fe1253064043b8fc07bfea1b9702b71b4a86c11ea3588183b12e1"
1006
+ dependencies = [
1007
+ "bytecheck",
1008
+ "hashbrown",
1009
+ "ptr_meta",
1010
+ "rend",
1011
+ "rkyv_derive",
1012
+ "seahash",
1013
+ ]
1014
+
1015
+ [[package]]
1016
+ name = "rkyv_derive"
1017
+ version = "0.7.37"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "e289706df51226e84814bf6ba1a9e1013112ae29bc7a9878f73fce360520c403"
1020
+ dependencies = [
1021
+ "proc-macro2",
1022
+ "quote",
1023
+ "syn",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "rustc-demangle"
1028
+ version = "0.1.21"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
1031
+
1032
+ [[package]]
1033
+ name = "rustc-hash"
1034
+ version = "1.1.0"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1037
+
1038
+ [[package]]
1039
+ name = "rustc_version"
1040
+ version = "0.2.3"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
1043
+ dependencies = [
1044
+ "semver",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "rustversion"
1049
+ version = "1.0.9"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8"
1052
+
1053
+ [[package]]
1054
+ name = "ryu"
1055
+ version = "1.0.11"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
1058
+
1059
+ [[package]]
1060
+ name = "scoped-tls"
1061
+ version = "1.0.1"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
1064
+
1065
+ [[package]]
1066
+ name = "scopeguard"
1067
+ version = "1.1.0"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
1070
+
1071
+ [[package]]
1072
+ name = "seahash"
1073
+ version = "4.1.0"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
1076
+
1077
+ [[package]]
1078
+ name = "semver"
1079
+ version = "0.9.0"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
1082
+ dependencies = [
1083
+ "semver-parser",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "semver-parser"
1088
+ version = "0.7.0"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
1091
+
1092
+ [[package]]
1093
+ name = "serde"
1094
+ version = "1.0.147"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965"
1097
+ dependencies = [
1098
+ "serde_derive",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "serde_derive"
1103
+ version = "1.0.147"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852"
1106
+ dependencies = [
1107
+ "proc-macro2",
1108
+ "quote",
1109
+ "syn",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "serde_json"
1114
+ version = "1.0.87"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "6ce777b7b150d76b9cf60d28b55f5847135a003f7d7350c6be7a773508ce7d45"
1117
+ dependencies = [
1118
+ "itoa",
1119
+ "ryu",
1120
+ "serde",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "sha-1"
1125
+ version = "0.10.0"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f"
1128
+ dependencies = [
1129
+ "cfg-if",
1130
+ "cpufeatures",
1131
+ "digest",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "sharded-slab"
1136
+ version = "0.1.4"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
1139
+ dependencies = [
1140
+ "lazy_static",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "siphasher"
1145
+ version = "0.3.10"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
1148
+
1149
+ [[package]]
1150
+ name = "smallvec"
1151
+ version = "1.10.0"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
1154
+
1155
+ [[package]]
1156
+ name = "smawk"
1157
+ version = "0.3.1"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043"
1160
+
1161
+ [[package]]
1162
+ name = "sourcemap"
1163
+ version = "6.2.0"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "c46fdc1838ff49cf692226f5c2b0f5b7538f556863d0eca602984714667ac6e7"
1166
+ dependencies = [
1167
+ "base64",
1168
+ "if_chain",
1169
+ "lazy_static",
1170
+ "regex",
1171
+ "rustc_version",
1172
+ "serde",
1173
+ "serde_json",
1174
+ "url",
1175
+ ]
1176
+
1177
+ [[package]]
1178
+ name = "stable_deref_trait"
1179
+ version = "1.2.0"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
1182
+
1183
+ [[package]]
1184
+ name = "static_assertions"
1185
+ version = "1.1.0"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1188
+
1189
+ [[package]]
1190
+ name = "string_cache"
1191
+ version = "0.8.4"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08"
1194
+ dependencies = [
1195
+ "new_debug_unreachable",
1196
+ "once_cell",
1197
+ "parking_lot",
1198
+ "phf_shared",
1199
+ "precomputed-hash",
1200
+ "serde",
1201
+ ]
1202
+
1203
+ [[package]]
1204
+ name = "string_cache_codegen"
1205
+ version = "0.5.2"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
1208
+ dependencies = [
1209
+ "phf_generator",
1210
+ "phf_shared",
1211
+ "proc-macro2",
1212
+ "quote",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "string_enum"
1217
+ version = "0.3.2"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "994453cd270ad0265796eb24abf5540091ed03e681c5f3c12bc33e4db33253e1"
1220
+ dependencies = [
1221
+ "pmutil",
1222
+ "proc-macro2",
1223
+ "quote",
1224
+ "swc_macros_common",
1225
+ "syn",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "strsim"
1230
+ version = "0.10.0"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
1233
+
1234
+ [[package]]
1235
+ name = "supports-color"
1236
+ version = "1.3.0"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "4872ced36b91d47bae8a214a683fe54e7078875b399dfa251df346c9b547d1f9"
1239
+ dependencies = [
1240
+ "atty",
1241
+ "is_ci",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "supports-hyperlinks"
1246
+ version = "1.2.0"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "590b34f7c5f01ecc9d78dba4b3f445f31df750a67621cf31626f3b7441ce6406"
1249
+ dependencies = [
1250
+ "atty",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "supports-unicode"
1255
+ version = "1.0.2"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "a8b945e45b417b125a8ec51f1b7df2f8df7920367700d1f98aedd21e5735f8b2"
1258
+ dependencies = [
1259
+ "atty",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "swc-plugin-define-config"
1264
+ version = "0.1.0"
1265
+ dependencies = [
1266
+ "serde",
1267
+ "swc_core",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "swc_atoms"
1272
+ version = "0.4.24"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "79642938ff437f2217718abf30a3450b014f600847c8f4bd60fa44f88a5210ea"
1275
+ dependencies = [
1276
+ "once_cell",
1277
+ "rkyv",
1278
+ "rustc-hash",
1279
+ "serde",
1280
+ "string_cache",
1281
+ "string_cache_codegen",
1282
+ "triomphe",
1283
+ ]
1284
+
1285
+ [[package]]
1286
+ name = "swc_common"
1287
+ version = "0.29.13"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "953e1f014688eadbbd3e9131a525e8922c552540bb02b0bb6d9fdcb1375bccc4"
1290
+ dependencies = [
1291
+ "ahash",
1292
+ "anyhow",
1293
+ "ast_node",
1294
+ "atty",
1295
+ "better_scoped_tls",
1296
+ "cfg-if",
1297
+ "either",
1298
+ "from_variant",
1299
+ "new_debug_unreachable",
1300
+ "num-bigint",
1301
+ "once_cell",
1302
+ "parking_lot",
1303
+ "rkyv",
1304
+ "rustc-hash",
1305
+ "serde",
1306
+ "siphasher",
1307
+ "sourcemap",
1308
+ "string_cache",
1309
+ "swc_atoms",
1310
+ "swc_eq_ignore_macros",
1311
+ "swc_visit",
1312
+ "termcolor",
1313
+ "tracing",
1314
+ "unicode-width",
1315
+ "url",
1316
+ ]
1317
+
1318
+ [[package]]
1319
+ name = "swc_core"
1320
+ version = "0.40.46"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "aef93cb02d82616ff9fc8827a7fb97b364e16fe409cf06bac15a801b00ee74dd"
1323
+ dependencies = [
1324
+ "once_cell",
1325
+ "swc_atoms",
1326
+ "swc_common",
1327
+ "swc_ecma_ast",
1328
+ "swc_ecma_transforms_base",
1329
+ "swc_ecma_transforms_testing",
1330
+ "swc_ecma_visit",
1331
+ "swc_plugin",
1332
+ "swc_plugin_macro",
1333
+ "swc_plugin_proxy",
1334
+ "vergen",
1335
+ ]
1336
+
1337
+ [[package]]
1338
+ name = "swc_ecma_ast"
1339
+ version = "0.94.17"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "bc39246540303a9058283e6ef691a276c34afd8331e6873fb3e6fb7803eb77eb"
1342
+ dependencies = [
1343
+ "bitflags",
1344
+ "is-macro",
1345
+ "num-bigint",
1346
+ "rkyv",
1347
+ "scoped-tls",
1348
+ "serde",
1349
+ "string_enum",
1350
+ "swc_atoms",
1351
+ "swc_common",
1352
+ "unicode-id",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "swc_ecma_codegen"
1357
+ version = "0.127.29"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "4f7dc7fbe2ad55c407766edd5b735e9cc693b20e37d3b5681d1660d6d5087348"
1360
+ dependencies = [
1361
+ "memchr",
1362
+ "num-bigint",
1363
+ "once_cell",
1364
+ "rustc-hash",
1365
+ "serde",
1366
+ "sourcemap",
1367
+ "swc_atoms",
1368
+ "swc_common",
1369
+ "swc_ecma_ast",
1370
+ "swc_ecma_codegen_macros",
1371
+ "tracing",
1372
+ ]
1373
+
1374
+ [[package]]
1375
+ name = "swc_ecma_codegen_macros"
1376
+ version = "0.7.1"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "0159c99f81f52e48fe692ef7af1b0990b45d3006b14c6629be0b1ffee1b23aea"
1379
+ dependencies = [
1380
+ "pmutil",
1381
+ "proc-macro2",
1382
+ "quote",
1383
+ "swc_macros_common",
1384
+ "syn",
1385
+ ]
1386
+
1387
+ [[package]]
1388
+ name = "swc_ecma_parser"
1389
+ version = "0.122.24"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "8e08d44ac2eaff9a308cddfea82640a131682be76b132efee4d7b8ddbaeb26ac"
1392
+ dependencies = [
1393
+ "either",
1394
+ "enum_kind",
1395
+ "lexical",
1396
+ "num-bigint",
1397
+ "serde",
1398
+ "smallvec",
1399
+ "swc_atoms",
1400
+ "swc_common",
1401
+ "swc_ecma_ast",
1402
+ "tracing",
1403
+ "typed-arena",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "swc_ecma_testing"
1408
+ version = "0.20.7"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "21ecc467eff7ef4ec0a64919402b94da637003015d019de4d649e8efeceafd3f"
1411
+ dependencies = [
1412
+ "anyhow",
1413
+ "hex",
1414
+ "sha-1",
1415
+ "swc_atoms",
1416
+ "swc_common",
1417
+ "swc_ecma_ast",
1418
+ "testing",
1419
+ "tracing",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "swc_ecma_transforms_base"
1424
+ version = "0.111.41"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "ec8531b478048047b06eae929cafc1f99bad41f7020081f6a72ba9afb4da8927"
1427
+ dependencies = [
1428
+ "better_scoped_tls",
1429
+ "bitflags",
1430
+ "once_cell",
1431
+ "phf",
1432
+ "rustc-hash",
1433
+ "serde",
1434
+ "smallvec",
1435
+ "swc_atoms",
1436
+ "swc_common",
1437
+ "swc_ecma_ast",
1438
+ "swc_ecma_parser",
1439
+ "swc_ecma_utils",
1440
+ "swc_ecma_visit",
1441
+ "tracing",
1442
+ ]
1443
+
1444
+ [[package]]
1445
+ name = "swc_ecma_transforms_testing"
1446
+ version = "0.114.27"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "b779b37c21eeb835567b0b2839637d91ac1b83ac3afc882e2b5f9fef7c71df26"
1449
+ dependencies = [
1450
+ "ansi_term",
1451
+ "anyhow",
1452
+ "base64",
1453
+ "hex",
1454
+ "serde",
1455
+ "serde_json",
1456
+ "sha-1",
1457
+ "sourcemap",
1458
+ "swc_common",
1459
+ "swc_ecma_ast",
1460
+ "swc_ecma_codegen",
1461
+ "swc_ecma_parser",
1462
+ "swc_ecma_testing",
1463
+ "swc_ecma_transforms_base",
1464
+ "swc_ecma_utils",
1465
+ "swc_ecma_visit",
1466
+ "tempfile",
1467
+ "testing",
1468
+ ]
1469
+
1470
+ [[package]]
1471
+ name = "swc_ecma_utils"
1472
+ version = "0.105.29"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "f31ea4ff3a66f97aacccfef3d3e0cc4b4c0d5c124123e6ea4a90f59ad51c3843"
1475
+ dependencies = [
1476
+ "indexmap",
1477
+ "num_cpus",
1478
+ "once_cell",
1479
+ "swc_atoms",
1480
+ "swc_common",
1481
+ "swc_ecma_ast",
1482
+ "swc_ecma_visit",
1483
+ "tracing",
1484
+ "unicode-id",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "swc_ecma_visit"
1489
+ version = "0.80.17"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "fb35536ee61f90c73fd22500911ca2edd11b1ccaad79d01b296011545a339115"
1492
+ dependencies = [
1493
+ "num-bigint",
1494
+ "swc_atoms",
1495
+ "swc_common",
1496
+ "swc_ecma_ast",
1497
+ "swc_visit",
1498
+ "tracing",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "swc_eq_ignore_macros"
1503
+ version = "0.1.1"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "0c20468634668c2bbab581947bb8c75c97158d5a6959f4ba33df20983b20b4f6"
1506
+ dependencies = [
1507
+ "pmutil",
1508
+ "proc-macro2",
1509
+ "quote",
1510
+ "syn",
1511
+ ]
1512
+
1513
+ [[package]]
1514
+ name = "swc_error_reporters"
1515
+ version = "0.13.13"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "b1996acb4fd0656d77769764e93ca486810d6baa724a8ed877a7ae3cc7f7c6b5"
1518
+ dependencies = [
1519
+ "anyhow",
1520
+ "miette",
1521
+ "once_cell",
1522
+ "parking_lot",
1523
+ "swc_common",
1524
+ ]
1525
+
1526
+ [[package]]
1527
+ name = "swc_macros_common"
1528
+ version = "0.3.6"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "a4be988307882648d9bc7c71a6a73322b7520ef0211e920489a98f8391d8caa2"
1531
+ dependencies = [
1532
+ "pmutil",
1533
+ "proc-macro2",
1534
+ "quote",
1535
+ "syn",
1536
+ ]
1537
+
1538
+ [[package]]
1539
+ name = "swc_plugin"
1540
+ version = "0.90.0"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "ca5df720531bfbd7ceb1139319c39c20c446abfb8f7e0eb47b104205a71152b4"
1543
+ dependencies = [
1544
+ "once_cell",
1545
+ ]
1546
+
1547
+ [[package]]
1548
+ name = "swc_plugin_macro"
1549
+ version = "0.9.8"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "4241e5cbfb7aae61603ca4d161e132012f488cf86393855c5cd5dddbbfe34382"
1552
+ dependencies = [
1553
+ "proc-macro2",
1554
+ "quote",
1555
+ "syn",
1556
+ ]
1557
+
1558
+ [[package]]
1559
+ name = "swc_plugin_proxy"
1560
+ version = "0.22.17"
1561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1562
+ checksum = "be2725ea87c315b1ccd980a296542442e57dc6700641f974e670df11ed338bae"
1563
+ dependencies = [
1564
+ "better_scoped_tls",
1565
+ "rkyv",
1566
+ "swc_common",
1567
+ "swc_ecma_ast",
1568
+ "swc_trace_macro",
1569
+ "tracing",
1570
+ ]
1571
+
1572
+ [[package]]
1573
+ name = "swc_trace_macro"
1574
+ version = "0.1.2"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "a4795c8d23e0de62eef9cac0a20ae52429ee2ffc719768e838490f195b7d7267"
1577
+ dependencies = [
1578
+ "proc-macro2",
1579
+ "quote",
1580
+ "syn",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "swc_visit"
1585
+ version = "0.5.3"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "82f2bcb7223e185c4c7cbf5e0c1207dec6d2bfd5e72e3fb7b3e8d179747e9130"
1588
+ dependencies = [
1589
+ "either",
1590
+ "swc_visit_macros",
1591
+ ]
1592
+
1593
+ [[package]]
1594
+ name = "swc_visit_macros"
1595
+ version = "0.5.4"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "8fb1f3561674d84947694d41fb6d5737d19539222779baeac1b3a071a2b29428"
1598
+ dependencies = [
1599
+ "Inflector",
1600
+ "pmutil",
1601
+ "proc-macro2",
1602
+ "quote",
1603
+ "swc_macros_common",
1604
+ "syn",
1605
+ ]
1606
+
1607
+ [[package]]
1608
+ name = "syn"
1609
+ version = "1.0.103"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d"
1612
+ dependencies = [
1613
+ "proc-macro2",
1614
+ "quote",
1615
+ "unicode-ident",
1616
+ ]
1617
+
1618
+ [[package]]
1619
+ name = "tempfile"
1620
+ version = "3.3.0"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
1623
+ dependencies = [
1624
+ "cfg-if",
1625
+ "fastrand",
1626
+ "libc",
1627
+ "redox_syscall",
1628
+ "remove_dir_all",
1629
+ "winapi",
1630
+ ]
1631
+
1632
+ [[package]]
1633
+ name = "termcolor"
1634
+ version = "1.1.3"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
1637
+ dependencies = [
1638
+ "winapi-util",
1639
+ ]
1640
+
1641
+ [[package]]
1642
+ name = "terminal_size"
1643
+ version = "0.1.17"
1644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+ checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
1646
+ dependencies = [
1647
+ "libc",
1648
+ "winapi",
1649
+ ]
1650
+
1651
+ [[package]]
1652
+ name = "testing"
1653
+ version = "0.31.13"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "2a510616ec857597e5eaa33977e2aab5df08385cf7d69bd68bf55763fdf120b2"
1656
+ dependencies = [
1657
+ "ansi_term",
1658
+ "difference",
1659
+ "once_cell",
1660
+ "pretty_assertions",
1661
+ "regex",
1662
+ "serde_json",
1663
+ "swc_common",
1664
+ "swc_error_reporters",
1665
+ "testing_macros",
1666
+ "tracing",
1667
+ "tracing-subscriber",
1668
+ ]
1669
+
1670
+ [[package]]
1671
+ name = "testing_macros"
1672
+ version = "0.2.7"
1673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1674
+ checksum = "e74ff09d2d4d4b7ea140ff67eb7ed8fd35a708e2c327bcde5a25707d66840099"
1675
+ dependencies = [
1676
+ "anyhow",
1677
+ "glob",
1678
+ "once_cell",
1679
+ "pmutil",
1680
+ "proc-macro2",
1681
+ "quote",
1682
+ "regex",
1683
+ "relative-path",
1684
+ "syn",
1685
+ ]
1686
+
1687
+ [[package]]
1688
+ name = "textwrap"
1689
+ version = "0.15.2"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "b7b3e525a49ec206798b40326a44121291b530c963cfb01018f63e135bac543d"
1692
+ dependencies = [
1693
+ "smawk",
1694
+ "unicode-linebreak",
1695
+ "unicode-width",
1696
+ ]
1697
+
1698
+ [[package]]
1699
+ name = "thiserror"
1700
+ version = "1.0.37"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
1703
+ dependencies = [
1704
+ "thiserror-impl",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "thiserror-impl"
1709
+ version = "1.0.37"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
1712
+ dependencies = [
1713
+ "proc-macro2",
1714
+ "quote",
1715
+ "syn",
1716
+ ]
1717
+
1718
+ [[package]]
1719
+ name = "thread_local"
1720
+ version = "1.1.4"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
1723
+ dependencies = [
1724
+ "once_cell",
1725
+ ]
1726
+
1727
+ [[package]]
1728
+ name = "time"
1729
+ version = "0.3.16"
1730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1731
+ checksum = "0fab5c8b9980850e06d92ddbe3ab839c062c801f3927c0fb8abd6fc8e918fbca"
1732
+ dependencies = [
1733
+ "itoa",
1734
+ "libc",
1735
+ "num_threads",
1736
+ "serde",
1737
+ "time-core",
1738
+ "time-macros",
1739
+ ]
1740
+
1741
+ [[package]]
1742
+ name = "time-core"
1743
+ version = "0.1.0"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
1746
+
1747
+ [[package]]
1748
+ name = "time-macros"
1749
+ version = "0.2.5"
1750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1751
+ checksum = "65bb801831d812c562ae7d2bfb531f26e66e4e1f6b17307ba4149c5064710e5b"
1752
+ dependencies = [
1753
+ "time-core",
1754
+ ]
1755
+
1756
+ [[package]]
1757
+ name = "tinyvec"
1758
+ version = "1.6.0"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
1761
+ dependencies = [
1762
+ "tinyvec_macros",
1763
+ ]
1764
+
1765
+ [[package]]
1766
+ name = "tinyvec_macros"
1767
+ version = "0.1.0"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
1770
+
1771
+ [[package]]
1772
+ name = "tracing"
1773
+ version = "0.1.37"
1774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1775
+ checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
1776
+ dependencies = [
1777
+ "cfg-if",
1778
+ "pin-project-lite",
1779
+ "tracing-attributes",
1780
+ "tracing-core",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "tracing-attributes"
1785
+ version = "0.1.23"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
1788
+ dependencies = [
1789
+ "proc-macro2",
1790
+ "quote",
1791
+ "syn",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "tracing-core"
1796
+ version = "0.1.30"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
1799
+ dependencies = [
1800
+ "once_cell",
1801
+ "valuable",
1802
+ ]
1803
+
1804
+ [[package]]
1805
+ name = "tracing-log"
1806
+ version = "0.1.3"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
1809
+ dependencies = [
1810
+ "lazy_static",
1811
+ "log",
1812
+ "tracing-core",
1813
+ ]
1814
+
1815
+ [[package]]
1816
+ name = "tracing-subscriber"
1817
+ version = "0.3.16"
1818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1819
+ checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70"
1820
+ dependencies = [
1821
+ "matchers",
1822
+ "nu-ansi-term",
1823
+ "once_cell",
1824
+ "regex",
1825
+ "sharded-slab",
1826
+ "smallvec",
1827
+ "thread_local",
1828
+ "tracing",
1829
+ "tracing-core",
1830
+ "tracing-log",
1831
+ ]
1832
+
1833
+ [[package]]
1834
+ name = "triomphe"
1835
+ version = "0.1.8"
1836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
+ checksum = "f1ee9bd9239c339d714d657fac840c6d2a4f9c45f4f9ec7b0975113458be78db"
1838
+ dependencies = [
1839
+ "serde",
1840
+ "stable_deref_trait",
1841
+ ]
1842
+
1843
+ [[package]]
1844
+ name = "typed-arena"
1845
+ version = "2.0.1"
1846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1847
+ checksum = "0685c84d5d54d1c26f7d3eb96cd41550adb97baed141a761cf335d3d33bcd0ae"
1848
+
1849
+ [[package]]
1850
+ name = "typenum"
1851
+ version = "1.15.0"
1852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1853
+ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
1854
+
1855
+ [[package]]
1856
+ name = "unicode-bidi"
1857
+ version = "0.3.8"
1858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1859
+ checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
1860
+
1861
+ [[package]]
1862
+ name = "unicode-id"
1863
+ version = "0.3.3"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "d70b6494226b36008c8366c288d77190b3fad2eb4c10533139c1c1f461127f1a"
1866
+
1867
+ [[package]]
1868
+ name = "unicode-ident"
1869
+ version = "1.0.5"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
1872
+
1873
+ [[package]]
1874
+ name = "unicode-linebreak"
1875
+ version = "0.1.4"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "c5faade31a542b8b35855fff6e8def199853b2da8da256da52f52f1316ee3137"
1878
+ dependencies = [
1879
+ "hashbrown",
1880
+ "regex",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "unicode-normalization"
1885
+ version = "0.1.22"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
1888
+ dependencies = [
1889
+ "tinyvec",
1890
+ ]
1891
+
1892
+ [[package]]
1893
+ name = "unicode-width"
1894
+ version = "0.1.10"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
1897
+
1898
+ [[package]]
1899
+ name = "url"
1900
+ version = "2.3.1"
1901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1902
+ checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
1903
+ dependencies = [
1904
+ "form_urlencoded",
1905
+ "idna",
1906
+ "percent-encoding",
1907
+ ]
1908
+
1909
+ [[package]]
1910
+ name = "valuable"
1911
+ version = "0.1.0"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
1914
+
1915
+ [[package]]
1916
+ name = "vergen"
1917
+ version = "7.4.2"
1918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1919
+ checksum = "73ba753d713ec3844652ad2cb7eb56bc71e34213a14faddac7852a10ba88f61e"
1920
+ dependencies = [
1921
+ "anyhow",
1922
+ "cfg-if",
1923
+ "enum-iterator",
1924
+ "getset",
1925
+ "rustversion",
1926
+ "thiserror",
1927
+ "time",
1928
+ ]
1929
+
1930
+ [[package]]
1931
+ name = "version_check"
1932
+ version = "0.9.4"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
1935
+
1936
+ [[package]]
1937
+ name = "wasi"
1938
+ version = "0.11.0+wasi-snapshot-preview1"
1939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1940
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1941
+
1942
+ [[package]]
1943
+ name = "winapi"
1944
+ version = "0.3.9"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1947
+ dependencies = [
1948
+ "winapi-i686-pc-windows-gnu",
1949
+ "winapi-x86_64-pc-windows-gnu",
1950
+ ]
1951
+
1952
+ [[package]]
1953
+ name = "winapi-i686-pc-windows-gnu"
1954
+ version = "0.4.0"
1955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1956
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1957
+
1958
+ [[package]]
1959
+ name = "winapi-util"
1960
+ version = "0.1.5"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
1963
+ dependencies = [
1964
+ "winapi",
1965
+ ]
1966
+
1967
+ [[package]]
1968
+ name = "winapi-x86_64-pc-windows-gnu"
1969
+ version = "0.4.0"
1970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1971
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1972
+
1973
+ [[package]]
1974
+ name = "windows-sys"
1975
+ version = "0.42.0"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
1978
+ dependencies = [
1979
+ "windows_aarch64_gnullvm",
1980
+ "windows_aarch64_msvc",
1981
+ "windows_i686_gnu",
1982
+ "windows_i686_msvc",
1983
+ "windows_x86_64_gnu",
1984
+ "windows_x86_64_gnullvm",
1985
+ "windows_x86_64_msvc",
1986
+ ]
1987
+
1988
+ [[package]]
1989
+ name = "windows_aarch64_gnullvm"
1990
+ version = "0.42.0"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
1993
+
1994
+ [[package]]
1995
+ name = "windows_aarch64_msvc"
1996
+ version = "0.42.0"
1997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1998
+ checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
1999
+
2000
+ [[package]]
2001
+ name = "windows_i686_gnu"
2002
+ version = "0.42.0"
2003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2004
+ checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
2005
+
2006
+ [[package]]
2007
+ name = "windows_i686_msvc"
2008
+ version = "0.42.0"
2009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2010
+ checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
2011
+
2012
+ [[package]]
2013
+ name = "windows_x86_64_gnu"
2014
+ version = "0.42.0"
2015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2016
+ checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
2017
+
2018
+ [[package]]
2019
+ name = "windows_x86_64_gnullvm"
2020
+ version = "0.42.0"
2021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2022
+ checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
2023
+
2024
+ [[package]]
2025
+ name = "windows_x86_64_msvc"
2026
+ version = "0.42.0"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"
2029
+
2030
+ [[package]]
2031
+ name = "yansi"
2032
+ version = "0.5.1"
2033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2034
+ checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"