oxc 0.1.0-arm-linux-gnu

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 (56) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +437 -0
  4. data/ext/oxc/extconf.rb +123 -0
  5. data/ext/oxc/include/oxc.h +40 -0
  6. data/ext/oxc/oxc.c +136 -0
  7. data/lib/oxc/3.2/oxc.so +0 -0
  8. data/lib/oxc/3.3/oxc.so +0 -0
  9. data/lib/oxc/3.4/oxc.so +0 -0
  10. data/lib/oxc/4.0/oxc.so +0 -0
  11. data/lib/oxc/backend.rb +41 -0
  12. data/lib/oxc/diagnosed.rb +33 -0
  13. data/lib/oxc/diagnostic.rb +86 -0
  14. data/lib/oxc/errors.rb +26 -0
  15. data/lib/oxc/minifier.rb +31 -0
  16. data/lib/oxc/minify_result.rb +25 -0
  17. data/lib/oxc/options.rb +113 -0
  18. data/lib/oxc/parse_result.rb +106 -0
  19. data/lib/oxc/result.rb +51 -0
  20. data/lib/oxc/transform_result.rb +47 -0
  21. data/lib/oxc/transformer.rb +31 -0
  22. data/lib/oxc/version.rb +5 -0
  23. data/lib/oxc.rb +52 -0
  24. data/licenses/README.md +12 -0
  25. data/licenses/oxc-MIT.txt +22 -0
  26. data/licenses/oxc-THIRD-PARTY.txt +763 -0
  27. data/oxc.gemspec +43 -0
  28. data/rust/Cargo.lock +1436 -0
  29. data/rust/Cargo.toml +32 -0
  30. data/rust/build.rs +52 -0
  31. data/rust/cbindgen.toml +24 -0
  32. data/rust/rustfmt.toml +3 -0
  33. data/rust/src/diagnostic.rs +75 -0
  34. data/rust/src/lib.rs +288 -0
  35. data/rust/src/module_record.rs +262 -0
  36. data/rust/src/options.rs +744 -0
  37. data/rust/src/parse.rs +93 -0
  38. data/rust/src/result.rs +55 -0
  39. data/rust/src/source_type.rs +26 -0
  40. data/rust/src/symbols.rs +101 -0
  41. data/rust/src/transform.rs +116 -0
  42. data/sig/oxc/backend.rbs +29 -0
  43. data/sig/oxc/diagnosed.rbs +23 -0
  44. data/sig/oxc/diagnostic.rbs +57 -0
  45. data/sig/oxc/errors.rbs +31 -0
  46. data/sig/oxc/minifier.rbs +21 -0
  47. data/sig/oxc/minify_result.rbs +11 -0
  48. data/sig/oxc/options.rbs +42 -0
  49. data/sig/oxc/parse_result.rbs +61 -0
  50. data/sig/oxc/result.rbs +32 -0
  51. data/sig/oxc/transform_result.rbs +22 -0
  52. data/sig/oxc/transformer.rbs +21 -0
  53. data/sig/oxc/types.rbs +96 -0
  54. data/sig/oxc/version.rbs +5 -0
  55. data/sig/oxc.rbs +15 -0
  56. metadata +107 -0
data/rust/Cargo.lock ADDED
@@ -0,0 +1,1436 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.5"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "allocator-api2"
22
+ version = "0.2.21"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
25
+
26
+ [[package]]
27
+ name = "anstream"
28
+ version = "1.0.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
31
+ dependencies = [
32
+ "anstyle",
33
+ "anstyle-parse",
34
+ "anstyle-query",
35
+ "anstyle-wincon",
36
+ "colorchoice",
37
+ "is_terminal_polyfill",
38
+ "utf8parse",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "anstyle"
43
+ version = "1.0.14"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
46
+
47
+ [[package]]
48
+ name = "anstyle-parse"
49
+ version = "1.0.0"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
52
+ dependencies = [
53
+ "utf8parse",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "anstyle-query"
58
+ version = "1.1.5"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
61
+ dependencies = [
62
+ "windows-sys",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "anstyle-wincon"
67
+ version = "3.0.11"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
70
+ dependencies = [
71
+ "anstyle",
72
+ "once_cell_polyfill",
73
+ "windows-sys",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "autocfg"
78
+ version = "1.5.1"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
81
+
82
+ [[package]]
83
+ name = "base64"
84
+ version = "0.23.1"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
87
+
88
+ [[package]]
89
+ name = "base64-simd"
90
+ version = "0.8.0"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
93
+ dependencies = [
94
+ "outref",
95
+ "vsimd",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "bitflags"
100
+ version = "2.13.1"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
103
+ dependencies = [
104
+ "serde_core",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "bumpalo"
109
+ version = "3.20.3"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
112
+
113
+ [[package]]
114
+ name = "bytecount"
115
+ version = "0.6.9"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
118
+
119
+ [[package]]
120
+ name = "castaway"
121
+ version = "0.2.4"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
124
+ dependencies = [
125
+ "rustversion",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "cbindgen"
130
+ version = "0.28.0"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "eadd868a2ce9ca38de7eeafdcec9c7065ef89b42b32f0839278d55f35c54d1ff"
133
+ dependencies = [
134
+ "clap",
135
+ "heck",
136
+ "indexmap",
137
+ "log",
138
+ "proc-macro2",
139
+ "quote",
140
+ "serde",
141
+ "serde_json",
142
+ "syn 2.0.119",
143
+ "tempfile",
144
+ "toml",
145
+ ]
146
+
147
+ [[package]]
148
+ name = "cfg-if"
149
+ version = "1.0.4"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
152
+
153
+ [[package]]
154
+ name = "clap"
155
+ version = "4.6.6"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
158
+ dependencies = [
159
+ "clap_builder",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "clap_builder"
164
+ version = "4.6.6"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
167
+ dependencies = [
168
+ "anstream",
169
+ "anstyle",
170
+ "clap_lex",
171
+ "strsim",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "clap_lex"
176
+ version = "1.1.0"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
179
+
180
+ [[package]]
181
+ name = "cobs"
182
+ version = "0.3.0"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
185
+ dependencies = [
186
+ "thiserror",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "colorchoice"
191
+ version = "1.0.5"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
194
+
195
+ [[package]]
196
+ name = "compact_str"
197
+ version = "0.10.0"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "79fcda08c33bb58b97008b2cdada6622500e949e060f5913361763121abd2416"
200
+ dependencies = [
201
+ "castaway",
202
+ "cfg-if",
203
+ "itoa",
204
+ "serde",
205
+ "static_assertions",
206
+ "zmij",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "cow-utils"
211
+ version = "0.1.3"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
214
+
215
+ [[package]]
216
+ name = "dragonbox_ecma"
217
+ version = "0.1.12"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "fd8e701084c37e7ef62d3f9e453b618130cbc0ef3573847785952a3ac3f746bf"
220
+
221
+ [[package]]
222
+ name = "either"
223
+ version = "1.18.0"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
226
+
227
+ [[package]]
228
+ name = "embedded-io"
229
+ version = "0.4.0"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
232
+
233
+ [[package]]
234
+ name = "embedded-io"
235
+ version = "0.6.1"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
238
+
239
+ [[package]]
240
+ name = "equivalent"
241
+ version = "1.0.2"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
244
+
245
+ [[package]]
246
+ name = "errno"
247
+ version = "0.3.14"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
250
+ dependencies = [
251
+ "libc",
252
+ "windows-sys",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "fastrand"
257
+ version = "2.5.0"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
260
+
261
+ [[package]]
262
+ name = "futures-core"
263
+ version = "0.3.34"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
266
+
267
+ [[package]]
268
+ name = "futures-task"
269
+ version = "0.3.34"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
272
+
273
+ [[package]]
274
+ name = "futures-util"
275
+ version = "0.3.34"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
278
+ dependencies = [
279
+ "futures-core",
280
+ "futures-task",
281
+ "pin-project-lite",
282
+ "slab",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "getrandom"
287
+ version = "0.4.3"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
290
+ dependencies = [
291
+ "cfg-if",
292
+ "libc",
293
+ "r-efi",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "hashbrown"
298
+ version = "0.17.1"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
301
+ dependencies = [
302
+ "allocator-api2",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "heck"
307
+ version = "0.4.1"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
310
+
311
+ [[package]]
312
+ name = "hmac-sha1-compact"
313
+ version = "1.1.7"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "b0b3ba31f6dc772cc8221ce81dbbbd64fa1e668255a6737d95eeace59b5a8823"
316
+
317
+ [[package]]
318
+ name = "indexmap"
319
+ version = "2.14.0"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
322
+ dependencies = [
323
+ "equivalent",
324
+ "hashbrown",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "is_terminal_polyfill"
329
+ version = "1.70.2"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
332
+
333
+ [[package]]
334
+ name = "itertools"
335
+ version = "0.15.0"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
338
+ dependencies = [
339
+ "either",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "itoa"
344
+ version = "1.0.18"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
347
+
348
+ [[package]]
349
+ name = "js-sys"
350
+ version = "0.3.104"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
353
+ dependencies = [
354
+ "cfg-if",
355
+ "futures-util",
356
+ "wasm-bindgen",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "json-escape-simd"
361
+ version = "3.1.1"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "c22a2041e3874a055a4eb03ea2395aaccdefa84ce75b31d542d72a741c3c6ad3"
364
+
365
+ [[package]]
366
+ name = "lazy-regex"
367
+ version = "3.6.1"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "4994ba703f78b083e2f7946dac9251abd83fd43a0365f030e99b69be5b4b9ef9"
370
+ dependencies = [
371
+ "lazy-regex-proc_macros",
372
+ "once_cell",
373
+ "regex",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "lazy-regex-proc_macros"
378
+ version = "3.6.1"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "fd97232314824e6dbef1918a871bb93f51070455e3715bf26e19a6d01aa977a0"
381
+ dependencies = [
382
+ "proc-macro2",
383
+ "quote",
384
+ "regex",
385
+ "syn 2.0.119",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "libc"
390
+ version = "0.2.189"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
393
+
394
+ [[package]]
395
+ name = "linux-raw-sys"
396
+ version = "0.12.1"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
399
+
400
+ [[package]]
401
+ name = "log"
402
+ version = "0.4.34"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
405
+
406
+ [[package]]
407
+ name = "memchr"
408
+ version = "2.8.3"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
411
+
412
+ [[package]]
413
+ name = "miniz_oxide"
414
+ version = "0.9.1"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "b63fbc4a50860e98e7b2aa7804ded1db5cbc3aff9193adaff57a6931bf7c4b4c"
417
+ dependencies = [
418
+ "adler2",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "nonmax"
423
+ version = "0.5.5"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
426
+
427
+ [[package]]
428
+ name = "num-bigint"
429
+ version = "0.5.1"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "93e7820bc0a80a0238e650327316f929ba18d5be054b647490a3a6a339f3e7c0"
432
+ dependencies = [
433
+ "num-integer",
434
+ "num-traits",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "num-integer"
439
+ version = "0.1.47"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
442
+ dependencies = [
443
+ "num-traits",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "num-traits"
448
+ version = "0.2.19"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
451
+ dependencies = [
452
+ "autocfg",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "once_cell"
457
+ version = "1.21.4"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
460
+
461
+ [[package]]
462
+ name = "once_cell_polyfill"
463
+ version = "1.70.2"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
466
+
467
+ [[package]]
468
+ name = "outref"
469
+ version = "0.5.2"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
472
+
473
+ [[package]]
474
+ name = "owo-colors"
475
+ version = "4.3.0"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d"
478
+
479
+ [[package]]
480
+ name = "oxc"
481
+ version = "0.147.0"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "db297a5e119706ad508114ec9065a8a13d154efc14d830d3a1effb0b69cbd5eb"
484
+ dependencies = [
485
+ "oxc_allocator",
486
+ "oxc_ast",
487
+ "oxc_ast_visit",
488
+ "oxc_codegen",
489
+ "oxc_diagnostics",
490
+ "oxc_isolated_declarations",
491
+ "oxc_mangler",
492
+ "oxc_minifier",
493
+ "oxc_parser",
494
+ "oxc_regular_expression",
495
+ "oxc_semantic",
496
+ "oxc_span",
497
+ "oxc_str",
498
+ "oxc_syntax",
499
+ "oxc_transformer",
500
+ "oxc_transformer_plugins",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "oxc-browserslist"
505
+ version = "5.0.1"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "456720daa870e4f69f8d29fded1c8deea82da4780a6b8553baa160eb0cd8d864"
508
+ dependencies = [
509
+ "js-sys",
510
+ "libc",
511
+ "miniz_oxide",
512
+ "postcard",
513
+ "rustc-hash",
514
+ "serde",
515
+ "thiserror",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "oxc-ruby-ffi"
520
+ version = "0.1.0"
521
+ dependencies = [
522
+ "cbindgen",
523
+ "oxc",
524
+ "oxc_sourcemap",
525
+ "serde",
526
+ "serde_json",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "oxc_allocator"
531
+ version = "0.147.0"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "c4e69b2400ab3c2f96eb3ae474ed80fa3a2959ba05e26afc5df45e634fc9a071"
534
+ dependencies = [
535
+ "allocator-api2",
536
+ "hashbrown",
537
+ "oxc_data_structures",
538
+ "oxc_estree",
539
+ "rustc-hash",
540
+ "serde",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "oxc_ast"
545
+ version = "0.147.0"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "3dcf0e905263cc649c07e3494489de620462390de12cb2b5933247f91785a421"
548
+ dependencies = [
549
+ "bitflags",
550
+ "oxc_allocator",
551
+ "oxc_ast_macros",
552
+ "oxc_data_structures",
553
+ "oxc_diagnostics",
554
+ "oxc_estree",
555
+ "oxc_regular_expression",
556
+ "oxc_span",
557
+ "oxc_str",
558
+ "oxc_syntax",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "oxc_ast_macros"
563
+ version = "0.147.0"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "aa520723c19e83bcc683a988ac77d56bbca4b88178d5fc6c0c89fb73a45893cf"
566
+ dependencies = [
567
+ "phf",
568
+ "proc-macro2",
569
+ "quote",
570
+ "syn 3.0.4",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "oxc_ast_visit"
575
+ version = "0.147.0"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "7bcdfe65eec7cc091e52f73ea7f6546375a2dd5b88c43900afc94dafffebfb8c"
578
+ dependencies = [
579
+ "oxc_allocator",
580
+ "oxc_ast",
581
+ "oxc_span",
582
+ "oxc_syntax",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "oxc_codegen"
587
+ version = "0.147.0"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "bd265be822054de498537a8df29f0afef75f9e804f9c499c81c0ec8c9b9212bd"
590
+ dependencies = [
591
+ "bitflags",
592
+ "cow-utils",
593
+ "oxc_allocator",
594
+ "oxc_ast",
595
+ "oxc_data_structures",
596
+ "oxc_ecmascript",
597
+ "oxc_index",
598
+ "oxc_semantic",
599
+ "oxc_sourcemap",
600
+ "oxc_span",
601
+ "oxc_str",
602
+ "oxc_syntax",
603
+ "rustc-hash",
604
+ "smallvec",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "oxc_compat"
609
+ version = "0.147.0"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "970fe81a0a43846ebe37c9250f3a1948e984ba79cbdf866681fd117dffe27e3d"
612
+ dependencies = [
613
+ "cow-utils",
614
+ "oxc-browserslist",
615
+ "oxc_syntax",
616
+ "rustc-hash",
617
+ "serde",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "oxc_data_structures"
622
+ version = "0.147.0"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "e7903e8f1f76f148c943b5a2e192bf908d600b5fe0df1efc77ebeb75591ace56"
625
+ dependencies = [
626
+ "ropey",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "oxc_diagnostics"
631
+ version = "0.147.0"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "acb70f89da6524e6a2d097f0d747f14731156996ee5400474ef19ad3f318646b"
634
+ dependencies = [
635
+ "bytecount",
636
+ "cow-utils",
637
+ "itoa",
638
+ "memchr",
639
+ "owo-colors",
640
+ "oxc_span",
641
+ "percent-encoding",
642
+ "smallvec",
643
+ "textwrap",
644
+ "unicode-segmentation",
645
+ "unicode-width",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "oxc_ecmascript"
650
+ version = "0.147.0"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "9f1fdd494072a511d7df691282dbd4fe656ad6fd0bea24d4366c019ed1172a4f"
653
+ dependencies = [
654
+ "cow-utils",
655
+ "dragonbox_ecma",
656
+ "itoa",
657
+ "num-bigint",
658
+ "num-traits",
659
+ "oxc_allocator",
660
+ "oxc_ast",
661
+ "oxc_compat",
662
+ "oxc_data_structures",
663
+ "oxc_regular_expression",
664
+ "oxc_span",
665
+ "oxc_syntax",
666
+ "smallvec",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "oxc_estree"
671
+ version = "0.147.0"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "e2ef8cdc8d02a7e0b91ee51a2572963c914d3bb38261e11a54d068a092c4dc42"
674
+ dependencies = [
675
+ "dragonbox_ecma",
676
+ "itoa",
677
+ "oxc_data_structures",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "oxc_index"
682
+ version = "5.0.0"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "191884bee6c3744909a51acc7d78d4ae370d817b25875b10642f632327b6296e"
685
+ dependencies = [
686
+ "nonmax",
687
+ "serde",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "oxc_isolated_declarations"
692
+ version = "0.147.0"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "88fe41a07cb943168e10efb18a3f5f56ffbb70c7eb6ef42d89de203cca5a73a3"
695
+ dependencies = [
696
+ "bitflags",
697
+ "oxc_allocator",
698
+ "oxc_ast",
699
+ "oxc_ast_visit",
700
+ "oxc_diagnostics",
701
+ "oxc_ecmascript",
702
+ "oxc_span",
703
+ "oxc_str",
704
+ "oxc_syntax",
705
+ "rustc-hash",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "oxc_mangler"
710
+ version = "0.147.0"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "efa851c466fb09783764de87e93fa44c27c2d0b918dbaa8b0a0364aca15b2f44"
713
+ dependencies = [
714
+ "itertools",
715
+ "oxc_allocator",
716
+ "oxc_ast",
717
+ "oxc_data_structures",
718
+ "oxc_ecmascript",
719
+ "oxc_index",
720
+ "oxc_semantic",
721
+ "oxc_span",
722
+ "oxc_str",
723
+ "oxc_syntax",
724
+ "rustc-hash",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "oxc_minifier"
729
+ version = "0.147.0"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "4bba5313adecd3682455f4a830e26cfcd751ac8f9423ca95f93d7b8dcdee807c"
732
+ dependencies = [
733
+ "cow-utils",
734
+ "itoa",
735
+ "lazy-regex",
736
+ "oxc_allocator",
737
+ "oxc_ast",
738
+ "oxc_ast_visit",
739
+ "oxc_compat",
740
+ "oxc_data_structures",
741
+ "oxc_ecmascript",
742
+ "oxc_index",
743
+ "oxc_mangler",
744
+ "oxc_parser",
745
+ "oxc_semantic",
746
+ "oxc_span",
747
+ "oxc_str",
748
+ "oxc_syntax",
749
+ "oxc_traverse",
750
+ "rustc-hash",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "oxc_parser"
755
+ version = "0.147.0"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "12a55bfce994289467c88ed9732dbc4c8f03f3186af2b77e48dc4a71c502cb2c"
758
+ dependencies = [
759
+ "bitflags",
760
+ "cow-utils",
761
+ "memchr",
762
+ "num-bigint",
763
+ "num-traits",
764
+ "oxc_allocator",
765
+ "oxc_ast",
766
+ "oxc_data_structures",
767
+ "oxc_diagnostics",
768
+ "oxc_ecmascript",
769
+ "oxc_regular_expression",
770
+ "oxc_span",
771
+ "oxc_str",
772
+ "oxc_syntax",
773
+ "rustc-hash",
774
+ "seq-macro",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "oxc_regular_expression"
779
+ version = "0.147.0"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "d8455a292e58e24a0c51cfa2ec1d44e219e22d59a04b9af1ae050d4944a19d51"
782
+ dependencies = [
783
+ "bitflags",
784
+ "oxc_allocator",
785
+ "oxc_ast_macros",
786
+ "oxc_diagnostics",
787
+ "oxc_span",
788
+ "oxc_str",
789
+ "phf",
790
+ "rustc-hash",
791
+ "unicode-id-start",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "oxc_semantic"
796
+ version = "0.147.0"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "b9c35fc29f969e7f93ee41dc37c9d82816e9c2597495f6cc302477831c8fd2ed"
799
+ dependencies = [
800
+ "itertools",
801
+ "memchr",
802
+ "oxc_allocator",
803
+ "oxc_ast",
804
+ "oxc_ast_visit",
805
+ "oxc_data_structures",
806
+ "oxc_diagnostics",
807
+ "oxc_ecmascript",
808
+ "oxc_index",
809
+ "oxc_span",
810
+ "oxc_str",
811
+ "oxc_syntax",
812
+ "rustc-hash",
813
+ "self_cell",
814
+ "smallvec",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "oxc_sourcemap"
819
+ version = "8.1.2"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "b415102a94b483bbd76d13e850fe87961197e5795c79a8523ebec5d82025f94f"
822
+ dependencies = [
823
+ "base64-simd",
824
+ "json-escape-simd",
825
+ "rustc-hash",
826
+ "serde",
827
+ "serde_json",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "oxc_span"
832
+ version = "0.147.0"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "378737bf42338e31badcdae2e6e2afc7a63cb7ffe82c418ac12d506c554adda4"
835
+ dependencies = [
836
+ "compact_str",
837
+ "oxc_allocator",
838
+ "oxc_ast_macros",
839
+ "oxc_estree",
840
+ "oxc_str",
841
+ "serde",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "oxc_str"
846
+ version = "0.147.0"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "8564a0269f93153f856100db908af25434efdd1ec9d403ffa099cdab57385c8c"
849
+ dependencies = [
850
+ "compact_str",
851
+ "hashbrown",
852
+ "oxc_allocator",
853
+ "oxc_estree",
854
+ "serde",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "oxc_syntax"
859
+ version = "0.147.0"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "59f05978138676c9d54f021391409fcf1314a46adcdbbaabc670c2990f8387dd"
862
+ dependencies = [
863
+ "bitflags",
864
+ "cow-utils",
865
+ "dragonbox_ecma",
866
+ "nonmax",
867
+ "oxc_allocator",
868
+ "oxc_ast_macros",
869
+ "oxc_estree",
870
+ "oxc_index",
871
+ "oxc_span",
872
+ "oxc_str",
873
+ "phf",
874
+ "serde",
875
+ "unicode-id-start",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "oxc_transformer"
880
+ version = "0.147.0"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "2e4443b3e36410882b44ed13e415ef8ddc3d31e6786d03f5a0e486e4c1d18090"
883
+ dependencies = [
884
+ "base64",
885
+ "compact_str",
886
+ "hmac-sha1-compact",
887
+ "indexmap",
888
+ "itoa",
889
+ "memchr",
890
+ "oxc_allocator",
891
+ "oxc_ast",
892
+ "oxc_ast_visit",
893
+ "oxc_compat",
894
+ "oxc_data_structures",
895
+ "oxc_diagnostics",
896
+ "oxc_ecmascript",
897
+ "oxc_regular_expression",
898
+ "oxc_semantic",
899
+ "oxc_span",
900
+ "oxc_str",
901
+ "oxc_syntax",
902
+ "oxc_traverse",
903
+ "rustc-hash",
904
+ "serde",
905
+ "serde_json",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "oxc_transformer_plugins"
910
+ version = "0.147.0"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "f9db3729caa06dcea2f4a2a50a045c4e6148be0b579b3108ac181145f212fb0d"
913
+ dependencies = [
914
+ "cow-utils",
915
+ "itoa",
916
+ "oxc_allocator",
917
+ "oxc_ast",
918
+ "oxc_ast_visit",
919
+ "oxc_diagnostics",
920
+ "oxc_ecmascript",
921
+ "oxc_parser",
922
+ "oxc_semantic",
923
+ "oxc_span",
924
+ "oxc_str",
925
+ "oxc_syntax",
926
+ "oxc_transformer",
927
+ "oxc_traverse",
928
+ "rustc-hash",
929
+ ]
930
+
931
+ [[package]]
932
+ name = "oxc_traverse"
933
+ version = "0.147.0"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "02a3cc8f1a31a1b08104ede1a6631dfc984282234249f4503f51f4d2b22036e4"
936
+ dependencies = [
937
+ "itoa",
938
+ "oxc_allocator",
939
+ "oxc_ast",
940
+ "oxc_ast_visit",
941
+ "oxc_data_structures",
942
+ "oxc_ecmascript",
943
+ "oxc_semantic",
944
+ "oxc_span",
945
+ "oxc_str",
946
+ "oxc_syntax",
947
+ "rustc-hash",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "percent-encoding"
952
+ version = "2.3.2"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
955
+
956
+ [[package]]
957
+ name = "phf"
958
+ version = "0.14.0"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "010378780309880b08997fae13be7834dba947d36393bd372f2b1556deb2a2f6"
961
+ dependencies = [
962
+ "phf_macros",
963
+ "phf_shared",
964
+ "serde",
965
+ ]
966
+
967
+ [[package]]
968
+ name = "phf_generator"
969
+ version = "0.14.0"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "aeb62e0959d5a1bebc965f4d15d9e2b7cea002b6b0f5ba8cde6cc26738467100"
972
+ dependencies = [
973
+ "fastrand",
974
+ "phf_shared",
975
+ ]
976
+
977
+ [[package]]
978
+ name = "phf_macros"
979
+ version = "0.14.0"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "5fa8d0ca26d424d27630da600c6624696e7dec8bf7b3b492b383c5dc49e5e085"
982
+ dependencies = [
983
+ "phf_generator",
984
+ "phf_shared",
985
+ "proc-macro2",
986
+ "quote",
987
+ "syn 2.0.119",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "phf_shared"
992
+ version = "0.14.0"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "c6fd9027e2d9319be6349febd1db4e8d02aa544921200c9b777720ac34a3aa89"
995
+ dependencies = [
996
+ "siphasher",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "pin-project-lite"
1001
+ version = "0.2.17"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1004
+
1005
+ [[package]]
1006
+ name = "postcard"
1007
+ version = "1.1.3"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
1010
+ dependencies = [
1011
+ "cobs",
1012
+ "embedded-io 0.4.0",
1013
+ "embedded-io 0.6.1",
1014
+ "serde",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "proc-macro2"
1019
+ version = "1.0.107"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
1022
+ dependencies = [
1023
+ "unicode-ident",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "quote"
1028
+ version = "1.0.47"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
1031
+ dependencies = [
1032
+ "proc-macro2",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "r-efi"
1037
+ version = "6.0.0"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1040
+
1041
+ [[package]]
1042
+ name = "regex"
1043
+ version = "1.13.1"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1046
+ dependencies = [
1047
+ "aho-corasick",
1048
+ "memchr",
1049
+ "regex-automata",
1050
+ "regex-syntax",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "regex-automata"
1055
+ version = "0.4.18"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
1058
+ dependencies = [
1059
+ "aho-corasick",
1060
+ "memchr",
1061
+ "regex-syntax",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "regex-syntax"
1066
+ version = "0.8.11"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1069
+
1070
+ [[package]]
1071
+ name = "ropey"
1072
+ version = "1.6.1"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "93411e420bcd1a75ddd1dc3caf18c23155eda2c090631a85af21ba19e97093b5"
1075
+ dependencies = [
1076
+ "smallvec",
1077
+ "str_indices",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "rustc-hash"
1082
+ version = "2.1.3"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1085
+
1086
+ [[package]]
1087
+ name = "rustix"
1088
+ version = "1.1.4"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1091
+ dependencies = [
1092
+ "bitflags",
1093
+ "errno",
1094
+ "libc",
1095
+ "linux-raw-sys",
1096
+ "windows-sys",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "rustversion"
1101
+ version = "1.0.23"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1104
+
1105
+ [[package]]
1106
+ name = "self_cell"
1107
+ version = "1.3.0"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "2ab42ca02749e120097e328d91d415325bdf43b1c72c4c8badf37375fe40a813"
1110
+
1111
+ [[package]]
1112
+ name = "seq-macro"
1113
+ version = "0.3.6"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
1116
+
1117
+ [[package]]
1118
+ name = "serde"
1119
+ version = "1.0.229"
1120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1121
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1122
+ dependencies = [
1123
+ "serde_core",
1124
+ "serde_derive",
1125
+ ]
1126
+
1127
+ [[package]]
1128
+ name = "serde_core"
1129
+ version = "1.0.229"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1132
+ dependencies = [
1133
+ "serde_derive",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "serde_derive"
1138
+ version = "1.0.229"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1141
+ dependencies = [
1142
+ "proc-macro2",
1143
+ "quote",
1144
+ "syn 3.0.4",
1145
+ ]
1146
+
1147
+ [[package]]
1148
+ name = "serde_json"
1149
+ version = "1.0.151"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1152
+ dependencies = [
1153
+ "itoa",
1154
+ "memchr",
1155
+ "serde",
1156
+ "serde_core",
1157
+ "zmij",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "serde_spanned"
1162
+ version = "0.6.9"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1165
+ dependencies = [
1166
+ "serde",
1167
+ ]
1168
+
1169
+ [[package]]
1170
+ name = "siphasher"
1171
+ version = "1.0.3"
1172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1173
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
1174
+
1175
+ [[package]]
1176
+ name = "slab"
1177
+ version = "0.4.12"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1180
+
1181
+ [[package]]
1182
+ name = "smallvec"
1183
+ version = "1.15.2"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1186
+ dependencies = [
1187
+ "serde",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "smawk"
1192
+ version = "0.3.3"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "e8e2fb0f499abb4d162f2bedad68f5ef91a1682b5a03596ddb67efd37768d100"
1195
+
1196
+ [[package]]
1197
+ name = "static_assertions"
1198
+ version = "1.1.0"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1201
+
1202
+ [[package]]
1203
+ name = "str_indices"
1204
+ version = "0.4.4"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "d08889ec5408683408db66ad89e0e1f93dff55c73a4ccc71c427d5b277ee47e6"
1207
+
1208
+ [[package]]
1209
+ name = "strsim"
1210
+ version = "0.11.1"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1213
+
1214
+ [[package]]
1215
+ name = "syn"
1216
+ version = "2.0.119"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1219
+ dependencies = [
1220
+ "proc-macro2",
1221
+ "quote",
1222
+ "unicode-ident",
1223
+ ]
1224
+
1225
+ [[package]]
1226
+ name = "syn"
1227
+ version = "3.0.4"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
1230
+ dependencies = [
1231
+ "proc-macro2",
1232
+ "quote",
1233
+ "unicode-ident",
1234
+ ]
1235
+
1236
+ [[package]]
1237
+ name = "tempfile"
1238
+ version = "3.27.0"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1241
+ dependencies = [
1242
+ "fastrand",
1243
+ "getrandom",
1244
+ "once_cell",
1245
+ "rustix",
1246
+ "windows-sys",
1247
+ ]
1248
+
1249
+ [[package]]
1250
+ name = "textwrap"
1251
+ version = "0.16.2"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
1254
+ dependencies = [
1255
+ "smawk",
1256
+ "unicode-linebreak",
1257
+ "unicode-width",
1258
+ ]
1259
+
1260
+ [[package]]
1261
+ name = "thiserror"
1262
+ version = "2.0.20"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
1265
+ dependencies = [
1266
+ "thiserror-impl",
1267
+ ]
1268
+
1269
+ [[package]]
1270
+ name = "thiserror-impl"
1271
+ version = "2.0.20"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
1274
+ dependencies = [
1275
+ "proc-macro2",
1276
+ "quote",
1277
+ "syn 3.0.4",
1278
+ ]
1279
+
1280
+ [[package]]
1281
+ name = "toml"
1282
+ version = "0.8.23"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1285
+ dependencies = [
1286
+ "serde",
1287
+ "serde_spanned",
1288
+ "toml_datetime",
1289
+ "toml_edit",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "toml_datetime"
1294
+ version = "0.6.11"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1297
+ dependencies = [
1298
+ "serde",
1299
+ ]
1300
+
1301
+ [[package]]
1302
+ name = "toml_edit"
1303
+ version = "0.22.27"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1306
+ dependencies = [
1307
+ "indexmap",
1308
+ "serde",
1309
+ "serde_spanned",
1310
+ "toml_datetime",
1311
+ "toml_write",
1312
+ "winnow",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "toml_write"
1317
+ version = "0.1.2"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1320
+
1321
+ [[package]]
1322
+ name = "unicode-id-start"
1323
+ version = "1.4.0"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007"
1326
+
1327
+ [[package]]
1328
+ name = "unicode-ident"
1329
+ version = "1.0.24"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1332
+
1333
+ [[package]]
1334
+ name = "unicode-linebreak"
1335
+ version = "0.1.5"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
1338
+
1339
+ [[package]]
1340
+ name = "unicode-segmentation"
1341
+ version = "1.13.3"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
1344
+
1345
+ [[package]]
1346
+ name = "unicode-width"
1347
+ version = "0.2.2"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1350
+
1351
+ [[package]]
1352
+ name = "utf8parse"
1353
+ version = "0.2.2"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1356
+
1357
+ [[package]]
1358
+ name = "vsimd"
1359
+ version = "0.8.0"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
1362
+
1363
+ [[package]]
1364
+ name = "wasm-bindgen"
1365
+ version = "0.2.127"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
1368
+ dependencies = [
1369
+ "cfg-if",
1370
+ "once_cell",
1371
+ "rustversion",
1372
+ "wasm-bindgen-macro",
1373
+ "wasm-bindgen-shared",
1374
+ ]
1375
+
1376
+ [[package]]
1377
+ name = "wasm-bindgen-macro"
1378
+ version = "0.2.127"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
1381
+ dependencies = [
1382
+ "quote",
1383
+ "wasm-bindgen-macro-support",
1384
+ ]
1385
+
1386
+ [[package]]
1387
+ name = "wasm-bindgen-macro-support"
1388
+ version = "0.2.127"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
1391
+ dependencies = [
1392
+ "bumpalo",
1393
+ "proc-macro2",
1394
+ "quote",
1395
+ "syn 2.0.119",
1396
+ "wasm-bindgen-shared",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "wasm-bindgen-shared"
1401
+ version = "0.2.127"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
1404
+ dependencies = [
1405
+ "unicode-ident",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "windows-link"
1410
+ version = "0.2.1"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1413
+
1414
+ [[package]]
1415
+ name = "windows-sys"
1416
+ version = "0.61.2"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1419
+ dependencies = [
1420
+ "windows-link",
1421
+ ]
1422
+
1423
+ [[package]]
1424
+ name = "winnow"
1425
+ version = "0.7.15"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
1428
+ dependencies = [
1429
+ "memchr",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "zmij"
1434
+ version = "1.0.23"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"