@tarojs/helper 3.7.0-canary.6 → 4.0.0-alpha.0

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.
Files changed (64) hide show
  1. package/dist/constants.d.ts +2 -2
  2. package/dist/constants.js +2 -2
  3. package/dist/utils.d.ts +3 -1
  4. package/dist/utils.js +7 -2
  5. package/dist/utils.js.map +1 -1
  6. package/package.json +2 -2
  7. package/swc/plugin-compile-mode/.cargo/config +5 -0
  8. package/swc/plugin-compile-mode/.editorconfig +6 -0
  9. package/swc/plugin-compile-mode/.vscode/settings.json +3 -0
  10. package/swc/plugin-compile-mode/Cargo.lock +2021 -0
  11. package/swc/plugin-compile-mode/Cargo.toml +22 -0
  12. package/swc/plugin-compile-mode/package.json +15 -0
  13. package/swc/plugin-compile-mode/src/lib.rs +71 -0
  14. package/swc/plugin-compile-mode/src/tests/attributes.rs +54 -0
  15. package/swc/plugin-compile-mode/src/tests/children.rs +86 -0
  16. package/swc/plugin-compile-mode/src/tests/condition.rs +50 -0
  17. package/swc/plugin-compile-mode/src/tests/entry.rs +20 -0
  18. package/swc/plugin-compile-mode/src/tests/harmony/attributes.rs +45 -0
  19. package/swc/plugin-compile-mode/src/tests/harmony/children.rs +74 -0
  20. package/swc/plugin-compile-mode/src/tests/harmony/condition.rs +79 -0
  21. package/swc/plugin-compile-mode/src/tests/harmony/entry.rs +67 -0
  22. package/swc/plugin-compile-mode/src/tests/harmony/looping.rs +62 -0
  23. package/swc/plugin-compile-mode/src/tests/harmony/mod.rs +45 -0
  24. package/swc/plugin-compile-mode/src/tests/looping.rs +84 -0
  25. package/swc/plugin-compile-mode/src/tests/mod.rs +100 -0
  26. package/swc/plugin-compile-mode/src/tests/shake.rs +27 -0
  27. package/swc/plugin-compile-mode/src/transform.rs +474 -0
  28. package/swc/plugin-compile-mode/src/transform_harmony.rs +526 -0
  29. package/swc/plugin-compile-mode/src/utils/constants.rs +152 -0
  30. package/swc/plugin-compile-mode/src/utils/harmony/components.rs +61 -0
  31. package/swc/plugin-compile-mode/src/utils/harmony/mod.rs +1 -0
  32. package/swc/plugin-compile-mode/src/utils/mod.rs +347 -0
  33. package/swc/plugin-compile-mode/target/wasm32-wasi/release/swc_plugin_compile_mode.wasm +0 -0
  34. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/attributes.rs/should_handle_events.js +8 -0
  35. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/attributes.rs/should_keep_static_attrs_only_in_templates.js +8 -0
  36. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/attributes.rs/should_turn_dynamic_attrs.js +11 -0
  37. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/children.rs/should_render_native_component.js +7 -0
  38. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/children.rs/should_render_react_component.js +7 -0
  39. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/children.rs/should_support_fragment.js +44 -0
  40. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/children.rs/should_support_render_fn.js +8 -0
  41. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/condition.rs/should_support_and_expr.js +14 -0
  42. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/condition.rs/should_support_conditional_expr.js +15 -0
  43. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/entry.rs/should_support_multi_compile_mode.js +10 -0
  44. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/attributes.rs/should_handle_events.js +183 -0
  45. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/attributes.rs/should_turn_dynamic_attrs.js +186 -0
  46. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/children.rs/should_render_react_component.js +76 -0
  47. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/children.rs/should_support_fragment.js +341 -0
  48. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/children.rs/should_support_render_fn.js +186 -0
  49. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/condition.rs/should_support_and_expr.js +211 -0
  50. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/condition.rs/should_support_complex_condition.js +244 -0
  51. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/condition.rs/should_support_conditional_and_unkonw_component.js +139 -0
  52. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/condition.rs/should_support_conditional_expr.js +344 -0
  53. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/entry.rs/should_support_compile_child_node.js +141 -0
  54. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/entry.rs/should_support_component_not_in_config.js +91 -0
  55. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/entry.rs/should_support_multi_compile_mode.js +209 -0
  56. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/entry.rs/should_support_single_compile_mode.js +66 -0
  57. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/looping.rs/should_loop_with_arrow_function_with_blockstmt.js +76 -0
  58. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/looping.rs/should_loop_with_arrow_function_with_blockstmt_and_set_parent_dynamic_id.js +89 -0
  59. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/looping.rs/should_loop_with_function_expr.js +86 -0
  60. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/looping.rs/should_loop_with_arrow_function_with_blockstmt.js +8 -0
  61. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/looping.rs/should_loop_with_arrow_function_with_expr.js +6 -0
  62. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/looping.rs/should_loop_with_function_expr.js +20 -0
  63. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/looping.rs/should_support_nested_loop.js +15 -0
  64. package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/shake.rs/should_static_jsx_being_shaked.js +20 -0
@@ -0,0 +1,2021 @@
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.21.0"
18
+ source = "registry+https://github.com/rust-lang/crates.io-index"
19
+ checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
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.7"
33
+ source = "registry+https://github.com/rust-lang/crates.io-index"
34
+ checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd"
35
+ dependencies = [
36
+ "getrandom",
37
+ "once_cell",
38
+ "version_check",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "aho-corasick"
43
+ version = "1.1.2"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
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.75"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
64
+
65
+ [[package]]
66
+ name = "ast_node"
67
+ version = "0.9.5"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "c09c69dffe06d222d072c878c3afe86eee2179806f20503faec97250268b4c24"
70
+ dependencies = [
71
+ "pmutil",
72
+ "proc-macro2",
73
+ "quote",
74
+ "swc_macros_common",
75
+ "syn 2.0.39",
76
+ ]
77
+
78
+ [[package]]
79
+ name = "atty"
80
+ version = "0.2.14"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
83
+ dependencies = [
84
+ "hermit-abi 0.1.19",
85
+ "libc",
86
+ "winapi",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "autocfg"
91
+ version = "1.1.0"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
94
+
95
+ [[package]]
96
+ name = "backtrace"
97
+ version = "0.3.69"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
100
+ dependencies = [
101
+ "addr2line",
102
+ "cc",
103
+ "cfg-if",
104
+ "libc",
105
+ "miniz_oxide",
106
+ "object",
107
+ "rustc-demangle",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "base64"
112
+ version = "0.13.1"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
115
+
116
+ [[package]]
117
+ name = "better_scoped_tls"
118
+ version = "0.1.1"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "794edcc9b3fb07bb4aecaa11f093fd45663b4feadb782d68303a2268bc2701de"
121
+ dependencies = [
122
+ "scoped-tls",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "bitflags"
127
+ version = "1.3.2"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
130
+
131
+ [[package]]
132
+ name = "bitflags"
133
+ version = "2.4.1"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
136
+
137
+ [[package]]
138
+ name = "bitvec"
139
+ version = "1.0.1"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
142
+ dependencies = [
143
+ "funty",
144
+ "radium",
145
+ "tap",
146
+ "wyz",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "block-buffer"
151
+ version = "0.10.4"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
154
+ dependencies = [
155
+ "generic-array",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "bytecheck"
160
+ version = "0.6.11"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627"
163
+ dependencies = [
164
+ "bytecheck_derive",
165
+ "ptr_meta",
166
+ "simdutf8",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "bytecheck_derive"
171
+ version = "0.6.11"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61"
174
+ dependencies = [
175
+ "proc-macro2",
176
+ "quote",
177
+ "syn 1.0.109",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "camino"
182
+ version = "1.1.6"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c"
185
+ dependencies = [
186
+ "serde",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "cargo-platform"
191
+ version = "0.1.4"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "12024c4645c97566567129c204f65d5815a8c9aecf30fcbe682b2fe034996d36"
194
+ dependencies = [
195
+ "serde",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "cargo_metadata"
200
+ version = "0.15.4"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a"
203
+ dependencies = [
204
+ "camino",
205
+ "cargo-platform",
206
+ "semver 1.0.20",
207
+ "serde",
208
+ "serde_json",
209
+ "thiserror",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "cc"
214
+ version = "1.0.83"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
217
+ dependencies = [
218
+ "libc",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "cfg-if"
223
+ version = "1.0.0"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
226
+
227
+ [[package]]
228
+ name = "cpufeatures"
229
+ version = "0.2.11"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0"
232
+ dependencies = [
233
+ "libc",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "crypto-common"
238
+ version = "0.1.6"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
241
+ dependencies = [
242
+ "generic-array",
243
+ "typenum",
244
+ ]
245
+
246
+ [[package]]
247
+ name = "data-encoding"
248
+ version = "2.4.0"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308"
251
+
252
+ [[package]]
253
+ name = "debugid"
254
+ version = "0.8.0"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
257
+ dependencies = [
258
+ "serde",
259
+ "uuid",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "deranged"
264
+ version = "0.3.9"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3"
267
+ dependencies = [
268
+ "powerfmt",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "diff"
273
+ version = "0.1.13"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
276
+
277
+ [[package]]
278
+ name = "difference"
279
+ version = "2.0.0"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
282
+
283
+ [[package]]
284
+ name = "digest"
285
+ version = "0.10.7"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
288
+ dependencies = [
289
+ "block-buffer",
290
+ "crypto-common",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "either"
295
+ version = "1.9.0"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
298
+
299
+ [[package]]
300
+ name = "enum-iterator"
301
+ version = "1.4.1"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "7add3873b5dd076766ee79c8e406ad1a472c385476b9e38849f8eec24f1be689"
304
+ dependencies = [
305
+ "enum-iterator-derive",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "enum-iterator-derive"
310
+ version = "1.2.1"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "eecf8589574ce9b895052fa12d69af7a233f99e6107f5cb8dd1044f2a17bfdcb"
313
+ dependencies = [
314
+ "proc-macro2",
315
+ "quote",
316
+ "syn 2.0.39",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "errno"
321
+ version = "0.3.7"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "f258a7194e7f7c2a7837a8913aeab7fd8c383457034fa20ce4dd3dcb813e8eb8"
324
+ dependencies = [
325
+ "libc",
326
+ "windows-sys",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "fastrand"
331
+ version = "2.0.1"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
334
+
335
+ [[package]]
336
+ name = "form_urlencoded"
337
+ version = "1.2.0"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
340
+ dependencies = [
341
+ "percent-encoding",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "from_variant"
346
+ version = "0.1.6"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "03ec5dc38ee19078d84a692b1c41181ff9f94331c76cee66ff0208c770b5e54f"
349
+ dependencies = [
350
+ "pmutil",
351
+ "proc-macro2",
352
+ "swc_macros_common",
353
+ "syn 2.0.39",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "funty"
358
+ version = "2.0.0"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
361
+
362
+ [[package]]
363
+ name = "generic-array"
364
+ version = "0.14.7"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
367
+ dependencies = [
368
+ "typenum",
369
+ "version_check",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "getrandom"
374
+ version = "0.2.11"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
377
+ dependencies = [
378
+ "cfg-if",
379
+ "libc",
380
+ "wasi",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "getset"
385
+ version = "0.1.2"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "e45727250e75cc04ff2846a66397da8ef2b3db8e40e0cef4df67950a07621eb9"
388
+ dependencies = [
389
+ "proc-macro-error",
390
+ "proc-macro2",
391
+ "quote",
392
+ "syn 1.0.109",
393
+ ]
394
+
395
+ [[package]]
396
+ name = "gimli"
397
+ version = "0.28.0"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"
400
+
401
+ [[package]]
402
+ name = "glob"
403
+ version = "0.3.1"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
406
+
407
+ [[package]]
408
+ name = "hashbrown"
409
+ version = "0.12.3"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
412
+ dependencies = [
413
+ "ahash",
414
+ ]
415
+
416
+ [[package]]
417
+ name = "hermit-abi"
418
+ version = "0.1.19"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
421
+ dependencies = [
422
+ "libc",
423
+ ]
424
+
425
+ [[package]]
426
+ name = "hermit-abi"
427
+ version = "0.3.3"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
430
+
431
+ [[package]]
432
+ name = "hex"
433
+ version = "0.4.3"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
436
+
437
+ [[package]]
438
+ name = "hstr"
439
+ version = "0.2.6"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "de90d3db62411eb62eddabe402d706ac4970f7ac8d088c05f11069cad9be9857"
442
+ dependencies = [
443
+ "new_debug_unreachable",
444
+ "once_cell",
445
+ "phf",
446
+ "rustc-hash",
447
+ "smallvec",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "idna"
452
+ version = "0.4.0"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
455
+ dependencies = [
456
+ "unicode-bidi",
457
+ "unicode-normalization",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "if_chain"
462
+ version = "1.0.2"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed"
465
+
466
+ [[package]]
467
+ name = "indexmap"
468
+ version = "1.9.3"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
471
+ dependencies = [
472
+ "autocfg",
473
+ "hashbrown",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "is-macro"
478
+ version = "0.3.0"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "f4467ed1321b310c2625c5aa6c1b1ffc5de4d9e42668cf697a08fb033ee8265e"
481
+ dependencies = [
482
+ "Inflector",
483
+ "pmutil",
484
+ "proc-macro2",
485
+ "quote",
486
+ "syn 2.0.39",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "is_ci"
491
+ version = "1.1.1"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb"
494
+
495
+ [[package]]
496
+ name = "itoa"
497
+ version = "1.0.9"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
500
+
501
+ [[package]]
502
+ name = "lazy_static"
503
+ version = "1.4.0"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
506
+
507
+ [[package]]
508
+ name = "libc"
509
+ version = "0.2.150"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c"
512
+
513
+ [[package]]
514
+ name = "linux-raw-sys"
515
+ version = "0.4.11"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829"
518
+
519
+ [[package]]
520
+ name = "lock_api"
521
+ version = "0.4.11"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
524
+ dependencies = [
525
+ "autocfg",
526
+ "scopeguard",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "log"
531
+ version = "0.4.20"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
534
+
535
+ [[package]]
536
+ name = "matchers"
537
+ version = "0.1.0"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
540
+ dependencies = [
541
+ "regex-automata 0.1.10",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "memchr"
546
+ version = "2.6.4"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
549
+
550
+ [[package]]
551
+ name = "miette"
552
+ version = "4.7.1"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "1c90329e44f9208b55f45711f9558cec15d7ef8295cc65ecd6d4188ae8edc58c"
555
+ dependencies = [
556
+ "atty",
557
+ "backtrace",
558
+ "miette-derive",
559
+ "once_cell",
560
+ "owo-colors",
561
+ "supports-color",
562
+ "supports-hyperlinks",
563
+ "supports-unicode",
564
+ "terminal_size",
565
+ "textwrap",
566
+ "thiserror",
567
+ "unicode-width",
568
+ ]
569
+
570
+ [[package]]
571
+ name = "miette-derive"
572
+ version = "4.7.1"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "6b5bc45b761bcf1b5e6e6c4128cd93b84c218721a8d9b894aa0aff4ed180174c"
575
+ dependencies = [
576
+ "proc-macro2",
577
+ "quote",
578
+ "syn 1.0.109",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "miniz_oxide"
583
+ version = "0.7.1"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
586
+ dependencies = [
587
+ "adler",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "new_debug_unreachable"
592
+ version = "1.0.4"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
595
+
596
+ [[package]]
597
+ name = "nu-ansi-term"
598
+ version = "0.46.0"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
601
+ dependencies = [
602
+ "overload",
603
+ "winapi",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "num-bigint"
608
+ version = "0.4.4"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
611
+ dependencies = [
612
+ "autocfg",
613
+ "num-integer",
614
+ "num-traits",
615
+ "serde",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "num-integer"
620
+ version = "0.1.45"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
623
+ dependencies = [
624
+ "autocfg",
625
+ "num-traits",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "num-traits"
630
+ version = "0.2.17"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
633
+ dependencies = [
634
+ "autocfg",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "num_cpus"
639
+ version = "1.16.0"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
642
+ dependencies = [
643
+ "hermit-abi 0.3.3",
644
+ "libc",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "object"
649
+ version = "0.32.1"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"
652
+ dependencies = [
653
+ "memchr",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "once_cell"
658
+ version = "1.18.0"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
661
+
662
+ [[package]]
663
+ name = "overload"
664
+ version = "0.1.1"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
667
+
668
+ [[package]]
669
+ name = "owo-colors"
670
+ version = "3.5.0"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
673
+
674
+ [[package]]
675
+ name = "parking_lot"
676
+ version = "0.12.1"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
679
+ dependencies = [
680
+ "lock_api",
681
+ "parking_lot_core",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "parking_lot_core"
686
+ version = "0.9.9"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
689
+ dependencies = [
690
+ "cfg-if",
691
+ "libc",
692
+ "redox_syscall",
693
+ "smallvec",
694
+ "windows-targets",
695
+ ]
696
+
697
+ [[package]]
698
+ name = "percent-encoding"
699
+ version = "2.3.0"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
702
+
703
+ [[package]]
704
+ name = "phf"
705
+ version = "0.11.2"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
708
+ dependencies = [
709
+ "phf_macros",
710
+ "phf_shared",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "phf_generator"
715
+ version = "0.11.2"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
718
+ dependencies = [
719
+ "phf_shared",
720
+ "rand",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "phf_macros"
725
+ version = "0.11.2"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
728
+ dependencies = [
729
+ "phf_generator",
730
+ "phf_shared",
731
+ "proc-macro2",
732
+ "quote",
733
+ "syn 2.0.39",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "phf_shared"
738
+ version = "0.11.2"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
741
+ dependencies = [
742
+ "siphasher",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "pin-project-lite"
747
+ version = "0.2.13"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
750
+
751
+ [[package]]
752
+ name = "pmutil"
753
+ version = "0.6.1"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "52a40bc70c2c58040d2d8b167ba9a5ff59fc9dab7ad44771cfde3dcfde7a09c6"
756
+ dependencies = [
757
+ "proc-macro2",
758
+ "quote",
759
+ "syn 2.0.39",
760
+ ]
761
+
762
+ [[package]]
763
+ name = "powerfmt"
764
+ version = "0.2.0"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
767
+
768
+ [[package]]
769
+ name = "pretty_assertions"
770
+ version = "1.4.0"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66"
773
+ dependencies = [
774
+ "diff",
775
+ "yansi",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "proc-macro-error"
780
+ version = "1.0.4"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
783
+ dependencies = [
784
+ "proc-macro-error-attr",
785
+ "proc-macro2",
786
+ "quote",
787
+ "syn 1.0.109",
788
+ "version_check",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "proc-macro-error-attr"
793
+ version = "1.0.4"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
796
+ dependencies = [
797
+ "proc-macro2",
798
+ "quote",
799
+ "version_check",
800
+ ]
801
+
802
+ [[package]]
803
+ name = "proc-macro2"
804
+ version = "1.0.69"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da"
807
+ dependencies = [
808
+ "unicode-ident",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "psm"
813
+ version = "0.1.21"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874"
816
+ dependencies = [
817
+ "cc",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "ptr_meta"
822
+ version = "0.1.4"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
825
+ dependencies = [
826
+ "ptr_meta_derive",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "ptr_meta_derive"
831
+ version = "0.1.4"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
834
+ dependencies = [
835
+ "proc-macro2",
836
+ "quote",
837
+ "syn 1.0.109",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "quote"
842
+ version = "1.0.33"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
845
+ dependencies = [
846
+ "proc-macro2",
847
+ ]
848
+
849
+ [[package]]
850
+ name = "radium"
851
+ version = "0.7.0"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
854
+
855
+ [[package]]
856
+ name = "rand"
857
+ version = "0.8.5"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
860
+ dependencies = [
861
+ "rand_core",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "rand_core"
866
+ version = "0.6.4"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
869
+
870
+ [[package]]
871
+ name = "redox_syscall"
872
+ version = "0.4.1"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
875
+ dependencies = [
876
+ "bitflags 1.3.2",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "regex"
881
+ version = "1.10.2"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
884
+ dependencies = [
885
+ "aho-corasick",
886
+ "memchr",
887
+ "regex-automata 0.4.3",
888
+ "regex-syntax 0.8.2",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "regex-automata"
893
+ version = "0.1.10"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
896
+ dependencies = [
897
+ "regex-syntax 0.6.29",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "regex-automata"
902
+ version = "0.4.3"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
905
+ dependencies = [
906
+ "aho-corasick",
907
+ "memchr",
908
+ "regex-syntax 0.8.2",
909
+ ]
910
+
911
+ [[package]]
912
+ name = "regex-syntax"
913
+ version = "0.6.29"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
916
+
917
+ [[package]]
918
+ name = "regex-syntax"
919
+ version = "0.8.2"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
922
+
923
+ [[package]]
924
+ name = "relative-path"
925
+ version = "1.9.0"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "c707298afce11da2efef2f600116fa93ffa7a032b5d7b628aa17711ec81383ca"
928
+
929
+ [[package]]
930
+ name = "rend"
931
+ version = "0.4.1"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "a2571463863a6bd50c32f94402933f03457a3fbaf697a707c5be741e459f08fd"
934
+ dependencies = [
935
+ "bytecheck",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "rkyv"
940
+ version = "0.7.42"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58"
943
+ dependencies = [
944
+ "bitvec",
945
+ "bytecheck",
946
+ "hashbrown",
947
+ "ptr_meta",
948
+ "rend",
949
+ "rkyv_derive",
950
+ "seahash",
951
+ "tinyvec",
952
+ "uuid",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "rkyv_derive"
957
+ version = "0.7.42"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d"
960
+ dependencies = [
961
+ "proc-macro2",
962
+ "quote",
963
+ "syn 1.0.109",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "rustc-demangle"
968
+ version = "0.1.23"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
971
+
972
+ [[package]]
973
+ name = "rustc-hash"
974
+ version = "1.1.0"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
977
+
978
+ [[package]]
979
+ name = "rustc_version"
980
+ version = "0.2.3"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
983
+ dependencies = [
984
+ "semver 0.9.0",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "rustix"
989
+ version = "0.38.24"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "9ad981d6c340a49cdc40a1028d9c6084ec7e9fa33fcb839cab656a267071e234"
992
+ dependencies = [
993
+ "bitflags 2.4.1",
994
+ "errno",
995
+ "libc",
996
+ "linux-raw-sys",
997
+ "windows-sys",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "rustversion"
1002
+ version = "1.0.14"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
1005
+
1006
+ [[package]]
1007
+ name = "ryu"
1008
+ version = "1.0.15"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
1011
+
1012
+ [[package]]
1013
+ name = "scoped-tls"
1014
+ version = "1.0.1"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
1017
+
1018
+ [[package]]
1019
+ name = "scopeguard"
1020
+ version = "1.2.0"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1023
+
1024
+ [[package]]
1025
+ name = "seahash"
1026
+ version = "4.1.0"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
1029
+
1030
+ [[package]]
1031
+ name = "semver"
1032
+ version = "0.9.0"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
1035
+ dependencies = [
1036
+ "semver-parser",
1037
+ ]
1038
+
1039
+ [[package]]
1040
+ name = "semver"
1041
+ version = "1.0.20"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090"
1044
+ dependencies = [
1045
+ "serde",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "semver-parser"
1050
+ version = "0.7.0"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
1053
+
1054
+ [[package]]
1055
+ name = "serde"
1056
+ version = "1.0.192"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "bca2a08484b285dcb282d0f67b26cadc0df8b19f8c12502c13d966bf9482f001"
1059
+ dependencies = [
1060
+ "serde_derive",
1061
+ ]
1062
+
1063
+ [[package]]
1064
+ name = "serde_derive"
1065
+ version = "1.0.192"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "d6c7207fbec9faa48073f3e3074cbe553af6ea512d7c21ba46e434e70ea9fbc1"
1068
+ dependencies = [
1069
+ "proc-macro2",
1070
+ "quote",
1071
+ "syn 2.0.39",
1072
+ ]
1073
+
1074
+ [[package]]
1075
+ name = "serde_json"
1076
+ version = "1.0.108"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"
1079
+ dependencies = [
1080
+ "itoa",
1081
+ "ryu",
1082
+ "serde",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "sha-1"
1087
+ version = "0.10.1"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c"
1090
+ dependencies = [
1091
+ "cfg-if",
1092
+ "cpufeatures",
1093
+ "digest",
1094
+ ]
1095
+
1096
+ [[package]]
1097
+ name = "sharded-slab"
1098
+ version = "0.1.7"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1101
+ dependencies = [
1102
+ "lazy_static",
1103
+ ]
1104
+
1105
+ [[package]]
1106
+ name = "simdutf8"
1107
+ version = "0.1.4"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
1110
+
1111
+ [[package]]
1112
+ name = "siphasher"
1113
+ version = "0.3.11"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
1116
+
1117
+ [[package]]
1118
+ name = "smallvec"
1119
+ version = "1.11.2"
1120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1121
+ checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
1122
+
1123
+ [[package]]
1124
+ name = "smartstring"
1125
+ version = "1.0.1"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
1128
+ dependencies = [
1129
+ "autocfg",
1130
+ "static_assertions",
1131
+ "version_check",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "smawk"
1136
+ version = "0.3.2"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
1139
+
1140
+ [[package]]
1141
+ name = "sourcemap"
1142
+ version = "6.4.1"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "e4cbf65ca7dc576cf50e21f8d0712d96d4fcfd797389744b7b222a85cdf5bd90"
1145
+ dependencies = [
1146
+ "data-encoding",
1147
+ "debugid",
1148
+ "if_chain",
1149
+ "rustc_version",
1150
+ "serde",
1151
+ "serde_json",
1152
+ "unicode-id",
1153
+ "url",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "stacker"
1158
+ version = "0.1.15"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce"
1161
+ dependencies = [
1162
+ "cc",
1163
+ "cfg-if",
1164
+ "libc",
1165
+ "psm",
1166
+ "winapi",
1167
+ ]
1168
+
1169
+ [[package]]
1170
+ name = "static_assertions"
1171
+ version = "1.1.0"
1172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1173
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1174
+
1175
+ [[package]]
1176
+ name = "string_enum"
1177
+ version = "0.4.1"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "8fa4d4f81d7c05b9161f8de839975d3326328b8ba2831164b465524cc2f55252"
1180
+ dependencies = [
1181
+ "pmutil",
1182
+ "proc-macro2",
1183
+ "quote",
1184
+ "swc_macros_common",
1185
+ "syn 2.0.39",
1186
+ ]
1187
+
1188
+ [[package]]
1189
+ name = "supports-color"
1190
+ version = "1.3.1"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "8ba6faf2ca7ee42fdd458f4347ae0a9bd6bcc445ad7cb57ad82b383f18870d6f"
1193
+ dependencies = [
1194
+ "atty",
1195
+ "is_ci",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "supports-hyperlinks"
1200
+ version = "1.2.0"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "590b34f7c5f01ecc9d78dba4b3f445f31df750a67621cf31626f3b7441ce6406"
1203
+ dependencies = [
1204
+ "atty",
1205
+ ]
1206
+
1207
+ [[package]]
1208
+ name = "supports-unicode"
1209
+ version = "1.0.2"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "a8b945e45b417b125a8ec51f1b7df2f8df7920367700d1f98aedd21e5735f8b2"
1212
+ dependencies = [
1213
+ "atty",
1214
+ ]
1215
+
1216
+ [[package]]
1217
+ name = "swc_atoms"
1218
+ version = "0.6.4"
1219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1220
+ checksum = "b8a9e1b6d97f27b6abe5571f8fe3bdbd2fa987299fc2126450c7cde6214896ef"
1221
+ dependencies = [
1222
+ "bytecheck",
1223
+ "hstr",
1224
+ "once_cell",
1225
+ "rkyv",
1226
+ "rustc-hash",
1227
+ "serde",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "swc_common"
1232
+ version = "0.33.9"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "5ccb656cd57c93614e4e8b33a60e75ca095383565c1a8d2bbe6a1103942831e0"
1235
+ dependencies = [
1236
+ "anyhow",
1237
+ "ast_node",
1238
+ "atty",
1239
+ "better_scoped_tls",
1240
+ "bytecheck",
1241
+ "cfg-if",
1242
+ "either",
1243
+ "from_variant",
1244
+ "new_debug_unreachable",
1245
+ "num-bigint",
1246
+ "once_cell",
1247
+ "parking_lot",
1248
+ "rkyv",
1249
+ "rustc-hash",
1250
+ "serde",
1251
+ "siphasher",
1252
+ "sourcemap",
1253
+ "swc_atoms",
1254
+ "swc_eq_ignore_macros",
1255
+ "swc_visit",
1256
+ "termcolor",
1257
+ "tracing",
1258
+ "unicode-width",
1259
+ "url",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "swc_core"
1264
+ version = "0.86.65"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "2b52c6d48b61d8f9f5aed41133fba8f8f30be1b1a237a596c6bdb659e338cc03"
1267
+ dependencies = [
1268
+ "once_cell",
1269
+ "swc_atoms",
1270
+ "swc_common",
1271
+ "swc_ecma_ast",
1272
+ "swc_ecma_codegen",
1273
+ "swc_ecma_parser",
1274
+ "swc_ecma_transforms_base",
1275
+ "swc_ecma_transforms_testing",
1276
+ "swc_ecma_utils",
1277
+ "swc_ecma_visit",
1278
+ "swc_plugin",
1279
+ "swc_plugin_macro",
1280
+ "swc_plugin_proxy",
1281
+ "vergen",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "swc_ecma_ast"
1286
+ version = "0.110.10"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "2c3d416121da2d56bcbd1b1623725a68890af4552fef0c6d1e4bfa92776ccd6a"
1289
+ dependencies = [
1290
+ "bitflags 2.4.1",
1291
+ "bytecheck",
1292
+ "is-macro",
1293
+ "num-bigint",
1294
+ "phf",
1295
+ "rkyv",
1296
+ "scoped-tls",
1297
+ "string_enum",
1298
+ "swc_atoms",
1299
+ "swc_common",
1300
+ "unicode-id",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "swc_ecma_codegen"
1305
+ version = "0.146.29"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "ea4947cb3618b243127faf16ea3d12f59d9f31e9a53f3ce02e141e13920ec1b5"
1308
+ dependencies = [
1309
+ "memchr",
1310
+ "num-bigint",
1311
+ "once_cell",
1312
+ "rustc-hash",
1313
+ "serde",
1314
+ "sourcemap",
1315
+ "swc_atoms",
1316
+ "swc_common",
1317
+ "swc_ecma_ast",
1318
+ "swc_ecma_codegen_macros",
1319
+ "tracing",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "swc_ecma_codegen_macros"
1324
+ version = "0.7.3"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "dcdff076dccca6cc6a0e0b2a2c8acfb066014382bc6df98ec99e755484814384"
1327
+ dependencies = [
1328
+ "pmutil",
1329
+ "proc-macro2",
1330
+ "quote",
1331
+ "swc_macros_common",
1332
+ "syn 2.0.39",
1333
+ ]
1334
+
1335
+ [[package]]
1336
+ name = "swc_ecma_parser"
1337
+ version = "0.141.23"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "9cc89c175ed17c7f795fb18cf778a5745ecd794ad19c4662f85843d7571957a8"
1340
+ dependencies = [
1341
+ "either",
1342
+ "new_debug_unreachable",
1343
+ "num-bigint",
1344
+ "num-traits",
1345
+ "phf",
1346
+ "serde",
1347
+ "smallvec",
1348
+ "smartstring",
1349
+ "stacker",
1350
+ "swc_atoms",
1351
+ "swc_common",
1352
+ "swc_ecma_ast",
1353
+ "tracing",
1354
+ "typed-arena",
1355
+ ]
1356
+
1357
+ [[package]]
1358
+ name = "swc_ecma_testing"
1359
+ version = "0.22.11"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "40ae9e4a7deca72765c1d63fa6b0b3b41919187e4dd4ce99d57e348a2411b57f"
1362
+ dependencies = [
1363
+ "anyhow",
1364
+ "hex",
1365
+ "sha-1",
1366
+ "testing",
1367
+ "tracing",
1368
+ ]
1369
+
1370
+ [[package]]
1371
+ name = "swc_ecma_transforms_base"
1372
+ version = "0.134.38"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "589b4d4598d61a0a074d66a1bfd44ce1a6974b8b4095fd7f891dd44a688c3a52"
1375
+ dependencies = [
1376
+ "better_scoped_tls",
1377
+ "bitflags 2.4.1",
1378
+ "indexmap",
1379
+ "once_cell",
1380
+ "phf",
1381
+ "rustc-hash",
1382
+ "serde",
1383
+ "smallvec",
1384
+ "swc_atoms",
1385
+ "swc_common",
1386
+ "swc_ecma_ast",
1387
+ "swc_ecma_parser",
1388
+ "swc_ecma_utils",
1389
+ "swc_ecma_visit",
1390
+ "tracing",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "swc_ecma_transforms_testing"
1395
+ version = "0.137.40"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "c2689e4be2e5a6e5a5a7ae3f477d5184ad6f5c3f592c315cc2a9b0943731a9a9"
1398
+ dependencies = [
1399
+ "ansi_term",
1400
+ "anyhow",
1401
+ "base64",
1402
+ "hex",
1403
+ "serde",
1404
+ "serde_json",
1405
+ "sha-1",
1406
+ "sourcemap",
1407
+ "swc_common",
1408
+ "swc_ecma_ast",
1409
+ "swc_ecma_codegen",
1410
+ "swc_ecma_parser",
1411
+ "swc_ecma_testing",
1412
+ "swc_ecma_transforms_base",
1413
+ "swc_ecma_utils",
1414
+ "swc_ecma_visit",
1415
+ "tempfile",
1416
+ "testing",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "swc_ecma_utils"
1421
+ version = "0.124.29"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "d5d9434862c93aadda0b539847a5fdb82624472deed788333b35caf281773931"
1424
+ dependencies = [
1425
+ "indexmap",
1426
+ "num_cpus",
1427
+ "once_cell",
1428
+ "rustc-hash",
1429
+ "swc_atoms",
1430
+ "swc_common",
1431
+ "swc_ecma_ast",
1432
+ "swc_ecma_visit",
1433
+ "tracing",
1434
+ "unicode-id",
1435
+ ]
1436
+
1437
+ [[package]]
1438
+ name = "swc_ecma_visit"
1439
+ version = "0.96.10"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "ba962f0becf83bab12a17365dface5a4f636c9e1743d479e292b96910a753743"
1442
+ dependencies = [
1443
+ "num-bigint",
1444
+ "swc_atoms",
1445
+ "swc_common",
1446
+ "swc_ecma_ast",
1447
+ "swc_visit",
1448
+ "tracing",
1449
+ ]
1450
+
1451
+ [[package]]
1452
+ name = "swc_eq_ignore_macros"
1453
+ version = "0.1.2"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "05a95d367e228d52484c53336991fdcf47b6b553ef835d9159db4ba40efb0ee8"
1456
+ dependencies = [
1457
+ "pmutil",
1458
+ "proc-macro2",
1459
+ "quote",
1460
+ "syn 2.0.39",
1461
+ ]
1462
+
1463
+ [[package]]
1464
+ name = "swc_error_reporters"
1465
+ version = "0.17.9"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "d29add35412af288be50e1012bbb825a66871bb2b4d960d1c456917ec3ccea32"
1468
+ dependencies = [
1469
+ "anyhow",
1470
+ "miette",
1471
+ "once_cell",
1472
+ "parking_lot",
1473
+ "swc_common",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "swc_macros_common"
1478
+ version = "0.3.8"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "7a273205ccb09b51fabe88c49f3b34c5a4631c4c00a16ae20e03111d6a42e832"
1481
+ dependencies = [
1482
+ "pmutil",
1483
+ "proc-macro2",
1484
+ "quote",
1485
+ "syn 2.0.39",
1486
+ ]
1487
+
1488
+ [[package]]
1489
+ name = "swc_plugin"
1490
+ version = "0.90.0"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "ca5df720531bfbd7ceb1139319c39c20c446abfb8f7e0eb47b104205a71152b4"
1493
+ dependencies = [
1494
+ "once_cell",
1495
+ ]
1496
+
1497
+ [[package]]
1498
+ name = "swc_plugin_compile_mode"
1499
+ version = "0.1.0"
1500
+ dependencies = [
1501
+ "serde",
1502
+ "serde_json",
1503
+ "swc_core",
1504
+ ]
1505
+
1506
+ [[package]]
1507
+ name = "swc_plugin_macro"
1508
+ version = "0.9.15"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "785309d342a69df4c929ee59e14e36889ca832f1d2a3c1d03c47c93126c72dbc"
1511
+ dependencies = [
1512
+ "proc-macro2",
1513
+ "quote",
1514
+ "syn 2.0.39",
1515
+ ]
1516
+
1517
+ [[package]]
1518
+ name = "swc_plugin_proxy"
1519
+ version = "0.39.10"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "f10904ed792a38bae2810ed9ca781a2e5d62c369b2f83843255bde1141a32502"
1522
+ dependencies = [
1523
+ "better_scoped_tls",
1524
+ "rkyv",
1525
+ "swc_common",
1526
+ "swc_ecma_ast",
1527
+ "swc_trace_macro",
1528
+ "tracing",
1529
+ ]
1530
+
1531
+ [[package]]
1532
+ name = "swc_trace_macro"
1533
+ version = "0.1.3"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "ff9719b6085dd2824fd61938a881937be14b08f95e2d27c64c825a9f65e052ba"
1536
+ dependencies = [
1537
+ "proc-macro2",
1538
+ "quote",
1539
+ "syn 2.0.39",
1540
+ ]
1541
+
1542
+ [[package]]
1543
+ name = "swc_visit"
1544
+ version = "0.5.7"
1545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1546
+ checksum = "e87c337fbb2d191bf371173dea6a957f01899adb8f189c6c31b122a6cfc98fc3"
1547
+ dependencies = [
1548
+ "either",
1549
+ "swc_visit_macros",
1550
+ ]
1551
+
1552
+ [[package]]
1553
+ name = "swc_visit_macros"
1554
+ version = "0.5.8"
1555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1556
+ checksum = "0f322730fb82f3930a450ac24de8c98523af7d34ab8cb2f46bcb405839891a99"
1557
+ dependencies = [
1558
+ "Inflector",
1559
+ "pmutil",
1560
+ "proc-macro2",
1561
+ "quote",
1562
+ "swc_macros_common",
1563
+ "syn 2.0.39",
1564
+ ]
1565
+
1566
+ [[package]]
1567
+ name = "syn"
1568
+ version = "1.0.109"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1571
+ dependencies = [
1572
+ "proc-macro2",
1573
+ "quote",
1574
+ "unicode-ident",
1575
+ ]
1576
+
1577
+ [[package]]
1578
+ name = "syn"
1579
+ version = "2.0.39"
1580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1581
+ checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a"
1582
+ dependencies = [
1583
+ "proc-macro2",
1584
+ "quote",
1585
+ "unicode-ident",
1586
+ ]
1587
+
1588
+ [[package]]
1589
+ name = "tap"
1590
+ version = "1.0.1"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1593
+
1594
+ [[package]]
1595
+ name = "tempfile"
1596
+ version = "3.8.1"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5"
1599
+ dependencies = [
1600
+ "cfg-if",
1601
+ "fastrand",
1602
+ "redox_syscall",
1603
+ "rustix",
1604
+ "windows-sys",
1605
+ ]
1606
+
1607
+ [[package]]
1608
+ name = "termcolor"
1609
+ version = "1.4.0"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449"
1612
+ dependencies = [
1613
+ "winapi-util",
1614
+ ]
1615
+
1616
+ [[package]]
1617
+ name = "terminal_size"
1618
+ version = "0.1.17"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
1621
+ dependencies = [
1622
+ "libc",
1623
+ "winapi",
1624
+ ]
1625
+
1626
+ [[package]]
1627
+ name = "testing"
1628
+ version = "0.35.11"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "528fe2b00056f8a214476c599708f70a09c8b6634d4f6e2f9d78e0d1d37f4057"
1631
+ dependencies = [
1632
+ "ansi_term",
1633
+ "cargo_metadata",
1634
+ "difference",
1635
+ "once_cell",
1636
+ "pretty_assertions",
1637
+ "regex",
1638
+ "serde",
1639
+ "serde_json",
1640
+ "swc_common",
1641
+ "swc_error_reporters",
1642
+ "testing_macros",
1643
+ "tracing",
1644
+ "tracing-subscriber",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "testing_macros"
1649
+ version = "0.2.11"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "d1c15b796025051a07f1ac695ee0cac0883f05a0d510c9d171ef8d31a992e6a5"
1652
+ dependencies = [
1653
+ "anyhow",
1654
+ "glob",
1655
+ "once_cell",
1656
+ "pmutil",
1657
+ "proc-macro2",
1658
+ "quote",
1659
+ "regex",
1660
+ "relative-path",
1661
+ "syn 2.0.39",
1662
+ ]
1663
+
1664
+ [[package]]
1665
+ name = "textwrap"
1666
+ version = "0.15.2"
1667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1668
+ checksum = "b7b3e525a49ec206798b40326a44121291b530c963cfb01018f63e135bac543d"
1669
+ dependencies = [
1670
+ "smawk",
1671
+ "unicode-linebreak",
1672
+ "unicode-width",
1673
+ ]
1674
+
1675
+ [[package]]
1676
+ name = "thiserror"
1677
+ version = "1.0.50"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2"
1680
+ dependencies = [
1681
+ "thiserror-impl",
1682
+ ]
1683
+
1684
+ [[package]]
1685
+ name = "thiserror-impl"
1686
+ version = "1.0.50"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8"
1689
+ dependencies = [
1690
+ "proc-macro2",
1691
+ "quote",
1692
+ "syn 2.0.39",
1693
+ ]
1694
+
1695
+ [[package]]
1696
+ name = "thread_local"
1697
+ version = "1.1.7"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
1700
+ dependencies = [
1701
+ "cfg-if",
1702
+ "once_cell",
1703
+ ]
1704
+
1705
+ [[package]]
1706
+ name = "time"
1707
+ version = "0.3.30"
1708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1709
+ checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5"
1710
+ dependencies = [
1711
+ "deranged",
1712
+ "itoa",
1713
+ "powerfmt",
1714
+ "serde",
1715
+ "time-core",
1716
+ "time-macros",
1717
+ ]
1718
+
1719
+ [[package]]
1720
+ name = "time-core"
1721
+ version = "0.1.2"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
1724
+
1725
+ [[package]]
1726
+ name = "time-macros"
1727
+ version = "0.2.15"
1728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1729
+ checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20"
1730
+ dependencies = [
1731
+ "time-core",
1732
+ ]
1733
+
1734
+ [[package]]
1735
+ name = "tinyvec"
1736
+ version = "1.6.0"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
1739
+ dependencies = [
1740
+ "tinyvec_macros",
1741
+ ]
1742
+
1743
+ [[package]]
1744
+ name = "tinyvec_macros"
1745
+ version = "0.1.1"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1748
+
1749
+ [[package]]
1750
+ name = "tracing"
1751
+ version = "0.1.40"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
1754
+ dependencies = [
1755
+ "pin-project-lite",
1756
+ "tracing-attributes",
1757
+ "tracing-core",
1758
+ ]
1759
+
1760
+ [[package]]
1761
+ name = "tracing-attributes"
1762
+ version = "0.1.27"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
1765
+ dependencies = [
1766
+ "proc-macro2",
1767
+ "quote",
1768
+ "syn 2.0.39",
1769
+ ]
1770
+
1771
+ [[package]]
1772
+ name = "tracing-core"
1773
+ version = "0.1.32"
1774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1775
+ checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
1776
+ dependencies = [
1777
+ "once_cell",
1778
+ "valuable",
1779
+ ]
1780
+
1781
+ [[package]]
1782
+ name = "tracing-log"
1783
+ version = "0.2.0"
1784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1785
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1786
+ dependencies = [
1787
+ "log",
1788
+ "once_cell",
1789
+ "tracing-core",
1790
+ ]
1791
+
1792
+ [[package]]
1793
+ name = "tracing-subscriber"
1794
+ version = "0.3.18"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
1797
+ dependencies = [
1798
+ "matchers",
1799
+ "nu-ansi-term",
1800
+ "once_cell",
1801
+ "regex",
1802
+ "sharded-slab",
1803
+ "smallvec",
1804
+ "thread_local",
1805
+ "tracing",
1806
+ "tracing-core",
1807
+ "tracing-log",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "typed-arena"
1812
+ version = "2.0.2"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
1815
+
1816
+ [[package]]
1817
+ name = "typenum"
1818
+ version = "1.17.0"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
1821
+
1822
+ [[package]]
1823
+ name = "unicode-bidi"
1824
+ version = "0.3.13"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
1827
+
1828
+ [[package]]
1829
+ name = "unicode-id"
1830
+ version = "0.3.4"
1831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1832
+ checksum = "b1b6def86329695390197b82c1e244a54a131ceb66c996f2088a3876e2ae083f"
1833
+
1834
+ [[package]]
1835
+ name = "unicode-ident"
1836
+ version = "1.0.12"
1837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1838
+ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
1839
+
1840
+ [[package]]
1841
+ name = "unicode-linebreak"
1842
+ version = "0.1.5"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
1845
+
1846
+ [[package]]
1847
+ name = "unicode-normalization"
1848
+ version = "0.1.22"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
1851
+ dependencies = [
1852
+ "tinyvec",
1853
+ ]
1854
+
1855
+ [[package]]
1856
+ name = "unicode-width"
1857
+ version = "0.1.11"
1858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1859
+ checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
1860
+
1861
+ [[package]]
1862
+ name = "url"
1863
+ version = "2.4.1"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5"
1866
+ dependencies = [
1867
+ "form_urlencoded",
1868
+ "idna",
1869
+ "percent-encoding",
1870
+ ]
1871
+
1872
+ [[package]]
1873
+ name = "uuid"
1874
+ version = "1.5.0"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc"
1877
+
1878
+ [[package]]
1879
+ name = "valuable"
1880
+ version = "0.1.0"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
1883
+
1884
+ [[package]]
1885
+ name = "vergen"
1886
+ version = "7.5.1"
1887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1888
+ checksum = "f21b881cd6636ece9735721cf03c1fe1e774fe258683d084bb2812ab67435749"
1889
+ dependencies = [
1890
+ "anyhow",
1891
+ "cfg-if",
1892
+ "enum-iterator",
1893
+ "getset",
1894
+ "rustversion",
1895
+ "thiserror",
1896
+ "time",
1897
+ ]
1898
+
1899
+ [[package]]
1900
+ name = "version_check"
1901
+ version = "0.9.4"
1902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1903
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
1904
+
1905
+ [[package]]
1906
+ name = "wasi"
1907
+ version = "0.11.0+wasi-snapshot-preview1"
1908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1909
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1910
+
1911
+ [[package]]
1912
+ name = "winapi"
1913
+ version = "0.3.9"
1914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1915
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1916
+ dependencies = [
1917
+ "winapi-i686-pc-windows-gnu",
1918
+ "winapi-x86_64-pc-windows-gnu",
1919
+ ]
1920
+
1921
+ [[package]]
1922
+ name = "winapi-i686-pc-windows-gnu"
1923
+ version = "0.4.0"
1924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1925
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1926
+
1927
+ [[package]]
1928
+ name = "winapi-util"
1929
+ version = "0.1.6"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
1932
+ dependencies = [
1933
+ "winapi",
1934
+ ]
1935
+
1936
+ [[package]]
1937
+ name = "winapi-x86_64-pc-windows-gnu"
1938
+ version = "0.4.0"
1939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1940
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1941
+
1942
+ [[package]]
1943
+ name = "windows-sys"
1944
+ version = "0.48.0"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1947
+ dependencies = [
1948
+ "windows-targets",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "windows-targets"
1953
+ version = "0.48.5"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1956
+ dependencies = [
1957
+ "windows_aarch64_gnullvm",
1958
+ "windows_aarch64_msvc",
1959
+ "windows_i686_gnu",
1960
+ "windows_i686_msvc",
1961
+ "windows_x86_64_gnu",
1962
+ "windows_x86_64_gnullvm",
1963
+ "windows_x86_64_msvc",
1964
+ ]
1965
+
1966
+ [[package]]
1967
+ name = "windows_aarch64_gnullvm"
1968
+ version = "0.48.5"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1971
+
1972
+ [[package]]
1973
+ name = "windows_aarch64_msvc"
1974
+ version = "0.48.5"
1975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1976
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1977
+
1978
+ [[package]]
1979
+ name = "windows_i686_gnu"
1980
+ version = "0.48.5"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1983
+
1984
+ [[package]]
1985
+ name = "windows_i686_msvc"
1986
+ version = "0.48.5"
1987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1988
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1989
+
1990
+ [[package]]
1991
+ name = "windows_x86_64_gnu"
1992
+ version = "0.48.5"
1993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1994
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1995
+
1996
+ [[package]]
1997
+ name = "windows_x86_64_gnullvm"
1998
+ version = "0.48.5"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2001
+
2002
+ [[package]]
2003
+ name = "windows_x86_64_msvc"
2004
+ version = "0.48.5"
2005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2006
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2007
+
2008
+ [[package]]
2009
+ name = "wyz"
2010
+ version = "0.5.1"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
2013
+ dependencies = [
2014
+ "tap",
2015
+ ]
2016
+
2017
+ [[package]]
2018
+ name = "yansi"
2019
+ version = "0.5.1"
2020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
+ checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"