@ape-egg/vibe 2.1.22 → 3.0.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 (56) hide show
  1. package/README.md +112 -5
  2. package/boot.js +4 -4
  3. package/component.js +27 -29
  4. package/hot-module-refresh.js +4 -4
  5. package/index.js +26 -17
  6. package/llms.txt +36 -5
  7. package/package.json +20 -14
  8. package/runtime/affected.js +159 -36
  9. package/runtime/cleanup.js +45 -1
  10. package/runtime/component.js +360 -98
  11. package/runtime/conditionals.js +111 -14
  12. package/runtime/debug.js +24 -0
  13. package/runtime/dispatch.js +172 -0
  14. package/runtime/hydrate.js +277 -110
  15. package/runtime/index.js +189 -65
  16. package/runtime/iterate.js +125 -50
  17. package/runtime/iteration-utils.js +59 -8
  18. package/runtime/manifest.js +77 -2
  19. package/runtime/parse.js +81 -11
  20. package/runtime/pre-compiled-iterations.js +19 -6
  21. package/runtime/pre-compiled-manifest.js +13 -4
  22. package/runtime/staging.js +153 -0
  23. package/runtime/state.js +31 -0
  24. package/runtime/tracking.js +173 -0
  25. package/runtime/utils.js +155 -78
  26. package/spa.js +206 -0
  27. package/vibe.css +8 -4
  28. package/CHANGELOG.md +0 -1159
  29. package/ROADMAP.md +0 -397
  30. package/compiler/bin/vibe-compile.js +0 -121
  31. package/compiler/native/.gitkeep +0 -0
  32. package/compiler/native/vibe-compiler-darwin-arm64 +0 -0
  33. package/compiler/native/vibe-compiler-linux-x64 +0 -0
  34. package/compiler/src/Cargo.lock +0 -2023
  35. package/compiler/src/Cargo.toml +0 -38
  36. package/compiler/src/compiler/PRE-RENDERING-IMPLEMENTATION.md +0 -241
  37. package/compiler/src/compiler/binding_case.rs +0 -88
  38. package/compiler/src/compiler/compile.rs +0 -2522
  39. package/compiler/src/compiler/component_tagger.rs +0 -469
  40. package/compiler/src/compiler/iteration_optimizer.rs +0 -455
  41. package/compiler/src/compiler/js_analyzer.rs +0 -715
  42. package/compiler/src/compiler/manifest_builder.rs +0 -693
  43. package/compiler/src/compiler/mod.rs +0 -15
  44. package/compiler/src/compiler/name_binding_protect.rs +0 -207
  45. package/compiler/src/compiler/reassignment_analyzer.rs +0 -456
  46. package/compiler/src/compiler/state_extractor.rs +0 -263
  47. package/compiler/src/compiler/value_stamper.rs +0 -921
  48. package/compiler/src/compiler/watcher.rs +0 -1147
  49. package/compiler/src/config.rs +0 -239
  50. package/compiler/src/main.rs +0 -347
  51. package/compiler/src/parser/element.rs +0 -96
  52. package/compiler/src/parser/html.rs +0 -1004
  53. package/compiler/src/parser/mod.rs +0 -8
  54. package/runtime/pre-compiled-manifest.test.mjs +0 -58
  55. package/runtime/scope.js +0 -50
  56. package/test-results/.last-run.json +0 -4
@@ -1,2023 +0,0 @@
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 = "ahash"
13
- version = "0.8.12"
14
- source = "registry+https://github.com/rust-lang/crates.io-index"
15
- checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
- dependencies = [
17
- "cfg-if",
18
- "once_cell",
19
- "version_check",
20
- "zerocopy",
21
- ]
22
-
23
- [[package]]
24
- name = "aho-corasick"
25
- version = "1.1.4"
26
- source = "registry+https://github.com/rust-lang/crates.io-index"
27
- checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
28
- dependencies = [
29
- "memchr",
30
- ]
31
-
32
- [[package]]
33
- name = "allocator-api2"
34
- version = "0.2.21"
35
- source = "registry+https://github.com/rust-lang/crates.io-index"
36
- checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
37
-
38
- [[package]]
39
- name = "anstream"
40
- version = "0.6.21"
41
- source = "registry+https://github.com/rust-lang/crates.io-index"
42
- checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
43
- dependencies = [
44
- "anstyle",
45
- "anstyle-parse",
46
- "anstyle-query",
47
- "anstyle-wincon",
48
- "colorchoice",
49
- "is_terminal_polyfill",
50
- "utf8parse",
51
- ]
52
-
53
- [[package]]
54
- name = "anstyle"
55
- version = "1.0.13"
56
- source = "registry+https://github.com/rust-lang/crates.io-index"
57
- checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
58
-
59
- [[package]]
60
- name = "anstyle-parse"
61
- version = "0.2.7"
62
- source = "registry+https://github.com/rust-lang/crates.io-index"
63
- checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
64
- dependencies = [
65
- "utf8parse",
66
- ]
67
-
68
- [[package]]
69
- name = "anstyle-query"
70
- version = "1.1.5"
71
- source = "registry+https://github.com/rust-lang/crates.io-index"
72
- checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
73
- dependencies = [
74
- "windows-sys 0.61.2",
75
- ]
76
-
77
- [[package]]
78
- name = "anstyle-wincon"
79
- version = "3.0.11"
80
- source = "registry+https://github.com/rust-lang/crates.io-index"
81
- checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
82
- dependencies = [
83
- "anstyle",
84
- "once_cell_polyfill",
85
- "windows-sys 0.61.2",
86
- ]
87
-
88
- [[package]]
89
- name = "ar_archive_writer"
90
- version = "0.5.1"
91
- source = "registry+https://github.com/rust-lang/crates.io-index"
92
- checksum = "7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b"
93
- dependencies = [
94
- "object",
95
- ]
96
-
97
- [[package]]
98
- name = "ast_node"
99
- version = "1.0.0"
100
- source = "registry+https://github.com/rust-lang/crates.io-index"
101
- checksum = "f4d23a6d1d5f18bdbc06d9aa908880e5f49205156ba804751af731c51f5cf81a"
102
- dependencies = [
103
- "proc-macro2",
104
- "quote",
105
- "swc_macros_common",
106
- "syn 2.0.114",
107
- ]
108
-
109
- [[package]]
110
- name = "autocfg"
111
- version = "1.5.0"
112
- source = "registry+https://github.com/rust-lang/crates.io-index"
113
- checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
114
-
115
- [[package]]
116
- name = "base64"
117
- version = "0.22.1"
118
- source = "registry+https://github.com/rust-lang/crates.io-index"
119
- checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
120
-
121
- [[package]]
122
- name = "better_scoped_tls"
123
- version = "0.1.2"
124
- source = "registry+https://github.com/rust-lang/crates.io-index"
125
- checksum = "297b153aa5e573b5863108a6ddc9d5c968bd0b20e75cc614ee9821d2f45679c7"
126
- dependencies = [
127
- "scoped-tls",
128
- ]
129
-
130
- [[package]]
131
- name = "bitflags"
132
- version = "1.3.2"
133
- source = "registry+https://github.com/rust-lang/crates.io-index"
134
- checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
135
-
136
- [[package]]
137
- name = "bitflags"
138
- version = "2.10.0"
139
- source = "registry+https://github.com/rust-lang/crates.io-index"
140
- checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
141
-
142
- [[package]]
143
- name = "bumpalo"
144
- version = "3.19.1"
145
- source = "registry+https://github.com/rust-lang/crates.io-index"
146
- checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
147
- dependencies = [
148
- "allocator-api2",
149
- ]
150
-
151
- [[package]]
152
- name = "cc"
153
- version = "1.2.55"
154
- source = "registry+https://github.com/rust-lang/crates.io-index"
155
- checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
156
- dependencies = [
157
- "find-msvc-tools",
158
- "shlex",
159
- ]
160
-
161
- [[package]]
162
- name = "cfg-if"
163
- version = "1.0.4"
164
- source = "registry+https://github.com/rust-lang/crates.io-index"
165
- checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
166
-
167
- [[package]]
168
- name = "clap"
169
- version = "4.5.54"
170
- source = "registry+https://github.com/rust-lang/crates.io-index"
171
- checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394"
172
- dependencies = [
173
- "clap_builder",
174
- "clap_derive",
175
- ]
176
-
177
- [[package]]
178
- name = "clap_builder"
179
- version = "4.5.54"
180
- source = "registry+https://github.com/rust-lang/crates.io-index"
181
- checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00"
182
- dependencies = [
183
- "anstream",
184
- "anstyle",
185
- "clap_lex",
186
- "strsim",
187
- ]
188
-
189
- [[package]]
190
- name = "clap_derive"
191
- version = "4.5.49"
192
- source = "registry+https://github.com/rust-lang/crates.io-index"
193
- checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
194
- dependencies = [
195
- "heck",
196
- "proc-macro2",
197
- "quote",
198
- "syn 2.0.114",
199
- ]
200
-
201
- [[package]]
202
- name = "clap_lex"
203
- version = "0.7.7"
204
- source = "registry+https://github.com/rust-lang/crates.io-index"
205
- checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
206
-
207
- [[package]]
208
- name = "colorchoice"
209
- version = "1.0.4"
210
- source = "registry+https://github.com/rust-lang/crates.io-index"
211
- checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
212
-
213
- [[package]]
214
- name = "colored"
215
- version = "2.2.0"
216
- source = "registry+https://github.com/rust-lang/crates.io-index"
217
- checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
218
- dependencies = [
219
- "lazy_static",
220
- "windows-sys 0.59.0",
221
- ]
222
-
223
- [[package]]
224
- name = "crc32fast"
225
- version = "1.5.0"
226
- source = "registry+https://github.com/rust-lang/crates.io-index"
227
- checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
228
- dependencies = [
229
- "cfg-if",
230
- ]
231
-
232
- [[package]]
233
- name = "crossbeam-channel"
234
- version = "0.5.15"
235
- source = "registry+https://github.com/rust-lang/crates.io-index"
236
- checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
237
- dependencies = [
238
- "crossbeam-utils",
239
- ]
240
-
241
- [[package]]
242
- name = "crossbeam-deque"
243
- version = "0.8.6"
244
- source = "registry+https://github.com/rust-lang/crates.io-index"
245
- checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
246
- dependencies = [
247
- "crossbeam-epoch",
248
- "crossbeam-utils",
249
- ]
250
-
251
- [[package]]
252
- name = "crossbeam-epoch"
253
- version = "0.9.18"
254
- source = "registry+https://github.com/rust-lang/crates.io-index"
255
- checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
256
- dependencies = [
257
- "crossbeam-utils",
258
- ]
259
-
260
- [[package]]
261
- name = "crossbeam-utils"
262
- version = "0.8.21"
263
- source = "registry+https://github.com/rust-lang/crates.io-index"
264
- checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
265
-
266
- [[package]]
267
- name = "displaydoc"
268
- version = "0.2.5"
269
- source = "registry+https://github.com/rust-lang/crates.io-index"
270
- checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
271
- dependencies = [
272
- "proc-macro2",
273
- "quote",
274
- "syn 2.0.114",
275
- ]
276
-
277
- [[package]]
278
- name = "either"
279
- version = "1.15.0"
280
- source = "registry+https://github.com/rust-lang/crates.io-index"
281
- checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
282
-
283
- [[package]]
284
- name = "file-id"
285
- version = "0.2.3"
286
- source = "registry+https://github.com/rust-lang/crates.io-index"
287
- checksum = "e1fc6a637b6dc58414714eddd9170ff187ecb0933d4c7024d1abbd23a3cc26e9"
288
- dependencies = [
289
- "windows-sys 0.60.2",
290
- ]
291
-
292
- [[package]]
293
- name = "filetime"
294
- version = "0.2.27"
295
- source = "registry+https://github.com/rust-lang/crates.io-index"
296
- checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
297
- dependencies = [
298
- "cfg-if",
299
- "libc",
300
- "libredox",
301
- ]
302
-
303
- [[package]]
304
- name = "find-msvc-tools"
305
- version = "0.1.9"
306
- source = "registry+https://github.com/rust-lang/crates.io-index"
307
- checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
308
-
309
- [[package]]
310
- name = "flate2"
311
- version = "1.1.9"
312
- source = "registry+https://github.com/rust-lang/crates.io-index"
313
- checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
314
- dependencies = [
315
- "crc32fast",
316
- "miniz_oxide",
317
- ]
318
-
319
- [[package]]
320
- name = "form_urlencoded"
321
- version = "1.2.2"
322
- source = "registry+https://github.com/rust-lang/crates.io-index"
323
- checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
324
- dependencies = [
325
- "percent-encoding",
326
- ]
327
-
328
- [[package]]
329
- name = "from_variant"
330
- version = "1.0.0"
331
- source = "registry+https://github.com/rust-lang/crates.io-index"
332
- checksum = "e8d8947525c49c73130b5a7187b55b027b6b78fe60268d9f4c283ed690698cb1"
333
- dependencies = [
334
- "proc-macro2",
335
- "swc_macros_common",
336
- "syn 2.0.114",
337
- ]
338
-
339
- [[package]]
340
- name = "fsevent-sys"
341
- version = "4.1.0"
342
- source = "registry+https://github.com/rust-lang/crates.io-index"
343
- checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
344
- dependencies = [
345
- "libc",
346
- ]
347
-
348
- [[package]]
349
- name = "futf"
350
- version = "0.1.5"
351
- source = "registry+https://github.com/rust-lang/crates.io-index"
352
- checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
353
- dependencies = [
354
- "mac",
355
- "new_debug_unreachable",
356
- ]
357
-
358
- [[package]]
359
- name = "getrandom"
360
- version = "0.2.17"
361
- source = "registry+https://github.com/rust-lang/crates.io-index"
362
- checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
363
- dependencies = [
364
- "cfg-if",
365
- "libc",
366
- "wasi",
367
- ]
368
-
369
- [[package]]
370
- name = "glob"
371
- version = "0.3.3"
372
- source = "registry+https://github.com/rust-lang/crates.io-index"
373
- checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
374
-
375
- [[package]]
376
- name = "hashbrown"
377
- version = "0.14.5"
378
- source = "registry+https://github.com/rust-lang/crates.io-index"
379
- checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
380
- dependencies = [
381
- "ahash",
382
- "allocator-api2",
383
- ]
384
-
385
- [[package]]
386
- name = "heck"
387
- version = "0.5.0"
388
- source = "registry+https://github.com/rust-lang/crates.io-index"
389
- checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
390
-
391
- [[package]]
392
- name = "hstr"
393
- version = "0.2.17"
394
- source = "registry+https://github.com/rust-lang/crates.io-index"
395
- checksum = "a1a26def229ea95a8709dad32868d975d0dd40235bd2ce82920e4a8fe692b5e0"
396
- dependencies = [
397
- "hashbrown",
398
- "new_debug_unreachable",
399
- "once_cell",
400
- "phf",
401
- "rustc-hash",
402
- "triomphe",
403
- ]
404
-
405
- [[package]]
406
- name = "html5ever"
407
- version = "0.27.0"
408
- source = "registry+https://github.com/rust-lang/crates.io-index"
409
- checksum = "c13771afe0e6e846f1e67d038d4cb29998a6779f93c809212e4e9c32efd244d4"
410
- dependencies = [
411
- "log",
412
- "mac",
413
- "markup5ever",
414
- "proc-macro2",
415
- "quote",
416
- "syn 2.0.114",
417
- ]
418
-
419
- [[package]]
420
- name = "icu_collections"
421
- version = "2.1.1"
422
- source = "registry+https://github.com/rust-lang/crates.io-index"
423
- checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
424
- dependencies = [
425
- "displaydoc",
426
- "potential_utf",
427
- "yoke",
428
- "zerofrom",
429
- "zerovec",
430
- ]
431
-
432
- [[package]]
433
- name = "icu_locale_core"
434
- version = "2.1.1"
435
- source = "registry+https://github.com/rust-lang/crates.io-index"
436
- checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
437
- dependencies = [
438
- "displaydoc",
439
- "litemap",
440
- "tinystr",
441
- "writeable",
442
- "zerovec",
443
- ]
444
-
445
- [[package]]
446
- name = "icu_normalizer"
447
- version = "2.1.1"
448
- source = "registry+https://github.com/rust-lang/crates.io-index"
449
- checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
450
- dependencies = [
451
- "icu_collections",
452
- "icu_normalizer_data",
453
- "icu_properties",
454
- "icu_provider",
455
- "smallvec",
456
- "zerovec",
457
- ]
458
-
459
- [[package]]
460
- name = "icu_normalizer_data"
461
- version = "2.1.1"
462
- source = "registry+https://github.com/rust-lang/crates.io-index"
463
- checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
464
-
465
- [[package]]
466
- name = "icu_properties"
467
- version = "2.1.2"
468
- source = "registry+https://github.com/rust-lang/crates.io-index"
469
- checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
470
- dependencies = [
471
- "icu_collections",
472
- "icu_locale_core",
473
- "icu_properties_data",
474
- "icu_provider",
475
- "zerotrie",
476
- "zerovec",
477
- ]
478
-
479
- [[package]]
480
- name = "icu_properties_data"
481
- version = "2.1.2"
482
- source = "registry+https://github.com/rust-lang/crates.io-index"
483
- checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
484
-
485
- [[package]]
486
- name = "icu_provider"
487
- version = "2.1.1"
488
- source = "registry+https://github.com/rust-lang/crates.io-index"
489
- checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
490
- dependencies = [
491
- "displaydoc",
492
- "icu_locale_core",
493
- "writeable",
494
- "yoke",
495
- "zerofrom",
496
- "zerotrie",
497
- "zerovec",
498
- ]
499
-
500
- [[package]]
501
- name = "idna"
502
- version = "1.1.0"
503
- source = "registry+https://github.com/rust-lang/crates.io-index"
504
- checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
505
- dependencies = [
506
- "idna_adapter",
507
- "smallvec",
508
- "utf8_iter",
509
- ]
510
-
511
- [[package]]
512
- name = "idna_adapter"
513
- version = "1.2.1"
514
- source = "registry+https://github.com/rust-lang/crates.io-index"
515
- checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
516
- dependencies = [
517
- "icu_normalizer",
518
- "icu_properties",
519
- ]
520
-
521
- [[package]]
522
- name = "inotify"
523
- version = "0.9.6"
524
- source = "registry+https://github.com/rust-lang/crates.io-index"
525
- checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
526
- dependencies = [
527
- "bitflags 1.3.2",
528
- "inotify-sys",
529
- "libc",
530
- ]
531
-
532
- [[package]]
533
- name = "inotify-sys"
534
- version = "0.1.5"
535
- source = "registry+https://github.com/rust-lang/crates.io-index"
536
- checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
537
- dependencies = [
538
- "libc",
539
- ]
540
-
541
- [[package]]
542
- name = "is-macro"
543
- version = "0.3.7"
544
- source = "registry+https://github.com/rust-lang/crates.io-index"
545
- checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
546
- dependencies = [
547
- "heck",
548
- "proc-macro2",
549
- "quote",
550
- "syn 2.0.114",
551
- ]
552
-
553
- [[package]]
554
- name = "is_terminal_polyfill"
555
- version = "1.70.2"
556
- source = "registry+https://github.com/rust-lang/crates.io-index"
557
- checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
558
-
559
- [[package]]
560
- name = "itoa"
561
- version = "1.0.17"
562
- source = "registry+https://github.com/rust-lang/crates.io-index"
563
- checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
564
-
565
- [[package]]
566
- name = "kqueue"
567
- version = "1.1.1"
568
- source = "registry+https://github.com/rust-lang/crates.io-index"
569
- checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
570
- dependencies = [
571
- "kqueue-sys",
572
- "libc",
573
- ]
574
-
575
- [[package]]
576
- name = "kqueue-sys"
577
- version = "1.0.4"
578
- source = "registry+https://github.com/rust-lang/crates.io-index"
579
- checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
580
- dependencies = [
581
- "bitflags 1.3.2",
582
- "libc",
583
- ]
584
-
585
- [[package]]
586
- name = "lazy_static"
587
- version = "1.5.0"
588
- source = "registry+https://github.com/rust-lang/crates.io-index"
589
- checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
590
-
591
- [[package]]
592
- name = "libc"
593
- version = "0.2.180"
594
- source = "registry+https://github.com/rust-lang/crates.io-index"
595
- checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
596
-
597
- [[package]]
598
- name = "libredox"
599
- version = "0.1.12"
600
- source = "registry+https://github.com/rust-lang/crates.io-index"
601
- checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
602
- dependencies = [
603
- "bitflags 2.10.0",
604
- "libc",
605
- "redox_syscall 0.7.1",
606
- ]
607
-
608
- [[package]]
609
- name = "litemap"
610
- version = "0.8.1"
611
- source = "registry+https://github.com/rust-lang/crates.io-index"
612
- checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
613
-
614
- [[package]]
615
- name = "lock_api"
616
- version = "0.4.14"
617
- source = "registry+https://github.com/rust-lang/crates.io-index"
618
- checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
619
- dependencies = [
620
- "scopeguard",
621
- ]
622
-
623
- [[package]]
624
- name = "log"
625
- version = "0.4.29"
626
- source = "registry+https://github.com/rust-lang/crates.io-index"
627
- checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
628
-
629
- [[package]]
630
- name = "mac"
631
- version = "0.1.1"
632
- source = "registry+https://github.com/rust-lang/crates.io-index"
633
- checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
634
-
635
- [[package]]
636
- name = "markup5ever"
637
- version = "0.12.1"
638
- source = "registry+https://github.com/rust-lang/crates.io-index"
639
- checksum = "16ce3abbeba692c8b8441d036ef91aea6df8da2c6b6e21c7e14d3c18e526be45"
640
- dependencies = [
641
- "log",
642
- "phf",
643
- "phf_codegen",
644
- "string_cache",
645
- "string_cache_codegen",
646
- "tendril",
647
- ]
648
-
649
- [[package]]
650
- name = "markup5ever_rcdom"
651
- version = "0.3.0"
652
- source = "registry+https://github.com/rust-lang/crates.io-index"
653
- checksum = "edaa21ab3701bfee5099ade5f7e1f84553fd19228cf332f13cd6e964bf59be18"
654
- dependencies = [
655
- "html5ever",
656
- "markup5ever",
657
- "tendril",
658
- "xml5ever",
659
- ]
660
-
661
- [[package]]
662
- name = "memchr"
663
- version = "2.7.6"
664
- source = "registry+https://github.com/rust-lang/crates.io-index"
665
- checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
666
-
667
- [[package]]
668
- name = "miniz_oxide"
669
- version = "0.8.9"
670
- source = "registry+https://github.com/rust-lang/crates.io-index"
671
- checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
672
- dependencies = [
673
- "adler2",
674
- "simd-adler32",
675
- ]
676
-
677
- [[package]]
678
- name = "mio"
679
- version = "0.8.11"
680
- source = "registry+https://github.com/rust-lang/crates.io-index"
681
- checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
682
- dependencies = [
683
- "libc",
684
- "log",
685
- "wasi",
686
- "windows-sys 0.48.0",
687
- ]
688
-
689
- [[package]]
690
- name = "new_debug_unreachable"
691
- version = "1.0.6"
692
- source = "registry+https://github.com/rust-lang/crates.io-index"
693
- checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
694
-
695
- [[package]]
696
- name = "notify"
697
- version = "6.1.1"
698
- source = "registry+https://github.com/rust-lang/crates.io-index"
699
- checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
700
- dependencies = [
701
- "bitflags 2.10.0",
702
- "crossbeam-channel",
703
- "filetime",
704
- "fsevent-sys",
705
- "inotify",
706
- "kqueue",
707
- "libc",
708
- "log",
709
- "mio",
710
- "walkdir",
711
- "windows-sys 0.48.0",
712
- ]
713
-
714
- [[package]]
715
- name = "notify-debouncer-full"
716
- version = "0.3.2"
717
- source = "registry+https://github.com/rust-lang/crates.io-index"
718
- checksum = "fb7fd166739789c9ff169e654dc1501373db9d80a4c3f972817c8a4d7cf8f34e"
719
- dependencies = [
720
- "crossbeam-channel",
721
- "file-id",
722
- "log",
723
- "notify",
724
- "parking_lot",
725
- "walkdir",
726
- ]
727
-
728
- [[package]]
729
- name = "num-bigint"
730
- version = "0.4.6"
731
- source = "registry+https://github.com/rust-lang/crates.io-index"
732
- checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
733
- dependencies = [
734
- "num-integer",
735
- "num-traits",
736
- "serde",
737
- ]
738
-
739
- [[package]]
740
- name = "num-integer"
741
- version = "0.1.46"
742
- source = "registry+https://github.com/rust-lang/crates.io-index"
743
- checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
744
- dependencies = [
745
- "num-traits",
746
- ]
747
-
748
- [[package]]
749
- name = "num-traits"
750
- version = "0.2.19"
751
- source = "registry+https://github.com/rust-lang/crates.io-index"
752
- checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
753
- dependencies = [
754
- "autocfg",
755
- ]
756
-
757
- [[package]]
758
- name = "object"
759
- version = "0.37.3"
760
- source = "registry+https://github.com/rust-lang/crates.io-index"
761
- checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
762
- dependencies = [
763
- "memchr",
764
- ]
765
-
766
- [[package]]
767
- name = "once_cell"
768
- version = "1.21.3"
769
- source = "registry+https://github.com/rust-lang/crates.io-index"
770
- checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
771
-
772
- [[package]]
773
- name = "once_cell_polyfill"
774
- version = "1.70.2"
775
- source = "registry+https://github.com/rust-lang/crates.io-index"
776
- checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
777
-
778
- [[package]]
779
- name = "parking_lot"
780
- version = "0.12.5"
781
- source = "registry+https://github.com/rust-lang/crates.io-index"
782
- checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
783
- dependencies = [
784
- "lock_api",
785
- "parking_lot_core",
786
- ]
787
-
788
- [[package]]
789
- name = "parking_lot_core"
790
- version = "0.9.12"
791
- source = "registry+https://github.com/rust-lang/crates.io-index"
792
- checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
793
- dependencies = [
794
- "cfg-if",
795
- "libc",
796
- "redox_syscall 0.5.18",
797
- "smallvec",
798
- "windows-link",
799
- ]
800
-
801
- [[package]]
802
- name = "percent-encoding"
803
- version = "2.3.2"
804
- source = "registry+https://github.com/rust-lang/crates.io-index"
805
- checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
806
-
807
- [[package]]
808
- name = "phf"
809
- version = "0.11.3"
810
- source = "registry+https://github.com/rust-lang/crates.io-index"
811
- checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
812
- dependencies = [
813
- "phf_macros",
814
- "phf_shared",
815
- ]
816
-
817
- [[package]]
818
- name = "phf_codegen"
819
- version = "0.11.3"
820
- source = "registry+https://github.com/rust-lang/crates.io-index"
821
- checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
822
- dependencies = [
823
- "phf_generator",
824
- "phf_shared",
825
- ]
826
-
827
- [[package]]
828
- name = "phf_generator"
829
- version = "0.11.3"
830
- source = "registry+https://github.com/rust-lang/crates.io-index"
831
- checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
832
- dependencies = [
833
- "phf_shared",
834
- "rand",
835
- ]
836
-
837
- [[package]]
838
- name = "phf_macros"
839
- version = "0.11.3"
840
- source = "registry+https://github.com/rust-lang/crates.io-index"
841
- checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
842
- dependencies = [
843
- "phf_generator",
844
- "phf_shared",
845
- "proc-macro2",
846
- "quote",
847
- "syn 2.0.114",
848
- ]
849
-
850
- [[package]]
851
- name = "phf_shared"
852
- version = "0.11.3"
853
- source = "registry+https://github.com/rust-lang/crates.io-index"
854
- checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
855
- dependencies = [
856
- "siphasher 1.0.1",
857
- ]
858
-
859
- [[package]]
860
- name = "pin-project-lite"
861
- version = "0.2.16"
862
- source = "registry+https://github.com/rust-lang/crates.io-index"
863
- checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
864
-
865
- [[package]]
866
- name = "potential_utf"
867
- version = "0.1.4"
868
- source = "registry+https://github.com/rust-lang/crates.io-index"
869
- checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
870
- dependencies = [
871
- "zerovec",
872
- ]
873
-
874
- [[package]]
875
- name = "precomputed-hash"
876
- version = "0.1.1"
877
- source = "registry+https://github.com/rust-lang/crates.io-index"
878
- checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
879
-
880
- [[package]]
881
- name = "proc-macro2"
882
- version = "1.0.106"
883
- source = "registry+https://github.com/rust-lang/crates.io-index"
884
- checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
885
- dependencies = [
886
- "unicode-ident",
887
- ]
888
-
889
- [[package]]
890
- name = "psm"
891
- version = "0.1.30"
892
- source = "registry+https://github.com/rust-lang/crates.io-index"
893
- checksum = "3852766467df634d74f0b2d7819bf8dc483a0eb2e3b0f50f756f9cfe8b0d18d8"
894
- dependencies = [
895
- "ar_archive_writer",
896
- "cc",
897
- ]
898
-
899
- [[package]]
900
- name = "ptr_meta"
901
- version = "0.1.4"
902
- source = "registry+https://github.com/rust-lang/crates.io-index"
903
- checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
904
- dependencies = [
905
- "ptr_meta_derive",
906
- ]
907
-
908
- [[package]]
909
- name = "ptr_meta_derive"
910
- version = "0.1.4"
911
- source = "registry+https://github.com/rust-lang/crates.io-index"
912
- checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
913
- dependencies = [
914
- "proc-macro2",
915
- "quote",
916
- "syn 1.0.109",
917
- ]
918
-
919
- [[package]]
920
- name = "quote"
921
- version = "1.0.44"
922
- source = "registry+https://github.com/rust-lang/crates.io-index"
923
- checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
924
- dependencies = [
925
- "proc-macro2",
926
- ]
927
-
928
- [[package]]
929
- name = "rand"
930
- version = "0.8.5"
931
- source = "registry+https://github.com/rust-lang/crates.io-index"
932
- checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
933
- dependencies = [
934
- "rand_core",
935
- ]
936
-
937
- [[package]]
938
- name = "rand_core"
939
- version = "0.6.4"
940
- source = "registry+https://github.com/rust-lang/crates.io-index"
941
- checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
942
-
943
- [[package]]
944
- name = "rayon"
945
- version = "1.11.0"
946
- source = "registry+https://github.com/rust-lang/crates.io-index"
947
- checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
948
- dependencies = [
949
- "either",
950
- "rayon-core",
951
- ]
952
-
953
- [[package]]
954
- name = "rayon-core"
955
- version = "1.13.0"
956
- source = "registry+https://github.com/rust-lang/crates.io-index"
957
- checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
958
- dependencies = [
959
- "crossbeam-deque",
960
- "crossbeam-utils",
961
- ]
962
-
963
- [[package]]
964
- name = "redox_syscall"
965
- version = "0.5.18"
966
- source = "registry+https://github.com/rust-lang/crates.io-index"
967
- checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
968
- dependencies = [
969
- "bitflags 2.10.0",
970
- ]
971
-
972
- [[package]]
973
- name = "redox_syscall"
974
- version = "0.7.1"
975
- source = "registry+https://github.com/rust-lang/crates.io-index"
976
- checksum = "35985aa610addc02e24fc232012c86fd11f14111180f902b67e2d5331f8ebf2b"
977
- dependencies = [
978
- "bitflags 2.10.0",
979
- ]
980
-
981
- [[package]]
982
- name = "regex"
983
- version = "1.12.2"
984
- source = "registry+https://github.com/rust-lang/crates.io-index"
985
- checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
986
- dependencies = [
987
- "aho-corasick",
988
- "memchr",
989
- "regex-automata",
990
- "regex-syntax",
991
- ]
992
-
993
- [[package]]
994
- name = "regex-automata"
995
- version = "0.4.13"
996
- source = "registry+https://github.com/rust-lang/crates.io-index"
997
- checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
998
- dependencies = [
999
- "aho-corasick",
1000
- "memchr",
1001
- "regex-syntax",
1002
- ]
1003
-
1004
- [[package]]
1005
- name = "regex-syntax"
1006
- version = "0.8.8"
1007
- source = "registry+https://github.com/rust-lang/crates.io-index"
1008
- checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1009
-
1010
- [[package]]
1011
- name = "ring"
1012
- version = "0.17.14"
1013
- source = "registry+https://github.com/rust-lang/crates.io-index"
1014
- checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1015
- dependencies = [
1016
- "cc",
1017
- "cfg-if",
1018
- "getrandom",
1019
- "libc",
1020
- "untrusted",
1021
- "windows-sys 0.52.0",
1022
- ]
1023
-
1024
- [[package]]
1025
- name = "rquickjs"
1026
- version = "0.6.2"
1027
- source = "registry+https://github.com/rust-lang/crates.io-index"
1028
- checksum = "9cbd33e0b668aea0ab238b9164523aca929096f9f40834700d71d91dd4888882"
1029
- dependencies = [
1030
- "rquickjs-core",
1031
- ]
1032
-
1033
- [[package]]
1034
- name = "rquickjs-core"
1035
- version = "0.6.2"
1036
- source = "registry+https://github.com/rust-lang/crates.io-index"
1037
- checksum = "2e9129d69b7b8f7ee8ad1da5b12c7f4a8a8acd45f2e6dd9cb2ee1bc5a1f2fa3d"
1038
- dependencies = [
1039
- "rquickjs-sys",
1040
- ]
1041
-
1042
- [[package]]
1043
- name = "rquickjs-sys"
1044
- version = "0.6.2"
1045
- source = "registry+https://github.com/rust-lang/crates.io-index"
1046
- checksum = "bf6f2288d8e7fbb5130f62cf720451641e99d55f6fde9db86aa2914ecb553fd2"
1047
- dependencies = [
1048
- "cc",
1049
- ]
1050
-
1051
- [[package]]
1052
- name = "rustc-hash"
1053
- version = "1.1.0"
1054
- source = "registry+https://github.com/rust-lang/crates.io-index"
1055
- checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1056
-
1057
- [[package]]
1058
- name = "rustls"
1059
- version = "0.23.37"
1060
- source = "registry+https://github.com/rust-lang/crates.io-index"
1061
- checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
1062
- dependencies = [
1063
- "log",
1064
- "once_cell",
1065
- "ring",
1066
- "rustls-pki-types",
1067
- "rustls-webpki",
1068
- "subtle",
1069
- "zeroize",
1070
- ]
1071
-
1072
- [[package]]
1073
- name = "rustls-pki-types"
1074
- version = "1.14.0"
1075
- source = "registry+https://github.com/rust-lang/crates.io-index"
1076
- checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
1077
- dependencies = [
1078
- "zeroize",
1079
- ]
1080
-
1081
- [[package]]
1082
- name = "rustls-webpki"
1083
- version = "0.103.11"
1084
- source = "registry+https://github.com/rust-lang/crates.io-index"
1085
- checksum = "20a6af516fea4b20eccceaf166e8aa666ac996208e8a644ce3ef5aa783bc7cd4"
1086
- dependencies = [
1087
- "ring",
1088
- "rustls-pki-types",
1089
- "untrusted",
1090
- ]
1091
-
1092
- [[package]]
1093
- name = "ryu"
1094
- version = "1.0.22"
1095
- source = "registry+https://github.com/rust-lang/crates.io-index"
1096
- checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
1097
-
1098
- [[package]]
1099
- name = "same-file"
1100
- version = "1.0.6"
1101
- source = "registry+https://github.com/rust-lang/crates.io-index"
1102
- checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1103
- dependencies = [
1104
- "winapi-util",
1105
- ]
1106
-
1107
- [[package]]
1108
- name = "scoped-tls"
1109
- version = "1.0.1"
1110
- source = "registry+https://github.com/rust-lang/crates.io-index"
1111
- checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
1112
-
1113
- [[package]]
1114
- name = "scopeguard"
1115
- version = "1.2.0"
1116
- source = "registry+https://github.com/rust-lang/crates.io-index"
1117
- checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1118
-
1119
- [[package]]
1120
- name = "serde"
1121
- version = "1.0.210"
1122
- source = "registry+https://github.com/rust-lang/crates.io-index"
1123
- checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
1124
- dependencies = [
1125
- "serde_derive",
1126
- ]
1127
-
1128
- [[package]]
1129
- name = "serde_derive"
1130
- version = "1.0.210"
1131
- source = "registry+https://github.com/rust-lang/crates.io-index"
1132
- checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
1133
- dependencies = [
1134
- "proc-macro2",
1135
- "quote",
1136
- "syn 2.0.114",
1137
- ]
1138
-
1139
- [[package]]
1140
- name = "serde_json"
1141
- version = "1.0.143"
1142
- source = "registry+https://github.com/rust-lang/crates.io-index"
1143
- checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
1144
- dependencies = [
1145
- "itoa",
1146
- "memchr",
1147
- "ryu",
1148
- "serde",
1149
- ]
1150
-
1151
- [[package]]
1152
- name = "shlex"
1153
- version = "1.3.0"
1154
- source = "registry+https://github.com/rust-lang/crates.io-index"
1155
- checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1156
-
1157
- [[package]]
1158
- name = "simd-adler32"
1159
- version = "0.3.9"
1160
- source = "registry+https://github.com/rust-lang/crates.io-index"
1161
- checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1162
-
1163
- [[package]]
1164
- name = "siphasher"
1165
- version = "0.3.11"
1166
- source = "registry+https://github.com/rust-lang/crates.io-index"
1167
- checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
1168
-
1169
- [[package]]
1170
- name = "siphasher"
1171
- version = "1.0.1"
1172
- source = "registry+https://github.com/rust-lang/crates.io-index"
1173
- checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
1174
-
1175
- [[package]]
1176
- name = "smallvec"
1177
- version = "1.15.1"
1178
- source = "registry+https://github.com/rust-lang/crates.io-index"
1179
- checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1180
-
1181
- [[package]]
1182
- name = "smartstring"
1183
- version = "1.0.1"
1184
- source = "registry+https://github.com/rust-lang/crates.io-index"
1185
- checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
1186
- dependencies = [
1187
- "autocfg",
1188
- "static_assertions",
1189
- "version_check",
1190
- ]
1191
-
1192
- [[package]]
1193
- name = "stable_deref_trait"
1194
- version = "1.2.1"
1195
- source = "registry+https://github.com/rust-lang/crates.io-index"
1196
- checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1197
-
1198
- [[package]]
1199
- name = "stacker"
1200
- version = "0.1.23"
1201
- source = "registry+https://github.com/rust-lang/crates.io-index"
1202
- checksum = "08d74a23609d509411d10e2176dc2a4346e3b4aea2e7b1869f19fdedbc71c013"
1203
- dependencies = [
1204
- "cc",
1205
- "cfg-if",
1206
- "libc",
1207
- "psm",
1208
- "windows-sys 0.59.0",
1209
- ]
1210
-
1211
- [[package]]
1212
- name = "static_assertions"
1213
- version = "1.1.0"
1214
- source = "registry+https://github.com/rust-lang/crates.io-index"
1215
- checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1216
-
1217
- [[package]]
1218
- name = "string_cache"
1219
- version = "0.8.9"
1220
- source = "registry+https://github.com/rust-lang/crates.io-index"
1221
- checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
1222
- dependencies = [
1223
- "new_debug_unreachable",
1224
- "parking_lot",
1225
- "phf_shared",
1226
- "precomputed-hash",
1227
- "serde",
1228
- ]
1229
-
1230
- [[package]]
1231
- name = "string_cache_codegen"
1232
- version = "0.5.4"
1233
- source = "registry+https://github.com/rust-lang/crates.io-index"
1234
- checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
1235
- dependencies = [
1236
- "phf_generator",
1237
- "phf_shared",
1238
- "proc-macro2",
1239
- "quote",
1240
- ]
1241
-
1242
- [[package]]
1243
- name = "string_enum"
1244
- version = "0.4.4"
1245
- source = "registry+https://github.com/rust-lang/crates.io-index"
1246
- checksum = "05e383308aebc257e7d7920224fa055c632478d92744eca77f99be8fa1545b90"
1247
- dependencies = [
1248
- "proc-macro2",
1249
- "quote",
1250
- "swc_macros_common",
1251
- "syn 2.0.114",
1252
- ]
1253
-
1254
- [[package]]
1255
- name = "strsim"
1256
- version = "0.11.1"
1257
- source = "registry+https://github.com/rust-lang/crates.io-index"
1258
- checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1259
-
1260
- [[package]]
1261
- name = "subtle"
1262
- version = "2.6.1"
1263
- source = "registry+https://github.com/rust-lang/crates.io-index"
1264
- checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1265
-
1266
- [[package]]
1267
- name = "swc_allocator"
1268
- version = "0.1.10"
1269
- source = "registry+https://github.com/rust-lang/crates.io-index"
1270
- checksum = "76aa0eb65c0f39f9b6d82a7e5192c30f7ac9a78f084a21f270de1d8c600ca388"
1271
- dependencies = [
1272
- "bumpalo",
1273
- "hashbrown",
1274
- "ptr_meta",
1275
- "rustc-hash",
1276
- "triomphe",
1277
- ]
1278
-
1279
- [[package]]
1280
- name = "swc_atoms"
1281
- version = "1.0.2"
1282
- source = "registry+https://github.com/rust-lang/crates.io-index"
1283
- checksum = "b25ff0f3fd48ab1a95d86fd0505fdd1ac904f84d0350dc8222bbc824e9d4fdf6"
1284
- dependencies = [
1285
- "hstr",
1286
- "once_cell",
1287
- "rustc-hash",
1288
- "serde",
1289
- ]
1290
-
1291
- [[package]]
1292
- name = "swc_common"
1293
- version = "0.40.1"
1294
- source = "registry+https://github.com/rust-lang/crates.io-index"
1295
- checksum = "f355465eaed1104244ce918b7ffb77ceb109aabeb74b04b98acae85683b0215b"
1296
- dependencies = [
1297
- "ast_node",
1298
- "better_scoped_tls",
1299
- "cfg-if",
1300
- "either",
1301
- "from_variant",
1302
- "new_debug_unreachable",
1303
- "num-bigint",
1304
- "once_cell",
1305
- "rustc-hash",
1306
- "serde",
1307
- "siphasher 0.3.11",
1308
- "swc_allocator",
1309
- "swc_atoms",
1310
- "swc_eq_ignore_macros",
1311
- "swc_visit",
1312
- "tracing",
1313
- "unicode-width",
1314
- "url",
1315
- ]
1316
-
1317
- [[package]]
1318
- name = "swc_ecma_ast"
1319
- version = "0.121.0"
1320
- source = "registry+https://github.com/rust-lang/crates.io-index"
1321
- checksum = "1628b2c0c6349c1960b007fda04e0c1537480e0d0b1405305ef5846b752aa7a8"
1322
- dependencies = [
1323
- "bitflags 2.10.0",
1324
- "is-macro",
1325
- "num-bigint",
1326
- "phf",
1327
- "scoped-tls",
1328
- "string_enum",
1329
- "swc_atoms",
1330
- "swc_common",
1331
- "unicode-id-start",
1332
- ]
1333
-
1334
- [[package]]
1335
- name = "swc_ecma_parser"
1336
- version = "0.152.0"
1337
- source = "registry+https://github.com/rust-lang/crates.io-index"
1338
- checksum = "9ef96894fa0fb3fba233ede22a75a7ddd8b7f0727a40aa8d1028b5dd25013d2e"
1339
- dependencies = [
1340
- "either",
1341
- "new_debug_unreachable",
1342
- "num-bigint",
1343
- "num-traits",
1344
- "phf",
1345
- "serde",
1346
- "smallvec",
1347
- "smartstring",
1348
- "stacker",
1349
- "swc_atoms",
1350
- "swc_common",
1351
- "swc_ecma_ast",
1352
- "tracing",
1353
- "typed-arena",
1354
- ]
1355
-
1356
- [[package]]
1357
- name = "swc_ecma_visit"
1358
- version = "0.107.0"
1359
- source = "registry+https://github.com/rust-lang/crates.io-index"
1360
- checksum = "15bd17e03251272ee04d1155036be5288055ab43d40ab2d9fd63ff815d326dad"
1361
- dependencies = [
1362
- "new_debug_unreachable",
1363
- "num-bigint",
1364
- "swc_atoms",
1365
- "swc_common",
1366
- "swc_ecma_ast",
1367
- "swc_visit",
1368
- "tracing",
1369
- ]
1370
-
1371
- [[package]]
1372
- name = "swc_eq_ignore_macros"
1373
- version = "0.1.4"
1374
- source = "registry+https://github.com/rust-lang/crates.io-index"
1375
- checksum = "63db0adcff29d220c3d151c5b25c0eabe7e32dd936212b84cdaa1392e3130497"
1376
- dependencies = [
1377
- "proc-macro2",
1378
- "quote",
1379
- "syn 2.0.114",
1380
- ]
1381
-
1382
- [[package]]
1383
- name = "swc_macros_common"
1384
- version = "0.3.14"
1385
- source = "registry+https://github.com/rust-lang/crates.io-index"
1386
- checksum = "27e18fbfe83811ffae2bb23727e45829a0d19c6870bced7c0f545cc99ad248dd"
1387
- dependencies = [
1388
- "proc-macro2",
1389
- "quote",
1390
- "syn 2.0.114",
1391
- ]
1392
-
1393
- [[package]]
1394
- name = "swc_visit"
1395
- version = "0.6.2"
1396
- source = "registry+https://github.com/rust-lang/crates.io-index"
1397
- checksum = "1ceb044142ba2719ef9eb3b6b454fce61ab849eb696c34d190f04651955c613d"
1398
- dependencies = [
1399
- "either",
1400
- "new_debug_unreachable",
1401
- ]
1402
-
1403
- [[package]]
1404
- name = "syn"
1405
- version = "1.0.109"
1406
- source = "registry+https://github.com/rust-lang/crates.io-index"
1407
- checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1408
- dependencies = [
1409
- "proc-macro2",
1410
- "quote",
1411
- "unicode-ident",
1412
- ]
1413
-
1414
- [[package]]
1415
- name = "syn"
1416
- version = "2.0.114"
1417
- source = "registry+https://github.com/rust-lang/crates.io-index"
1418
- checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
1419
- dependencies = [
1420
- "proc-macro2",
1421
- "quote",
1422
- "unicode-ident",
1423
- ]
1424
-
1425
- [[package]]
1426
- name = "synstructure"
1427
- version = "0.13.2"
1428
- source = "registry+https://github.com/rust-lang/crates.io-index"
1429
- checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1430
- dependencies = [
1431
- "proc-macro2",
1432
- "quote",
1433
- "syn 2.0.114",
1434
- ]
1435
-
1436
- [[package]]
1437
- name = "tendril"
1438
- version = "0.4.3"
1439
- source = "registry+https://github.com/rust-lang/crates.io-index"
1440
- checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
1441
- dependencies = [
1442
- "futf",
1443
- "mac",
1444
- "utf-8",
1445
- ]
1446
-
1447
- [[package]]
1448
- name = "thiserror"
1449
- version = "1.0.69"
1450
- source = "registry+https://github.com/rust-lang/crates.io-index"
1451
- checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1452
- dependencies = [
1453
- "thiserror-impl",
1454
- ]
1455
-
1456
- [[package]]
1457
- name = "thiserror-impl"
1458
- version = "1.0.69"
1459
- source = "registry+https://github.com/rust-lang/crates.io-index"
1460
- checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1461
- dependencies = [
1462
- "proc-macro2",
1463
- "quote",
1464
- "syn 2.0.114",
1465
- ]
1466
-
1467
- [[package]]
1468
- name = "tinystr"
1469
- version = "0.8.2"
1470
- source = "registry+https://github.com/rust-lang/crates.io-index"
1471
- checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1472
- dependencies = [
1473
- "displaydoc",
1474
- "zerovec",
1475
- ]
1476
-
1477
- [[package]]
1478
- name = "tracing"
1479
- version = "0.1.44"
1480
- source = "registry+https://github.com/rust-lang/crates.io-index"
1481
- checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1482
- dependencies = [
1483
- "pin-project-lite",
1484
- "tracing-attributes",
1485
- "tracing-core",
1486
- ]
1487
-
1488
- [[package]]
1489
- name = "tracing-attributes"
1490
- version = "0.1.31"
1491
- source = "registry+https://github.com/rust-lang/crates.io-index"
1492
- checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1493
- dependencies = [
1494
- "proc-macro2",
1495
- "quote",
1496
- "syn 2.0.114",
1497
- ]
1498
-
1499
- [[package]]
1500
- name = "tracing-core"
1501
- version = "0.1.36"
1502
- source = "registry+https://github.com/rust-lang/crates.io-index"
1503
- checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1504
- dependencies = [
1505
- "once_cell",
1506
- ]
1507
-
1508
- [[package]]
1509
- name = "triomphe"
1510
- version = "0.1.15"
1511
- source = "registry+https://github.com/rust-lang/crates.io-index"
1512
- checksum = "dd69c5aa8f924c7519d6372789a74eac5b94fb0f8fcf0d4a97eb0bfc3e785f39"
1513
- dependencies = [
1514
- "serde",
1515
- "stable_deref_trait",
1516
- ]
1517
-
1518
- [[package]]
1519
- name = "typed-arena"
1520
- version = "2.0.2"
1521
- source = "registry+https://github.com/rust-lang/crates.io-index"
1522
- checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
1523
-
1524
- [[package]]
1525
- name = "unicode-id-start"
1526
- version = "1.4.0"
1527
- source = "registry+https://github.com/rust-lang/crates.io-index"
1528
- checksum = "81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007"
1529
-
1530
- [[package]]
1531
- name = "unicode-ident"
1532
- version = "1.0.22"
1533
- source = "registry+https://github.com/rust-lang/crates.io-index"
1534
- checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1535
-
1536
- [[package]]
1537
- name = "unicode-width"
1538
- version = "0.1.14"
1539
- source = "registry+https://github.com/rust-lang/crates.io-index"
1540
- checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1541
-
1542
- [[package]]
1543
- name = "untrusted"
1544
- version = "0.9.0"
1545
- source = "registry+https://github.com/rust-lang/crates.io-index"
1546
- checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1547
-
1548
- [[package]]
1549
- name = "ureq"
1550
- version = "2.12.1"
1551
- source = "registry+https://github.com/rust-lang/crates.io-index"
1552
- checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
1553
- dependencies = [
1554
- "base64",
1555
- "flate2",
1556
- "log",
1557
- "once_cell",
1558
- "rustls",
1559
- "rustls-pki-types",
1560
- "url",
1561
- "webpki-roots 0.26.11",
1562
- ]
1563
-
1564
- [[package]]
1565
- name = "url"
1566
- version = "2.5.8"
1567
- source = "registry+https://github.com/rust-lang/crates.io-index"
1568
- checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1569
- dependencies = [
1570
- "form_urlencoded",
1571
- "idna",
1572
- "percent-encoding",
1573
- "serde",
1574
- ]
1575
-
1576
- [[package]]
1577
- name = "utf-8"
1578
- version = "0.7.6"
1579
- source = "registry+https://github.com/rust-lang/crates.io-index"
1580
- checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
1581
-
1582
- [[package]]
1583
- name = "utf8_iter"
1584
- version = "1.0.4"
1585
- source = "registry+https://github.com/rust-lang/crates.io-index"
1586
- checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1587
-
1588
- [[package]]
1589
- name = "utf8parse"
1590
- version = "0.2.2"
1591
- source = "registry+https://github.com/rust-lang/crates.io-index"
1592
- checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1593
-
1594
- [[package]]
1595
- name = "version_check"
1596
- version = "0.9.5"
1597
- source = "registry+https://github.com/rust-lang/crates.io-index"
1598
- checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1599
-
1600
- [[package]]
1601
- name = "vibe-compiler"
1602
- version = "2.0.3"
1603
- dependencies = [
1604
- "clap",
1605
- "colored",
1606
- "glob",
1607
- "html5ever",
1608
- "markup5ever",
1609
- "markup5ever_rcdom",
1610
- "notify",
1611
- "notify-debouncer-full",
1612
- "rayon",
1613
- "regex",
1614
- "rquickjs",
1615
- "serde",
1616
- "serde_json",
1617
- "swc_common",
1618
- "swc_ecma_ast",
1619
- "swc_ecma_parser",
1620
- "swc_ecma_visit",
1621
- "thiserror",
1622
- "ureq",
1623
- ]
1624
-
1625
- [[package]]
1626
- name = "walkdir"
1627
- version = "2.5.0"
1628
- source = "registry+https://github.com/rust-lang/crates.io-index"
1629
- checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1630
- dependencies = [
1631
- "same-file",
1632
- "winapi-util",
1633
- ]
1634
-
1635
- [[package]]
1636
- name = "wasi"
1637
- version = "0.11.1+wasi-snapshot-preview1"
1638
- source = "registry+https://github.com/rust-lang/crates.io-index"
1639
- checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1640
-
1641
- [[package]]
1642
- name = "webpki-roots"
1643
- version = "0.26.11"
1644
- source = "registry+https://github.com/rust-lang/crates.io-index"
1645
- checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
1646
- dependencies = [
1647
- "webpki-roots 1.0.6",
1648
- ]
1649
-
1650
- [[package]]
1651
- name = "webpki-roots"
1652
- version = "1.0.6"
1653
- source = "registry+https://github.com/rust-lang/crates.io-index"
1654
- checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
1655
- dependencies = [
1656
- "rustls-pki-types",
1657
- ]
1658
-
1659
- [[package]]
1660
- name = "winapi-util"
1661
- version = "0.1.11"
1662
- source = "registry+https://github.com/rust-lang/crates.io-index"
1663
- checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1664
- dependencies = [
1665
- "windows-sys 0.61.2",
1666
- ]
1667
-
1668
- [[package]]
1669
- name = "windows-link"
1670
- version = "0.2.1"
1671
- source = "registry+https://github.com/rust-lang/crates.io-index"
1672
- checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1673
-
1674
- [[package]]
1675
- name = "windows-sys"
1676
- version = "0.48.0"
1677
- source = "registry+https://github.com/rust-lang/crates.io-index"
1678
- checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1679
- dependencies = [
1680
- "windows-targets 0.48.5",
1681
- ]
1682
-
1683
- [[package]]
1684
- name = "windows-sys"
1685
- version = "0.52.0"
1686
- source = "registry+https://github.com/rust-lang/crates.io-index"
1687
- checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1688
- dependencies = [
1689
- "windows-targets 0.52.6",
1690
- ]
1691
-
1692
- [[package]]
1693
- name = "windows-sys"
1694
- version = "0.59.0"
1695
- source = "registry+https://github.com/rust-lang/crates.io-index"
1696
- checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1697
- dependencies = [
1698
- "windows-targets 0.52.6",
1699
- ]
1700
-
1701
- [[package]]
1702
- name = "windows-sys"
1703
- version = "0.60.2"
1704
- source = "registry+https://github.com/rust-lang/crates.io-index"
1705
- checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1706
- dependencies = [
1707
- "windows-targets 0.53.5",
1708
- ]
1709
-
1710
- [[package]]
1711
- name = "windows-sys"
1712
- version = "0.61.2"
1713
- source = "registry+https://github.com/rust-lang/crates.io-index"
1714
- checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1715
- dependencies = [
1716
- "windows-link",
1717
- ]
1718
-
1719
- [[package]]
1720
- name = "windows-targets"
1721
- version = "0.48.5"
1722
- source = "registry+https://github.com/rust-lang/crates.io-index"
1723
- checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1724
- dependencies = [
1725
- "windows_aarch64_gnullvm 0.48.5",
1726
- "windows_aarch64_msvc 0.48.5",
1727
- "windows_i686_gnu 0.48.5",
1728
- "windows_i686_msvc 0.48.5",
1729
- "windows_x86_64_gnu 0.48.5",
1730
- "windows_x86_64_gnullvm 0.48.5",
1731
- "windows_x86_64_msvc 0.48.5",
1732
- ]
1733
-
1734
- [[package]]
1735
- name = "windows-targets"
1736
- version = "0.52.6"
1737
- source = "registry+https://github.com/rust-lang/crates.io-index"
1738
- checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1739
- dependencies = [
1740
- "windows_aarch64_gnullvm 0.52.6",
1741
- "windows_aarch64_msvc 0.52.6",
1742
- "windows_i686_gnu 0.52.6",
1743
- "windows_i686_gnullvm 0.52.6",
1744
- "windows_i686_msvc 0.52.6",
1745
- "windows_x86_64_gnu 0.52.6",
1746
- "windows_x86_64_gnullvm 0.52.6",
1747
- "windows_x86_64_msvc 0.52.6",
1748
- ]
1749
-
1750
- [[package]]
1751
- name = "windows-targets"
1752
- version = "0.53.5"
1753
- source = "registry+https://github.com/rust-lang/crates.io-index"
1754
- checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1755
- dependencies = [
1756
- "windows-link",
1757
- "windows_aarch64_gnullvm 0.53.1",
1758
- "windows_aarch64_msvc 0.53.1",
1759
- "windows_i686_gnu 0.53.1",
1760
- "windows_i686_gnullvm 0.53.1",
1761
- "windows_i686_msvc 0.53.1",
1762
- "windows_x86_64_gnu 0.53.1",
1763
- "windows_x86_64_gnullvm 0.53.1",
1764
- "windows_x86_64_msvc 0.53.1",
1765
- ]
1766
-
1767
- [[package]]
1768
- name = "windows_aarch64_gnullvm"
1769
- version = "0.48.5"
1770
- source = "registry+https://github.com/rust-lang/crates.io-index"
1771
- checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1772
-
1773
- [[package]]
1774
- name = "windows_aarch64_gnullvm"
1775
- version = "0.52.6"
1776
- source = "registry+https://github.com/rust-lang/crates.io-index"
1777
- checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1778
-
1779
- [[package]]
1780
- name = "windows_aarch64_gnullvm"
1781
- version = "0.53.1"
1782
- source = "registry+https://github.com/rust-lang/crates.io-index"
1783
- checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1784
-
1785
- [[package]]
1786
- name = "windows_aarch64_msvc"
1787
- version = "0.48.5"
1788
- source = "registry+https://github.com/rust-lang/crates.io-index"
1789
- checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1790
-
1791
- [[package]]
1792
- name = "windows_aarch64_msvc"
1793
- version = "0.52.6"
1794
- source = "registry+https://github.com/rust-lang/crates.io-index"
1795
- checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1796
-
1797
- [[package]]
1798
- name = "windows_aarch64_msvc"
1799
- version = "0.53.1"
1800
- source = "registry+https://github.com/rust-lang/crates.io-index"
1801
- checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1802
-
1803
- [[package]]
1804
- name = "windows_i686_gnu"
1805
- version = "0.48.5"
1806
- source = "registry+https://github.com/rust-lang/crates.io-index"
1807
- checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1808
-
1809
- [[package]]
1810
- name = "windows_i686_gnu"
1811
- version = "0.52.6"
1812
- source = "registry+https://github.com/rust-lang/crates.io-index"
1813
- checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1814
-
1815
- [[package]]
1816
- name = "windows_i686_gnu"
1817
- version = "0.53.1"
1818
- source = "registry+https://github.com/rust-lang/crates.io-index"
1819
- checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1820
-
1821
- [[package]]
1822
- name = "windows_i686_gnullvm"
1823
- version = "0.52.6"
1824
- source = "registry+https://github.com/rust-lang/crates.io-index"
1825
- checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1826
-
1827
- [[package]]
1828
- name = "windows_i686_gnullvm"
1829
- version = "0.53.1"
1830
- source = "registry+https://github.com/rust-lang/crates.io-index"
1831
- checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1832
-
1833
- [[package]]
1834
- name = "windows_i686_msvc"
1835
- version = "0.48.5"
1836
- source = "registry+https://github.com/rust-lang/crates.io-index"
1837
- checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1838
-
1839
- [[package]]
1840
- name = "windows_i686_msvc"
1841
- version = "0.52.6"
1842
- source = "registry+https://github.com/rust-lang/crates.io-index"
1843
- checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1844
-
1845
- [[package]]
1846
- name = "windows_i686_msvc"
1847
- version = "0.53.1"
1848
- source = "registry+https://github.com/rust-lang/crates.io-index"
1849
- checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1850
-
1851
- [[package]]
1852
- name = "windows_x86_64_gnu"
1853
- version = "0.48.5"
1854
- source = "registry+https://github.com/rust-lang/crates.io-index"
1855
- checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1856
-
1857
- [[package]]
1858
- name = "windows_x86_64_gnu"
1859
- version = "0.52.6"
1860
- source = "registry+https://github.com/rust-lang/crates.io-index"
1861
- checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1862
-
1863
- [[package]]
1864
- name = "windows_x86_64_gnu"
1865
- version = "0.53.1"
1866
- source = "registry+https://github.com/rust-lang/crates.io-index"
1867
- checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1868
-
1869
- [[package]]
1870
- name = "windows_x86_64_gnullvm"
1871
- version = "0.48.5"
1872
- source = "registry+https://github.com/rust-lang/crates.io-index"
1873
- checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1874
-
1875
- [[package]]
1876
- name = "windows_x86_64_gnullvm"
1877
- version = "0.52.6"
1878
- source = "registry+https://github.com/rust-lang/crates.io-index"
1879
- checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1880
-
1881
- [[package]]
1882
- name = "windows_x86_64_gnullvm"
1883
- version = "0.53.1"
1884
- source = "registry+https://github.com/rust-lang/crates.io-index"
1885
- checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1886
-
1887
- [[package]]
1888
- name = "windows_x86_64_msvc"
1889
- version = "0.48.5"
1890
- source = "registry+https://github.com/rust-lang/crates.io-index"
1891
- checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1892
-
1893
- [[package]]
1894
- name = "windows_x86_64_msvc"
1895
- version = "0.52.6"
1896
- source = "registry+https://github.com/rust-lang/crates.io-index"
1897
- checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1898
-
1899
- [[package]]
1900
- name = "windows_x86_64_msvc"
1901
- version = "0.53.1"
1902
- source = "registry+https://github.com/rust-lang/crates.io-index"
1903
- checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1904
-
1905
- [[package]]
1906
- name = "writeable"
1907
- version = "0.6.2"
1908
- source = "registry+https://github.com/rust-lang/crates.io-index"
1909
- checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
1910
-
1911
- [[package]]
1912
- name = "xml5ever"
1913
- version = "0.18.1"
1914
- source = "registry+https://github.com/rust-lang/crates.io-index"
1915
- checksum = "9bbb26405d8e919bc1547a5aa9abc95cbfa438f04844f5fdd9dc7596b748bf69"
1916
- dependencies = [
1917
- "log",
1918
- "mac",
1919
- "markup5ever",
1920
- ]
1921
-
1922
- [[package]]
1923
- name = "yoke"
1924
- version = "0.8.1"
1925
- source = "registry+https://github.com/rust-lang/crates.io-index"
1926
- checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
1927
- dependencies = [
1928
- "stable_deref_trait",
1929
- "yoke-derive",
1930
- "zerofrom",
1931
- ]
1932
-
1933
- [[package]]
1934
- name = "yoke-derive"
1935
- version = "0.8.1"
1936
- source = "registry+https://github.com/rust-lang/crates.io-index"
1937
- checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
1938
- dependencies = [
1939
- "proc-macro2",
1940
- "quote",
1941
- "syn 2.0.114",
1942
- "synstructure",
1943
- ]
1944
-
1945
- [[package]]
1946
- name = "zerocopy"
1947
- version = "0.8.39"
1948
- source = "registry+https://github.com/rust-lang/crates.io-index"
1949
- checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
1950
- dependencies = [
1951
- "zerocopy-derive",
1952
- ]
1953
-
1954
- [[package]]
1955
- name = "zerocopy-derive"
1956
- version = "0.8.39"
1957
- source = "registry+https://github.com/rust-lang/crates.io-index"
1958
- checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
1959
- dependencies = [
1960
- "proc-macro2",
1961
- "quote",
1962
- "syn 2.0.114",
1963
- ]
1964
-
1965
- [[package]]
1966
- name = "zerofrom"
1967
- version = "0.1.6"
1968
- source = "registry+https://github.com/rust-lang/crates.io-index"
1969
- checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
1970
- dependencies = [
1971
- "zerofrom-derive",
1972
- ]
1973
-
1974
- [[package]]
1975
- name = "zerofrom-derive"
1976
- version = "0.1.6"
1977
- source = "registry+https://github.com/rust-lang/crates.io-index"
1978
- checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
1979
- dependencies = [
1980
- "proc-macro2",
1981
- "quote",
1982
- "syn 2.0.114",
1983
- "synstructure",
1984
- ]
1985
-
1986
- [[package]]
1987
- name = "zeroize"
1988
- version = "1.8.2"
1989
- source = "registry+https://github.com/rust-lang/crates.io-index"
1990
- checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
1991
-
1992
- [[package]]
1993
- name = "zerotrie"
1994
- version = "0.2.3"
1995
- source = "registry+https://github.com/rust-lang/crates.io-index"
1996
- checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
1997
- dependencies = [
1998
- "displaydoc",
1999
- "yoke",
2000
- "zerofrom",
2001
- ]
2002
-
2003
- [[package]]
2004
- name = "zerovec"
2005
- version = "0.11.5"
2006
- source = "registry+https://github.com/rust-lang/crates.io-index"
2007
- checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
2008
- dependencies = [
2009
- "yoke",
2010
- "zerofrom",
2011
- "zerovec-derive",
2012
- ]
2013
-
2014
- [[package]]
2015
- name = "zerovec-derive"
2016
- version = "0.11.2"
2017
- source = "registry+https://github.com/rust-lang/crates.io-index"
2018
- checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
2019
- dependencies = [
2020
- "proc-macro2",
2021
- "quote",
2022
- "syn 2.0.114",
2023
- ]