klenod-plugin-javascript 0.0.1

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,1454 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "once_cell",
13
+ "version_check",
14
+ "zerocopy",
15
+ ]
16
+
17
+ [[package]]
18
+ name = "aho-corasick"
19
+ version = "1.1.5"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
22
+ dependencies = [
23
+ "memchr",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "allocator-api2"
28
+ version = "0.2.21"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
31
+
32
+ [[package]]
33
+ name = "anyhow"
34
+ version = "1.0.104"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
37
+
38
+ [[package]]
39
+ name = "ascii"
40
+ version = "1.1.0"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16"
43
+
44
+ [[package]]
45
+ name = "ast_node"
46
+ version = "5.0.0"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "2eb025ef00a6da925cf40870b9c8d008526b6004ece399cb0974209720f0b194"
49
+ dependencies = [
50
+ "quote",
51
+ "swc_macros_common",
52
+ "syn 2.0.119",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "autocfg"
57
+ version = "1.5.1"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
60
+
61
+ [[package]]
62
+ name = "base64"
63
+ version = "0.22.1"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
66
+
67
+ [[package]]
68
+ name = "better_scoped_tls"
69
+ version = "1.0.1"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "7cd228125315b132eed175bf47619ac79b945b26e56b848ba203ae4ea8603609"
72
+ dependencies = [
73
+ "scoped-tls",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "bindgen"
78
+ version = "0.72.1"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
81
+ dependencies = [
82
+ "bitflags",
83
+ "cexpr",
84
+ "clang-sys",
85
+ "itertools",
86
+ "proc-macro2",
87
+ "quote",
88
+ "regex",
89
+ "rustc-hash",
90
+ "shlex",
91
+ "syn 2.0.119",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "bitflags"
96
+ version = "2.13.1"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
99
+
100
+ [[package]]
101
+ name = "block-buffer"
102
+ version = "0.10.4"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
105
+ dependencies = [
106
+ "generic-array",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "bumpalo"
111
+ version = "3.20.3"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
114
+ dependencies = [
115
+ "allocator-api2",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "bytes"
120
+ version = "1.12.1"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
123
+
124
+ [[package]]
125
+ name = "bytes-str"
126
+ version = "0.2.8"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "577d2bf5650f8554d5a372af5ac93535110a0fc75b3e702bb853369febf227c2"
129
+ dependencies = [
130
+ "bytes",
131
+ "serde",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "castaway"
136
+ version = "0.2.4"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
139
+ dependencies = [
140
+ "rustversion",
141
+ ]
142
+
143
+ [[package]]
144
+ name = "cexpr"
145
+ version = "0.6.0"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
148
+ dependencies = [
149
+ "nom",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "cfg-if"
154
+ version = "1.0.4"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
157
+
158
+ [[package]]
159
+ name = "clang-sys"
160
+ version = "1.9.1"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "157a8ba7b480713b56f4c09fd13fc3e0a22a5dfab8097ba61cbc5feef950788a"
163
+ dependencies = [
164
+ "glob",
165
+ "libc",
166
+ "libloading",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "compact_str"
171
+ version = "0.7.1"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "f86b9c4c00838774a6d902ef931eff7470720c51d90c2e32cfe15dc304737b3f"
174
+ dependencies = [
175
+ "castaway",
176
+ "cfg-if",
177
+ "itoa",
178
+ "ryu",
179
+ "static_assertions",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "cpufeatures"
184
+ version = "0.2.17"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
187
+ dependencies = [
188
+ "libc",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "crypto-common"
193
+ version = "0.1.7"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
196
+ dependencies = [
197
+ "generic-array",
198
+ "typenum",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "digest"
203
+ version = "0.10.7"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
206
+ dependencies = [
207
+ "block-buffer",
208
+ "crypto-common",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "displaydoc"
213
+ version = "0.2.7"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
216
+ dependencies = [
217
+ "proc-macro2",
218
+ "quote",
219
+ "syn 3.0.4",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "dragonbox_ecma"
224
+ version = "0.1.12"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "fd8e701084c37e7ef62d3f9e453b618130cbc0ef3573847785952a3ac3f746bf"
227
+
228
+ [[package]]
229
+ name = "either"
230
+ version = "1.18.0"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
233
+
234
+ [[package]]
235
+ name = "equivalent"
236
+ version = "1.0.2"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
239
+
240
+ [[package]]
241
+ name = "form_urlencoded"
242
+ version = "1.2.2"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
245
+ dependencies = [
246
+ "percent-encoding",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "from_variant"
251
+ version = "3.0.0"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "e5ff35a391aef949120a0340d690269b3d9f63460a6106e99bd07b961f345ea9"
254
+ dependencies = [
255
+ "swc_macros_common",
256
+ "syn 2.0.119",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "generic-array"
261
+ version = "0.14.7"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
264
+ dependencies = [
265
+ "typenum",
266
+ "version_check",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "glob"
271
+ version = "0.3.4"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
274
+
275
+ [[package]]
276
+ name = "hashbrown"
277
+ version = "0.14.5"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
280
+ dependencies = [
281
+ "ahash",
282
+ "allocator-api2",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "hashbrown"
287
+ version = "0.17.1"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
290
+
291
+ [[package]]
292
+ name = "heck"
293
+ version = "0.5.0"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
296
+
297
+ [[package]]
298
+ name = "hermit-abi"
299
+ version = "0.5.2"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
302
+
303
+ [[package]]
304
+ name = "hstr"
305
+ version = "3.0.6"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "83bb87e4b300d73412f6dcc7022ee7741452b51b155c2b06e5994d0770c2dbe2"
308
+ dependencies = [
309
+ "hashbrown 0.14.5",
310
+ "new_debug_unreachable",
311
+ "once_cell",
312
+ "rustc-hash",
313
+ "serde",
314
+ "triomphe",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "icu_collections"
319
+ version = "2.3.0"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
322
+ dependencies = [
323
+ "displaydoc",
324
+ "potential_utf",
325
+ "utf8_iter",
326
+ "yoke",
327
+ "zerofrom",
328
+ "zerovec",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "icu_locale_core"
333
+ version = "2.3.0"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
336
+ dependencies = [
337
+ "displaydoc",
338
+ "litemap",
339
+ "tinystr",
340
+ "writeable",
341
+ "zerovec",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "icu_normalizer"
346
+ version = "2.3.0"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"
349
+ dependencies = [
350
+ "icu_collections",
351
+ "icu_normalizer_data",
352
+ "icu_properties",
353
+ "icu_provider",
354
+ "smallvec",
355
+ "zerovec",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "icu_normalizer_data"
360
+ version = "2.3.0"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"
363
+
364
+ [[package]]
365
+ name = "icu_properties"
366
+ version = "2.3.0"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
369
+ dependencies = [
370
+ "displaydoc",
371
+ "icu_collections",
372
+ "icu_locale_core",
373
+ "icu_properties_data",
374
+ "icu_provider",
375
+ "zerotrie",
376
+ "zerovec",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "icu_properties_data"
381
+ version = "2.3.0"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
384
+
385
+ [[package]]
386
+ name = "icu_provider"
387
+ version = "2.3.1"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73"
390
+ dependencies = [
391
+ "displaydoc",
392
+ "icu_locale_core",
393
+ "writeable",
394
+ "yoke",
395
+ "zerofrom",
396
+ "zerotrie",
397
+ "zerovec",
398
+ ]
399
+
400
+ [[package]]
401
+ name = "idna"
402
+ version = "1.1.0"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
405
+ dependencies = [
406
+ "idna_adapter",
407
+ "smallvec",
408
+ "utf8_iter",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "idna_adapter"
413
+ version = "1.2.2"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
416
+ dependencies = [
417
+ "icu_normalizer",
418
+ "icu_properties",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "indexmap"
423
+ version = "2.14.1"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "07aa2048142242915a31d35844fb311e0e53fcca590c3a0a40dcf1b841fa09eb"
426
+ dependencies = [
427
+ "equivalent",
428
+ "hashbrown 0.17.1",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "is-macro"
433
+ version = "0.3.8"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "8267aa6001e25494f3015f9663bbd88a18240c74483afa5f0934a1b3e4c388e9"
436
+ dependencies = [
437
+ "heck",
438
+ "proc-macro2",
439
+ "quote",
440
+ "syn 2.0.119",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "itertools"
445
+ version = "0.13.0"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
448
+ dependencies = [
449
+ "either",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "itoa"
454
+ version = "1.0.18"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
457
+
458
+ [[package]]
459
+ name = "lazy_static"
460
+ version = "1.5.0"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
463
+
464
+ [[package]]
465
+ name = "libc"
466
+ version = "0.2.189"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
469
+
470
+ [[package]]
471
+ name = "libloading"
472
+ version = "0.8.9"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
475
+ dependencies = [
476
+ "cfg-if",
477
+ "windows-link",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "litemap"
482
+ version = "0.8.3"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
485
+
486
+ [[package]]
487
+ name = "magnus"
488
+ version = "0.8.2"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
491
+ dependencies = [
492
+ "magnus-macros",
493
+ "rb-sys",
494
+ "rb-sys-env",
495
+ "seq-macro",
496
+ ]
497
+
498
+ [[package]]
499
+ name = "magnus-macros"
500
+ version = "0.8.0"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
503
+ dependencies = [
504
+ "proc-macro2",
505
+ "quote",
506
+ "syn 2.0.119",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "memchr"
511
+ version = "2.8.3"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
514
+
515
+ [[package]]
516
+ name = "minimal-lexical"
517
+ version = "0.2.1"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
520
+
521
+ [[package]]
522
+ name = "native"
523
+ version = "0.0.1"
524
+ dependencies = [
525
+ "magnus",
526
+ "swc_core",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "new_debug_unreachable"
531
+ version = "1.0.6"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
534
+
535
+ [[package]]
536
+ name = "nom"
537
+ version = "7.1.3"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
540
+ dependencies = [
541
+ "memchr",
542
+ "minimal-lexical",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "num-bigint"
547
+ version = "0.4.8"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
550
+ dependencies = [
551
+ "num-integer",
552
+ "num-traits",
553
+ "serde",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "num-integer"
558
+ version = "0.1.47"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
561
+ dependencies = [
562
+ "num-traits",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "num-traits"
567
+ version = "0.2.19"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
570
+ dependencies = [
571
+ "autocfg",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "num_cpus"
576
+ version = "1.17.0"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
579
+ dependencies = [
580
+ "hermit-abi",
581
+ "libc",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "once_cell"
586
+ version = "1.21.4"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
589
+
590
+ [[package]]
591
+ name = "par-core"
592
+ version = "2.0.0"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "e96cbd21255b7fb29a5d51ef38a779b517a91abd59e2756c039583f43ef4c90f"
595
+ dependencies = [
596
+ "once_cell",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "percent-encoding"
601
+ version = "2.3.2"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
604
+
605
+ [[package]]
606
+ name = "phf"
607
+ version = "0.11.3"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
610
+ dependencies = [
611
+ "phf_macros",
612
+ "phf_shared",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "phf_generator"
617
+ version = "0.11.3"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
620
+ dependencies = [
621
+ "phf_shared",
622
+ "rand",
623
+ ]
624
+
625
+ [[package]]
626
+ name = "phf_macros"
627
+ version = "0.11.3"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
630
+ dependencies = [
631
+ "phf_generator",
632
+ "phf_shared",
633
+ "proc-macro2",
634
+ "quote",
635
+ "syn 2.0.119",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "phf_shared"
640
+ version = "0.11.3"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
643
+ dependencies = [
644
+ "siphasher 1.0.3",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "pin-project-lite"
649
+ version = "0.2.17"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
652
+
653
+ [[package]]
654
+ name = "potential_utf"
655
+ version = "0.1.6"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
658
+ dependencies = [
659
+ "zerovec",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "proc-macro2"
664
+ version = "1.0.107"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
667
+ dependencies = [
668
+ "unicode-ident",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "quote"
673
+ version = "1.0.47"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
676
+ dependencies = [
677
+ "proc-macro2",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "rand"
682
+ version = "0.8.8"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c"
685
+ dependencies = [
686
+ "rand_core",
687
+ ]
688
+
689
+ [[package]]
690
+ name = "rand_core"
691
+ version = "0.6.4"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
694
+
695
+ [[package]]
696
+ name = "rb-sys"
697
+ version = "0.9.130"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "02faf625bb10ba893e3ae620f19c9fb1b5f8fcae0fe4eb86bb3f2230fad75edb"
700
+ dependencies = [
701
+ "rb-sys-build",
702
+ ]
703
+
704
+ [[package]]
705
+ name = "rb-sys-build"
706
+ version = "0.9.130"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "05be6f9c86fe5482808162826f6c047d093b3670582296c770de1d94f8066694"
709
+ dependencies = [
710
+ "bindgen",
711
+ "lazy_static",
712
+ "proc-macro2",
713
+ "quote",
714
+ "regex",
715
+ "shell-words",
716
+ "syn 2.0.119",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "rb-sys-env"
721
+ version = "0.2.3"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
724
+
725
+ [[package]]
726
+ name = "regex"
727
+ version = "1.13.1"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
730
+ dependencies = [
731
+ "aho-corasick",
732
+ "memchr",
733
+ "regex-automata",
734
+ "regex-syntax",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "regex-automata"
739
+ version = "0.4.18"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
742
+ dependencies = [
743
+ "aho-corasick",
744
+ "memchr",
745
+ "regex-syntax",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "regex-syntax"
750
+ version = "0.8.11"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
753
+
754
+ [[package]]
755
+ name = "rustc-hash"
756
+ version = "2.1.3"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
759
+
760
+ [[package]]
761
+ name = "rustversion"
762
+ version = "1.0.23"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
765
+
766
+ [[package]]
767
+ name = "ryu"
768
+ version = "1.0.23"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
771
+
772
+ [[package]]
773
+ name = "scoped-tls"
774
+ version = "1.0.1"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
777
+
778
+ [[package]]
779
+ name = "seq-macro"
780
+ version = "0.3.6"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
783
+
784
+ [[package]]
785
+ name = "serde"
786
+ version = "1.0.229"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
789
+ dependencies = [
790
+ "serde_core",
791
+ "serde_derive",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "serde_core"
796
+ version = "1.0.229"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
799
+ dependencies = [
800
+ "serde_derive",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "serde_derive"
805
+ version = "1.0.229"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
808
+ dependencies = [
809
+ "proc-macro2",
810
+ "quote",
811
+ "syn 3.0.4",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "serde_json"
816
+ version = "1.0.151"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
819
+ dependencies = [
820
+ "itoa",
821
+ "memchr",
822
+ "serde",
823
+ "serde_core",
824
+ "zmij",
825
+ ]
826
+
827
+ [[package]]
828
+ name = "sha1"
829
+ version = "0.10.7"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
832
+ dependencies = [
833
+ "cfg-if",
834
+ "cpufeatures",
835
+ "digest",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "shell-words"
840
+ version = "1.1.1"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
843
+
844
+ [[package]]
845
+ name = "shlex"
846
+ version = "1.3.0"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
849
+
850
+ [[package]]
851
+ name = "siphasher"
852
+ version = "0.3.11"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
855
+
856
+ [[package]]
857
+ name = "siphasher"
858
+ version = "1.0.3"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
861
+
862
+ [[package]]
863
+ name = "smallvec"
864
+ version = "1.15.2"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
867
+
868
+ [[package]]
869
+ name = "smartstring"
870
+ version = "1.0.1"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
873
+ dependencies = [
874
+ "autocfg",
875
+ "static_assertions",
876
+ "version_check",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "stable_deref_trait"
881
+ version = "1.2.1"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
884
+
885
+ [[package]]
886
+ name = "static_assertions"
887
+ version = "1.1.0"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
890
+
891
+ [[package]]
892
+ name = "string_enum"
893
+ version = "1.0.2"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "ae36a4951ca7bd1cfd991c241584a9824a70f6aff1e7d4f693fb3f2465e4030e"
896
+ dependencies = [
897
+ "quote",
898
+ "swc_macros_common",
899
+ "syn 2.0.119",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "swc_allocator"
904
+ version = "4.0.1"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "9d7eefd2c8b228a8c73056482b2ae4b3a1071fbe07638e3b55ceca8570cc48bb"
907
+ dependencies = [
908
+ "allocator-api2",
909
+ "bumpalo",
910
+ "hashbrown 0.14.5",
911
+ "rustc-hash",
912
+ ]
913
+
914
+ [[package]]
915
+ name = "swc_atoms"
916
+ version = "9.0.3"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "845f31910b5236db42dba106e8277681098d183b9b65b8dfa88ca8abe464aeff"
919
+ dependencies = [
920
+ "hstr",
921
+ "once_cell",
922
+ "serde",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "swc_common"
927
+ version = "23.0.2"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "176fb11b1abd0a175e8ac47d4b061c5c8a9ae13b9196f30d44fe5db9cb7dfcbd"
930
+ dependencies = [
931
+ "anyhow",
932
+ "ast_node",
933
+ "better_scoped_tls",
934
+ "bytes-str",
935
+ "either",
936
+ "from_variant",
937
+ "num-bigint",
938
+ "once_cell",
939
+ "rustc-hash",
940
+ "serde",
941
+ "siphasher 0.3.11",
942
+ "swc_atoms",
943
+ "swc_eq_ignore_macros",
944
+ "swc_visit",
945
+ "tracing",
946
+ "unicode-width",
947
+ "url",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "swc_config"
952
+ version = "5.0.0"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "6ee60aaa4eaea81fb9c730e64a0b88c363b5c237b774d114c97cba82f8655fdb"
955
+ dependencies = [
956
+ "anyhow",
957
+ "bytes-str",
958
+ "indexmap",
959
+ "serde",
960
+ "serde_json",
961
+ "swc_config_macro",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "swc_config_macro"
966
+ version = "1.0.1"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "7b416e8ce6de17dc5ea496e10c7012b35bbc0e3fef38d2e065eed936490db0b3"
969
+ dependencies = [
970
+ "proc-macro2",
971
+ "quote",
972
+ "swc_macros_common",
973
+ "syn 2.0.119",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "swc_core"
978
+ version = "73.0.0"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "f32ff8b6aad9a785a5861489a62576262e22d702fbc2f2c134e69278b7e934a3"
981
+ dependencies = [
982
+ "swc_allocator",
983
+ "swc_atoms",
984
+ "swc_common",
985
+ "swc_ecma_ast",
986
+ "swc_ecma_codegen",
987
+ "swc_ecma_parser",
988
+ "swc_ecma_transforms_base",
989
+ "swc_ecma_transforms_react",
990
+ "swc_ecma_transforms_typescript",
991
+ "swc_ecma_visit",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "swc_ecma_ast"
996
+ version = "25.0.0"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "a207e09f23885ff1f4354ebfdd4e715ccd4a68fca2e7e0df09baafbca850762e"
999
+ dependencies = [
1000
+ "bitflags",
1001
+ "is-macro",
1002
+ "num-bigint",
1003
+ "once_cell",
1004
+ "phf",
1005
+ "rustc-hash",
1006
+ "string_enum",
1007
+ "swc_atoms",
1008
+ "swc_common",
1009
+ "swc_visit",
1010
+ "unicode-id-start",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "swc_ecma_codegen"
1015
+ version = "28.0.2"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "a5a2fbf46c8cc66e112b6d8226ae0dacc6b983589df6192b38c7669d7721e02a"
1018
+ dependencies = [
1019
+ "ascii",
1020
+ "compact_str",
1021
+ "dragonbox_ecma",
1022
+ "memchr",
1023
+ "num-bigint",
1024
+ "once_cell",
1025
+ "regex",
1026
+ "rustc-hash",
1027
+ "serde",
1028
+ "swc_allocator",
1029
+ "swc_atoms",
1030
+ "swc_common",
1031
+ "swc_ecma_ast",
1032
+ "swc_ecma_codegen_macros",
1033
+ "tracing",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "swc_ecma_codegen_macros"
1038
+ version = "2.0.2"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "e276dc62c0a2625a560397827989c82a93fd545fcf6f7faec0935a82cc4ddbb8"
1041
+ dependencies = [
1042
+ "proc-macro2",
1043
+ "swc_macros_common",
1044
+ "syn 2.0.119",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "swc_ecma_hooks"
1049
+ version = "0.9.0"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "9b3085866c59066b1346b50a70e12f28b9c06e44048370f7b20a25a769be92a0"
1052
+ dependencies = [
1053
+ "swc_atoms",
1054
+ "swc_common",
1055
+ "swc_ecma_ast",
1056
+ "swc_ecma_visit",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "swc_ecma_parser"
1061
+ version = "41.1.2"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "f0f6c9c63026f4d1a70c3c6703446d42ce7b0fe83d4c33b6fe985faf96753f3e"
1064
+ dependencies = [
1065
+ "bitflags",
1066
+ "either",
1067
+ "num-bigint",
1068
+ "phf",
1069
+ "rustc-hash",
1070
+ "seq-macro",
1071
+ "serde",
1072
+ "smartstring",
1073
+ "swc_atoms",
1074
+ "swc_common",
1075
+ "swc_ecma_ast",
1076
+ "tracing",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "swc_ecma_transforms_base"
1081
+ version = "45.0.0"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "b61d73ff2b8c5d023cd97ff0026a50edf4e70f72d6acf93d65d7a6a9bde4a86a"
1084
+ dependencies = [
1085
+ "better_scoped_tls",
1086
+ "indexmap",
1087
+ "once_cell",
1088
+ "par-core",
1089
+ "phf",
1090
+ "rustc-hash",
1091
+ "serde",
1092
+ "swc_atoms",
1093
+ "swc_common",
1094
+ "swc_ecma_ast",
1095
+ "swc_ecma_parser",
1096
+ "swc_ecma_utils",
1097
+ "swc_ecma_visit",
1098
+ "tracing",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "swc_ecma_transforms_react"
1103
+ version = "51.0.0"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "a71661a8f91f22d2dd33add8d08f0bbef0e942868d6fad1e664593c10c9d8f74"
1106
+ dependencies = [
1107
+ "base64",
1108
+ "bytes-str",
1109
+ "indexmap",
1110
+ "once_cell",
1111
+ "rustc-hash",
1112
+ "serde",
1113
+ "sha1",
1114
+ "string_enum",
1115
+ "swc_atoms",
1116
+ "swc_common",
1117
+ "swc_config",
1118
+ "swc_ecma_ast",
1119
+ "swc_ecma_hooks",
1120
+ "swc_ecma_parser",
1121
+ "swc_ecma_transforms_base",
1122
+ "swc_ecma_utils",
1123
+ "swc_ecma_visit",
1124
+ ]
1125
+
1126
+ [[package]]
1127
+ name = "swc_ecma_transforms_typescript"
1128
+ version = "51.0.0"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "74bf3cc7e20997e2918144504ecebc0f0c79af13cfa04feac5a55699e2cb5a5d"
1131
+ dependencies = [
1132
+ "bytes-str",
1133
+ "rustc-hash",
1134
+ "serde",
1135
+ "swc_atoms",
1136
+ "swc_common",
1137
+ "swc_ecma_ast",
1138
+ "swc_ecma_transforms_base",
1139
+ "swc_ecma_transforms_react",
1140
+ "swc_ecma_utils",
1141
+ "swc_ecma_visit",
1142
+ ]
1143
+
1144
+ [[package]]
1145
+ name = "swc_ecma_utils"
1146
+ version = "31.0.2"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "04108a8cd1db73a46e8703e146568e4966b4afbecd238fe5cc4a10bf7e39a42e"
1149
+ dependencies = [
1150
+ "dragonbox_ecma",
1151
+ "indexmap",
1152
+ "num_cpus",
1153
+ "once_cell",
1154
+ "par-core",
1155
+ "rustc-hash",
1156
+ "swc_atoms",
1157
+ "swc_common",
1158
+ "swc_ecma_ast",
1159
+ "swc_ecma_visit",
1160
+ "tracing",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "swc_ecma_visit"
1165
+ version = "25.0.0"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "1f9cb1e958e57fa6427c106674a12190c4578684beee783e3a0508f048d1b372"
1168
+ dependencies = [
1169
+ "new_debug_unreachable",
1170
+ "num-bigint",
1171
+ "swc_atoms",
1172
+ "swc_common",
1173
+ "swc_ecma_ast",
1174
+ "swc_visit",
1175
+ "tracing",
1176
+ ]
1177
+
1178
+ [[package]]
1179
+ name = "swc_eq_ignore_macros"
1180
+ version = "1.0.1"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "c16ce73424a6316e95e09065ba6a207eba7765496fed113702278b7711d4b632"
1183
+ dependencies = [
1184
+ "proc-macro2",
1185
+ "quote",
1186
+ "syn 2.0.119",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "swc_macros_common"
1191
+ version = "1.0.1"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "aae1efbaa74943dc5ad2a2fb16cbd78b77d7e4d63188f3c5b4df2b4dcd2faaae"
1194
+ dependencies = [
1195
+ "proc-macro2",
1196
+ "quote",
1197
+ "syn 2.0.119",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "swc_visit"
1202
+ version = "2.0.2"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "e7df72a1be54e379864cebf04f26abb4d7ee637977f62f8ec8387233f7a27e88"
1205
+ dependencies = [
1206
+ "either",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "syn"
1211
+ version = "2.0.119"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1214
+ dependencies = [
1215
+ "proc-macro2",
1216
+ "quote",
1217
+ "unicode-ident",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "syn"
1222
+ version = "3.0.4"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
1225
+ dependencies = [
1226
+ "proc-macro2",
1227
+ "quote",
1228
+ "unicode-ident",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "synstructure"
1233
+ version = "0.13.2"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1236
+ dependencies = [
1237
+ "proc-macro2",
1238
+ "quote",
1239
+ "syn 2.0.119",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "tinystr"
1244
+ version = "0.8.4"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
1247
+ dependencies = [
1248
+ "displaydoc",
1249
+ "zerovec",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "tracing"
1254
+ version = "0.1.44"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1257
+ dependencies = [
1258
+ "pin-project-lite",
1259
+ "tracing-attributes",
1260
+ "tracing-core",
1261
+ ]
1262
+
1263
+ [[package]]
1264
+ name = "tracing-attributes"
1265
+ version = "0.1.31"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1268
+ dependencies = [
1269
+ "proc-macro2",
1270
+ "quote",
1271
+ "syn 2.0.119",
1272
+ ]
1273
+
1274
+ [[package]]
1275
+ name = "tracing-core"
1276
+ version = "0.1.36"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1279
+ dependencies = [
1280
+ "once_cell",
1281
+ ]
1282
+
1283
+ [[package]]
1284
+ name = "triomphe"
1285
+ version = "0.1.16"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "b40688ea6389c8171614b25491f71d4a27946e0c7ce2da1c6de27e25abf1a0ae"
1288
+ dependencies = [
1289
+ "serde",
1290
+ "stable_deref_trait",
1291
+ ]
1292
+
1293
+ [[package]]
1294
+ name = "typenum"
1295
+ version = "1.20.1"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1298
+
1299
+ [[package]]
1300
+ name = "unicode-id-start"
1301
+ version = "1.4.0"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007"
1304
+
1305
+ [[package]]
1306
+ name = "unicode-ident"
1307
+ version = "1.0.24"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1310
+
1311
+ [[package]]
1312
+ name = "unicode-width"
1313
+ version = "0.2.2"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1316
+
1317
+ [[package]]
1318
+ name = "url"
1319
+ version = "2.5.8"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1322
+ dependencies = [
1323
+ "form_urlencoded",
1324
+ "idna",
1325
+ "percent-encoding",
1326
+ "serde",
1327
+ ]
1328
+
1329
+ [[package]]
1330
+ name = "utf8_iter"
1331
+ version = "1.0.4"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1334
+
1335
+ [[package]]
1336
+ name = "version_check"
1337
+ version = "0.9.5"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1340
+
1341
+ [[package]]
1342
+ name = "windows-link"
1343
+ version = "0.2.1"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1346
+
1347
+ [[package]]
1348
+ name = "writeable"
1349
+ version = "0.6.4"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
1352
+
1353
+ [[package]]
1354
+ name = "yoke"
1355
+ version = "0.8.3"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
1358
+ dependencies = [
1359
+ "stable_deref_trait",
1360
+ "yoke-derive",
1361
+ "zerofrom",
1362
+ ]
1363
+
1364
+ [[package]]
1365
+ name = "yoke-derive"
1366
+ version = "0.8.2"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
1369
+ dependencies = [
1370
+ "proc-macro2",
1371
+ "quote",
1372
+ "syn 2.0.119",
1373
+ "synstructure",
1374
+ ]
1375
+
1376
+ [[package]]
1377
+ name = "zerocopy"
1378
+ version = "0.8.56"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
1381
+ dependencies = [
1382
+ "zerocopy-derive",
1383
+ ]
1384
+
1385
+ [[package]]
1386
+ name = "zerocopy-derive"
1387
+ version = "0.8.56"
1388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1389
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
1390
+ dependencies = [
1391
+ "proc-macro2",
1392
+ "quote",
1393
+ "syn 2.0.119",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "zerofrom"
1398
+ version = "0.1.8"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
1401
+ dependencies = [
1402
+ "zerofrom-derive",
1403
+ ]
1404
+
1405
+ [[package]]
1406
+ name = "zerofrom-derive"
1407
+ version = "0.1.7"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
1410
+ dependencies = [
1411
+ "proc-macro2",
1412
+ "quote",
1413
+ "syn 2.0.119",
1414
+ "synstructure",
1415
+ ]
1416
+
1417
+ [[package]]
1418
+ name = "zerotrie"
1419
+ version = "0.2.5"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
1422
+ dependencies = [
1423
+ "displaydoc",
1424
+ "yoke",
1425
+ "zerofrom",
1426
+ ]
1427
+
1428
+ [[package]]
1429
+ name = "zerovec"
1430
+ version = "0.11.8"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8"
1433
+ dependencies = [
1434
+ "yoke",
1435
+ "zerofrom",
1436
+ "zerovec-derive",
1437
+ ]
1438
+
1439
+ [[package]]
1440
+ name = "zerovec-derive"
1441
+ version = "0.11.6"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da"
1444
+ dependencies = [
1445
+ "proc-macro2",
1446
+ "quote",
1447
+ "syn 3.0.4",
1448
+ ]
1449
+
1450
+ [[package]]
1451
+ name = "zmij"
1452
+ version = "1.0.23"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"