@ape-egg/vibe 1.3.2 → 1.6.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.
- package/CHANGELOG.md +177 -0
- package/README.md +97 -0
- package/boot.js +0 -1
- package/compiler/native/vibe-compiler-darwin-arm64 +0 -0
- package/compiler/src/Cargo.lock +719 -40
- package/compiler/src/Cargo.toml +11 -2
- package/compiler/src/compiler/PRE-RENDERING-IMPLEMENTATION.md +241 -0
- package/compiler/src/compiler/compile.rs +552 -175
- package/compiler/src/compiler/component_tagger.rs +234 -0
- package/compiler/src/compiler/iteration_optimizer.rs +351 -0
- package/compiler/src/compiler/js_analyzer.rs +572 -0
- package/compiler/src/compiler/manifest_builder.rs +251 -26
- package/compiler/src/compiler/mod.rs +5 -1
- package/compiler/src/compiler/state_extractor.rs +140 -25
- package/compiler/src/compiler/value_stamper.rs +579 -88
- package/compiler/src/compiler/watcher.rs +579 -0
- package/compiler/src/config.rs +51 -8
- package/compiler/src/main.rs +41 -28
- package/compiler/src/parser/html.rs +229 -118
- package/component.js +23 -11
- package/package.json +1 -1
- package/runtime/cleanup.js +4 -4
- package/runtime/component.js +98 -21
- package/runtime/conditionals.js +2 -2
- package/runtime/constants.js +2 -1
- package/runtime/index.js +152 -30
- package/runtime/iterate.js +27 -5
- package/runtime/parse.js +2 -1
- package/runtime/pre-compiled-iterations.js +153 -0
- package/runtime/{hyperspeed.js → pre-compiled-manifest.js} +204 -132
- package/runtime/utils.js +2 -1
- package/test-results/.last-run.json +4 -0
- package/vibe.css +19 -0
- package/runtime/component-state.js +0 -63
package/compiler/src/Cargo.lock
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 4
|
|
4
4
|
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.12"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"once_cell",
|
|
13
|
+
"version_check",
|
|
14
|
+
"zerocopy",
|
|
15
|
+
]
|
|
16
|
+
|
|
5
17
|
[[package]]
|
|
6
18
|
name = "aho-corasick"
|
|
7
19
|
version = "1.1.4"
|
|
@@ -11,6 +23,12 @@ dependencies = [
|
|
|
11
23
|
"memchr",
|
|
12
24
|
]
|
|
13
25
|
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "allocator-api2"
|
|
28
|
+
version = "0.2.21"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
31
|
+
|
|
14
32
|
[[package]]
|
|
15
33
|
name = "anstream"
|
|
16
34
|
version = "0.6.21"
|
|
@@ -61,12 +79,48 @@ dependencies = [
|
|
|
61
79
|
"windows-sys 0.61.2",
|
|
62
80
|
]
|
|
63
81
|
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "ar_archive_writer"
|
|
84
|
+
version = "0.5.1"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b"
|
|
87
|
+
dependencies = [
|
|
88
|
+
"object",
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "ast_node"
|
|
93
|
+
version = "1.0.0"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "f4d23a6d1d5f18bdbc06d9aa908880e5f49205156ba804751af731c51f5cf81a"
|
|
96
|
+
dependencies = [
|
|
97
|
+
"proc-macro2",
|
|
98
|
+
"quote",
|
|
99
|
+
"swc_macros_common",
|
|
100
|
+
"syn 2.0.114",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "autocfg"
|
|
105
|
+
version = "1.5.0"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
108
|
+
|
|
64
109
|
[[package]]
|
|
65
110
|
name = "base64"
|
|
66
111
|
version = "0.21.7"
|
|
67
112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
113
|
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
69
114
|
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "better_scoped_tls"
|
|
117
|
+
version = "0.1.2"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "297b153aa5e573b5863108a6ddc9d5c968bd0b20e75cc614ee9821d2f45679c7"
|
|
120
|
+
dependencies = [
|
|
121
|
+
"scoped-tls",
|
|
122
|
+
]
|
|
123
|
+
|
|
70
124
|
[[package]]
|
|
71
125
|
name = "bitflags"
|
|
72
126
|
version = "1.3.2"
|
|
@@ -84,6 +138,9 @@ name = "bumpalo"
|
|
|
84
138
|
version = "3.19.1"
|
|
85
139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
140
|
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
141
|
+
dependencies = [
|
|
142
|
+
"allocator-api2",
|
|
143
|
+
]
|
|
87
144
|
|
|
88
145
|
[[package]]
|
|
89
146
|
name = "bytes"
|
|
@@ -138,7 +195,7 @@ dependencies = [
|
|
|
138
195
|
"heck",
|
|
139
196
|
"proc-macro2",
|
|
140
197
|
"quote",
|
|
141
|
-
"syn",
|
|
198
|
+
"syn 2.0.114",
|
|
142
199
|
]
|
|
143
200
|
|
|
144
201
|
[[package]]
|
|
@@ -179,6 +236,40 @@ version = "0.8.7"
|
|
|
179
236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
237
|
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
181
238
|
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "crossbeam-channel"
|
|
241
|
+
version = "0.5.15"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
244
|
+
dependencies = [
|
|
245
|
+
"crossbeam-utils",
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "crossbeam-deque"
|
|
250
|
+
version = "0.8.6"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
253
|
+
dependencies = [
|
|
254
|
+
"crossbeam-epoch",
|
|
255
|
+
"crossbeam-utils",
|
|
256
|
+
]
|
|
257
|
+
|
|
258
|
+
[[package]]
|
|
259
|
+
name = "crossbeam-epoch"
|
|
260
|
+
version = "0.9.18"
|
|
261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
263
|
+
dependencies = [
|
|
264
|
+
"crossbeam-utils",
|
|
265
|
+
]
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "crossbeam-utils"
|
|
269
|
+
version = "0.8.21"
|
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
272
|
+
|
|
182
273
|
[[package]]
|
|
183
274
|
name = "displaydoc"
|
|
184
275
|
version = "0.2.5"
|
|
@@ -187,9 +278,15 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
187
278
|
dependencies = [
|
|
188
279
|
"proc-macro2",
|
|
189
280
|
"quote",
|
|
190
|
-
"syn",
|
|
281
|
+
"syn 2.0.114",
|
|
191
282
|
]
|
|
192
283
|
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "either"
|
|
286
|
+
version = "1.15.0"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
289
|
+
|
|
193
290
|
[[package]]
|
|
194
291
|
name = "encoding_rs"
|
|
195
292
|
version = "0.8.35"
|
|
@@ -221,6 +318,26 @@ version = "2.3.0"
|
|
|
221
318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
319
|
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
223
320
|
|
|
321
|
+
[[package]]
|
|
322
|
+
name = "file-id"
|
|
323
|
+
version = "0.2.3"
|
|
324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
+
checksum = "e1fc6a637b6dc58414714eddd9170ff187ecb0933d4c7024d1abbd23a3cc26e9"
|
|
326
|
+
dependencies = [
|
|
327
|
+
"windows-sys 0.60.2",
|
|
328
|
+
]
|
|
329
|
+
|
|
330
|
+
[[package]]
|
|
331
|
+
name = "filetime"
|
|
332
|
+
version = "0.2.27"
|
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
+
checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
|
|
335
|
+
dependencies = [
|
|
336
|
+
"cfg-if",
|
|
337
|
+
"libc",
|
|
338
|
+
"libredox",
|
|
339
|
+
]
|
|
340
|
+
|
|
224
341
|
[[package]]
|
|
225
342
|
name = "find-msvc-tools"
|
|
226
343
|
version = "0.1.9"
|
|
@@ -257,6 +374,26 @@ dependencies = [
|
|
|
257
374
|
"percent-encoding",
|
|
258
375
|
]
|
|
259
376
|
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "from_variant"
|
|
379
|
+
version = "1.0.0"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "e8d8947525c49c73130b5a7187b55b027b6b78fe60268d9f4c283ed690698cb1"
|
|
382
|
+
dependencies = [
|
|
383
|
+
"proc-macro2",
|
|
384
|
+
"swc_macros_common",
|
|
385
|
+
"syn 2.0.114",
|
|
386
|
+
]
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "fsevent-sys"
|
|
390
|
+
version = "4.1.0"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"libc",
|
|
395
|
+
]
|
|
396
|
+
|
|
260
397
|
[[package]]
|
|
261
398
|
name = "futf"
|
|
262
399
|
version = "0.1.5"
|
|
@@ -327,6 +464,12 @@ dependencies = [
|
|
|
327
464
|
"wasip2",
|
|
328
465
|
]
|
|
329
466
|
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "glob"
|
|
469
|
+
version = "0.3.3"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
472
|
+
|
|
330
473
|
[[package]]
|
|
331
474
|
name = "h2"
|
|
332
475
|
version = "0.3.27"
|
|
@@ -346,6 +489,16 @@ dependencies = [
|
|
|
346
489
|
"tracing",
|
|
347
490
|
]
|
|
348
491
|
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "hashbrown"
|
|
494
|
+
version = "0.14.5"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
497
|
+
dependencies = [
|
|
498
|
+
"ahash",
|
|
499
|
+
"allocator-api2",
|
|
500
|
+
]
|
|
501
|
+
|
|
349
502
|
[[package]]
|
|
350
503
|
name = "hashbrown"
|
|
351
504
|
version = "0.16.1"
|
|
@@ -358,6 +511,20 @@ version = "0.5.0"
|
|
|
358
511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
512
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
360
513
|
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "hstr"
|
|
516
|
+
version = "0.2.17"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "a1a26def229ea95a8709dad32868d975d0dd40235bd2ce82920e4a8fe692b5e0"
|
|
519
|
+
dependencies = [
|
|
520
|
+
"hashbrown 0.14.5",
|
|
521
|
+
"new_debug_unreachable",
|
|
522
|
+
"once_cell",
|
|
523
|
+
"phf",
|
|
524
|
+
"rustc-hash",
|
|
525
|
+
"triomphe",
|
|
526
|
+
]
|
|
527
|
+
|
|
361
528
|
[[package]]
|
|
362
529
|
name = "html5ever"
|
|
363
530
|
version = "0.27.0"
|
|
@@ -369,7 +536,7 @@ dependencies = [
|
|
|
369
536
|
"markup5ever",
|
|
370
537
|
"proc-macro2",
|
|
371
538
|
"quote",
|
|
372
|
-
"syn",
|
|
539
|
+
"syn 2.0.114",
|
|
373
540
|
]
|
|
374
541
|
|
|
375
542
|
[[package]]
|
|
@@ -552,7 +719,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
552
719
|
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
553
720
|
dependencies = [
|
|
554
721
|
"equivalent",
|
|
555
|
-
"hashbrown",
|
|
722
|
+
"hashbrown 0.16.1",
|
|
723
|
+
]
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "inotify"
|
|
727
|
+
version = "0.9.6"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
|
|
730
|
+
dependencies = [
|
|
731
|
+
"bitflags 1.3.2",
|
|
732
|
+
"inotify-sys",
|
|
733
|
+
"libc",
|
|
734
|
+
]
|
|
735
|
+
|
|
736
|
+
[[package]]
|
|
737
|
+
name = "inotify-sys"
|
|
738
|
+
version = "0.1.5"
|
|
739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
+
checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
|
|
741
|
+
dependencies = [
|
|
742
|
+
"libc",
|
|
556
743
|
]
|
|
557
744
|
|
|
558
745
|
[[package]]
|
|
@@ -561,6 +748,18 @@ version = "2.11.0"
|
|
|
561
748
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
562
749
|
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
563
750
|
|
|
751
|
+
[[package]]
|
|
752
|
+
name = "is-macro"
|
|
753
|
+
version = "0.3.7"
|
|
754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
|
+
checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
|
|
756
|
+
dependencies = [
|
|
757
|
+
"heck",
|
|
758
|
+
"proc-macro2",
|
|
759
|
+
"quote",
|
|
760
|
+
"syn 2.0.114",
|
|
761
|
+
]
|
|
762
|
+
|
|
564
763
|
[[package]]
|
|
565
764
|
name = "is_terminal_polyfill"
|
|
566
765
|
version = "1.70.2"
|
|
@@ -583,6 +782,26 @@ dependencies = [
|
|
|
583
782
|
"wasm-bindgen",
|
|
584
783
|
]
|
|
585
784
|
|
|
785
|
+
[[package]]
|
|
786
|
+
name = "kqueue"
|
|
787
|
+
version = "1.1.1"
|
|
788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
+
checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
|
|
790
|
+
dependencies = [
|
|
791
|
+
"kqueue-sys",
|
|
792
|
+
"libc",
|
|
793
|
+
]
|
|
794
|
+
|
|
795
|
+
[[package]]
|
|
796
|
+
name = "kqueue-sys"
|
|
797
|
+
version = "1.0.4"
|
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
+
checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
|
|
800
|
+
dependencies = [
|
|
801
|
+
"bitflags 1.3.2",
|
|
802
|
+
"libc",
|
|
803
|
+
]
|
|
804
|
+
|
|
586
805
|
[[package]]
|
|
587
806
|
name = "lazy_static"
|
|
588
807
|
version = "1.5.0"
|
|
@@ -595,6 +814,17 @@ version = "0.2.180"
|
|
|
595
814
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
815
|
checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
|
|
597
816
|
|
|
817
|
+
[[package]]
|
|
818
|
+
name = "libredox"
|
|
819
|
+
version = "0.1.12"
|
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
+
checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
|
|
822
|
+
dependencies = [
|
|
823
|
+
"bitflags 2.10.0",
|
|
824
|
+
"libc",
|
|
825
|
+
"redox_syscall 0.7.1",
|
|
826
|
+
]
|
|
827
|
+
|
|
598
828
|
[[package]]
|
|
599
829
|
name = "linux-raw-sys"
|
|
600
830
|
version = "0.11.0"
|
|
@@ -666,6 +896,18 @@ version = "0.3.17"
|
|
|
666
896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
897
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
668
898
|
|
|
899
|
+
[[package]]
|
|
900
|
+
name = "mio"
|
|
901
|
+
version = "0.8.11"
|
|
902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
903
|
+
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
|
|
904
|
+
dependencies = [
|
|
905
|
+
"libc",
|
|
906
|
+
"log",
|
|
907
|
+
"wasi",
|
|
908
|
+
"windows-sys 0.48.0",
|
|
909
|
+
]
|
|
910
|
+
|
|
669
911
|
[[package]]
|
|
670
912
|
name = "mio"
|
|
671
913
|
version = "1.1.1"
|
|
@@ -700,6 +942,77 @@ version = "1.0.6"
|
|
|
700
942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
943
|
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
702
944
|
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "notify"
|
|
947
|
+
version = "6.1.1"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
|
|
950
|
+
dependencies = [
|
|
951
|
+
"bitflags 2.10.0",
|
|
952
|
+
"crossbeam-channel",
|
|
953
|
+
"filetime",
|
|
954
|
+
"fsevent-sys",
|
|
955
|
+
"inotify",
|
|
956
|
+
"kqueue",
|
|
957
|
+
"libc",
|
|
958
|
+
"log",
|
|
959
|
+
"mio 0.8.11",
|
|
960
|
+
"walkdir",
|
|
961
|
+
"windows-sys 0.48.0",
|
|
962
|
+
]
|
|
963
|
+
|
|
964
|
+
[[package]]
|
|
965
|
+
name = "notify-debouncer-full"
|
|
966
|
+
version = "0.3.2"
|
|
967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
968
|
+
checksum = "fb7fd166739789c9ff169e654dc1501373db9d80a4c3f972817c8a4d7cf8f34e"
|
|
969
|
+
dependencies = [
|
|
970
|
+
"crossbeam-channel",
|
|
971
|
+
"file-id",
|
|
972
|
+
"log",
|
|
973
|
+
"notify",
|
|
974
|
+
"parking_lot",
|
|
975
|
+
"walkdir",
|
|
976
|
+
]
|
|
977
|
+
|
|
978
|
+
[[package]]
|
|
979
|
+
name = "num-bigint"
|
|
980
|
+
version = "0.4.6"
|
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
983
|
+
dependencies = [
|
|
984
|
+
"num-integer",
|
|
985
|
+
"num-traits",
|
|
986
|
+
"serde",
|
|
987
|
+
]
|
|
988
|
+
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "num-integer"
|
|
991
|
+
version = "0.1.46"
|
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
994
|
+
dependencies = [
|
|
995
|
+
"num-traits",
|
|
996
|
+
]
|
|
997
|
+
|
|
998
|
+
[[package]]
|
|
999
|
+
name = "num-traits"
|
|
1000
|
+
version = "0.2.19"
|
|
1001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1002
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1003
|
+
dependencies = [
|
|
1004
|
+
"autocfg",
|
|
1005
|
+
]
|
|
1006
|
+
|
|
1007
|
+
[[package]]
|
|
1008
|
+
name = "object"
|
|
1009
|
+
version = "0.37.3"
|
|
1010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
1012
|
+
dependencies = [
|
|
1013
|
+
"memchr",
|
|
1014
|
+
]
|
|
1015
|
+
|
|
703
1016
|
[[package]]
|
|
704
1017
|
name = "once_cell"
|
|
705
1018
|
version = "1.21.3"
|
|
@@ -735,7 +1048,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
|
735
1048
|
dependencies = [
|
|
736
1049
|
"proc-macro2",
|
|
737
1050
|
"quote",
|
|
738
|
-
"syn",
|
|
1051
|
+
"syn 2.0.114",
|
|
739
1052
|
]
|
|
740
1053
|
|
|
741
1054
|
[[package]]
|
|
@@ -774,7 +1087,7 @@ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
|
774
1087
|
dependencies = [
|
|
775
1088
|
"cfg-if",
|
|
776
1089
|
"libc",
|
|
777
|
-
"redox_syscall",
|
|
1090
|
+
"redox_syscall 0.5.18",
|
|
778
1091
|
"smallvec",
|
|
779
1092
|
"windows-link",
|
|
780
1093
|
]
|
|
@@ -791,6 +1104,7 @@ version = "0.11.3"
|
|
|
791
1104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
1105
|
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
793
1106
|
dependencies = [
|
|
1107
|
+
"phf_macros",
|
|
794
1108
|
"phf_shared",
|
|
795
1109
|
]
|
|
796
1110
|
|
|
@@ -814,13 +1128,26 @@ dependencies = [
|
|
|
814
1128
|
"rand",
|
|
815
1129
|
]
|
|
816
1130
|
|
|
1131
|
+
[[package]]
|
|
1132
|
+
name = "phf_macros"
|
|
1133
|
+
version = "0.11.3"
|
|
1134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
|
+
checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
|
|
1136
|
+
dependencies = [
|
|
1137
|
+
"phf_generator",
|
|
1138
|
+
"phf_shared",
|
|
1139
|
+
"proc-macro2",
|
|
1140
|
+
"quote",
|
|
1141
|
+
"syn 2.0.114",
|
|
1142
|
+
]
|
|
1143
|
+
|
|
817
1144
|
[[package]]
|
|
818
1145
|
name = "phf_shared"
|
|
819
1146
|
version = "0.11.3"
|
|
820
1147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
1148
|
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
822
1149
|
dependencies = [
|
|
823
|
-
"siphasher",
|
|
1150
|
+
"siphasher 1.0.1",
|
|
824
1151
|
]
|
|
825
1152
|
|
|
826
1153
|
[[package]]
|
|
@@ -865,6 +1192,36 @@ dependencies = [
|
|
|
865
1192
|
"unicode-ident",
|
|
866
1193
|
]
|
|
867
1194
|
|
|
1195
|
+
[[package]]
|
|
1196
|
+
name = "psm"
|
|
1197
|
+
version = "0.1.30"
|
|
1198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1199
|
+
checksum = "3852766467df634d74f0b2d7819bf8dc483a0eb2e3b0f50f756f9cfe8b0d18d8"
|
|
1200
|
+
dependencies = [
|
|
1201
|
+
"ar_archive_writer",
|
|
1202
|
+
"cc",
|
|
1203
|
+
]
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "ptr_meta"
|
|
1207
|
+
version = "0.1.4"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
|
|
1210
|
+
dependencies = [
|
|
1211
|
+
"ptr_meta_derive",
|
|
1212
|
+
]
|
|
1213
|
+
|
|
1214
|
+
[[package]]
|
|
1215
|
+
name = "ptr_meta_derive"
|
|
1216
|
+
version = "0.1.4"
|
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
+
checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
|
|
1219
|
+
dependencies = [
|
|
1220
|
+
"proc-macro2",
|
|
1221
|
+
"quote",
|
|
1222
|
+
"syn 1.0.109",
|
|
1223
|
+
]
|
|
1224
|
+
|
|
868
1225
|
[[package]]
|
|
869
1226
|
name = "quote"
|
|
870
1227
|
version = "1.0.44"
|
|
@@ -895,6 +1252,26 @@ version = "0.6.4"
|
|
|
895
1252
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
1253
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
897
1254
|
|
|
1255
|
+
[[package]]
|
|
1256
|
+
name = "rayon"
|
|
1257
|
+
version = "1.11.0"
|
|
1258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1259
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
1260
|
+
dependencies = [
|
|
1261
|
+
"either",
|
|
1262
|
+
"rayon-core",
|
|
1263
|
+
]
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "rayon-core"
|
|
1267
|
+
version = "1.13.0"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1270
|
+
dependencies = [
|
|
1271
|
+
"crossbeam-deque",
|
|
1272
|
+
"crossbeam-utils",
|
|
1273
|
+
]
|
|
1274
|
+
|
|
898
1275
|
[[package]]
|
|
899
1276
|
name = "redox_syscall"
|
|
900
1277
|
version = "0.5.18"
|
|
@@ -904,6 +1281,15 @@ dependencies = [
|
|
|
904
1281
|
"bitflags 2.10.0",
|
|
905
1282
|
]
|
|
906
1283
|
|
|
1284
|
+
[[package]]
|
|
1285
|
+
name = "redox_syscall"
|
|
1286
|
+
version = "0.7.1"
|
|
1287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1288
|
+
checksum = "35985aa610addc02e24fc232012c86fd11f14111180f902b67e2d5331f8ebf2b"
|
|
1289
|
+
dependencies = [
|
|
1290
|
+
"bitflags 2.10.0",
|
|
1291
|
+
]
|
|
1292
|
+
|
|
907
1293
|
[[package]]
|
|
908
1294
|
name = "regex"
|
|
909
1295
|
version = "1.12.2"
|
|
@@ -973,6 +1359,39 @@ dependencies = [
|
|
|
973
1359
|
"winreg",
|
|
974
1360
|
]
|
|
975
1361
|
|
|
1362
|
+
[[package]]
|
|
1363
|
+
name = "rquickjs"
|
|
1364
|
+
version = "0.6.2"
|
|
1365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1366
|
+
checksum = "9cbd33e0b668aea0ab238b9164523aca929096f9f40834700d71d91dd4888882"
|
|
1367
|
+
dependencies = [
|
|
1368
|
+
"rquickjs-core",
|
|
1369
|
+
]
|
|
1370
|
+
|
|
1371
|
+
[[package]]
|
|
1372
|
+
name = "rquickjs-core"
|
|
1373
|
+
version = "0.6.2"
|
|
1374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1375
|
+
checksum = "2e9129d69b7b8f7ee8ad1da5b12c7f4a8a8acd45f2e6dd9cb2ee1bc5a1f2fa3d"
|
|
1376
|
+
dependencies = [
|
|
1377
|
+
"rquickjs-sys",
|
|
1378
|
+
]
|
|
1379
|
+
|
|
1380
|
+
[[package]]
|
|
1381
|
+
name = "rquickjs-sys"
|
|
1382
|
+
version = "0.6.2"
|
|
1383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1384
|
+
checksum = "bf6f2288d8e7fbb5130f62cf720451641e99d55f6fde9db86aa2914ecb553fd2"
|
|
1385
|
+
dependencies = [
|
|
1386
|
+
"cc",
|
|
1387
|
+
]
|
|
1388
|
+
|
|
1389
|
+
[[package]]
|
|
1390
|
+
name = "rustc-hash"
|
|
1391
|
+
version = "1.1.0"
|
|
1392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1393
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1394
|
+
|
|
976
1395
|
[[package]]
|
|
977
1396
|
name = "rustix"
|
|
978
1397
|
version = "1.1.3"
|
|
@@ -1025,6 +1444,12 @@ dependencies = [
|
|
|
1025
1444
|
"windows-sys 0.61.2",
|
|
1026
1445
|
]
|
|
1027
1446
|
|
|
1447
|
+
[[package]]
|
|
1448
|
+
name = "scoped-tls"
|
|
1449
|
+
version = "1.0.1"
|
|
1450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
+
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
1452
|
+
|
|
1028
1453
|
[[package]]
|
|
1029
1454
|
name = "scopeguard"
|
|
1030
1455
|
version = "1.2.0"
|
|
@@ -1056,45 +1481,34 @@ dependencies = [
|
|
|
1056
1481
|
|
|
1057
1482
|
[[package]]
|
|
1058
1483
|
name = "serde"
|
|
1059
|
-
version = "1.0.
|
|
1484
|
+
version = "1.0.210"
|
|
1060
1485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
-
checksum = "
|
|
1062
|
-
dependencies = [
|
|
1063
|
-
"serde_core",
|
|
1064
|
-
"serde_derive",
|
|
1065
|
-
]
|
|
1066
|
-
|
|
1067
|
-
[[package]]
|
|
1068
|
-
name = "serde_core"
|
|
1069
|
-
version = "1.0.228"
|
|
1070
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
-
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1486
|
+
checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
|
|
1072
1487
|
dependencies = [
|
|
1073
1488
|
"serde_derive",
|
|
1074
1489
|
]
|
|
1075
1490
|
|
|
1076
1491
|
[[package]]
|
|
1077
1492
|
name = "serde_derive"
|
|
1078
|
-
version = "1.0.
|
|
1493
|
+
version = "1.0.210"
|
|
1079
1494
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
-
checksum = "
|
|
1495
|
+
checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
|
|
1081
1496
|
dependencies = [
|
|
1082
1497
|
"proc-macro2",
|
|
1083
1498
|
"quote",
|
|
1084
|
-
"syn",
|
|
1499
|
+
"syn 2.0.114",
|
|
1085
1500
|
]
|
|
1086
1501
|
|
|
1087
1502
|
[[package]]
|
|
1088
1503
|
name = "serde_json"
|
|
1089
|
-
version = "1.0.
|
|
1504
|
+
version = "1.0.143"
|
|
1090
1505
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
-
checksum = "
|
|
1506
|
+
checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
|
|
1092
1507
|
dependencies = [
|
|
1093
1508
|
"itoa",
|
|
1094
1509
|
"memchr",
|
|
1510
|
+
"ryu",
|
|
1095
1511
|
"serde",
|
|
1096
|
-
"serde_core",
|
|
1097
|
-
"zmij",
|
|
1098
1512
|
]
|
|
1099
1513
|
|
|
1100
1514
|
[[package]]
|
|
@@ -1115,6 +1529,12 @@ version = "1.3.0"
|
|
|
1115
1529
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
1530
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1117
1531
|
|
|
1532
|
+
[[package]]
|
|
1533
|
+
name = "siphasher"
|
|
1534
|
+
version = "0.3.11"
|
|
1535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
1537
|
+
|
|
1118
1538
|
[[package]]
|
|
1119
1539
|
name = "siphasher"
|
|
1120
1540
|
version = "1.0.1"
|
|
@@ -1133,6 +1553,17 @@ version = "1.15.1"
|
|
|
1133
1553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
1554
|
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1135
1555
|
|
|
1556
|
+
[[package]]
|
|
1557
|
+
name = "smartstring"
|
|
1558
|
+
version = "1.0.1"
|
|
1559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1560
|
+
checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
|
|
1561
|
+
dependencies = [
|
|
1562
|
+
"autocfg",
|
|
1563
|
+
"static_assertions",
|
|
1564
|
+
"version_check",
|
|
1565
|
+
]
|
|
1566
|
+
|
|
1136
1567
|
[[package]]
|
|
1137
1568
|
name = "socket2"
|
|
1138
1569
|
version = "0.5.10"
|
|
@@ -1159,6 +1590,25 @@ version = "1.2.1"
|
|
|
1159
1590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1160
1591
|
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1161
1592
|
|
|
1593
|
+
[[package]]
|
|
1594
|
+
name = "stacker"
|
|
1595
|
+
version = "0.1.23"
|
|
1596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1597
|
+
checksum = "08d74a23609d509411d10e2176dc2a4346e3b4aea2e7b1869f19fdedbc71c013"
|
|
1598
|
+
dependencies = [
|
|
1599
|
+
"cc",
|
|
1600
|
+
"cfg-if",
|
|
1601
|
+
"libc",
|
|
1602
|
+
"psm",
|
|
1603
|
+
"windows-sys 0.59.0",
|
|
1604
|
+
]
|
|
1605
|
+
|
|
1606
|
+
[[package]]
|
|
1607
|
+
name = "static_assertions"
|
|
1608
|
+
version = "1.1.0"
|
|
1609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1610
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1611
|
+
|
|
1162
1612
|
[[package]]
|
|
1163
1613
|
name = "string_cache"
|
|
1164
1614
|
version = "0.8.9"
|
|
@@ -1184,12 +1634,172 @@ dependencies = [
|
|
|
1184
1634
|
"quote",
|
|
1185
1635
|
]
|
|
1186
1636
|
|
|
1637
|
+
[[package]]
|
|
1638
|
+
name = "string_enum"
|
|
1639
|
+
version = "0.4.4"
|
|
1640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1641
|
+
checksum = "05e383308aebc257e7d7920224fa055c632478d92744eca77f99be8fa1545b90"
|
|
1642
|
+
dependencies = [
|
|
1643
|
+
"proc-macro2",
|
|
1644
|
+
"quote",
|
|
1645
|
+
"swc_macros_common",
|
|
1646
|
+
"syn 2.0.114",
|
|
1647
|
+
]
|
|
1648
|
+
|
|
1187
1649
|
[[package]]
|
|
1188
1650
|
name = "strsim"
|
|
1189
1651
|
version = "0.11.1"
|
|
1190
1652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
1653
|
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1192
1654
|
|
|
1655
|
+
[[package]]
|
|
1656
|
+
name = "swc_allocator"
|
|
1657
|
+
version = "0.1.10"
|
|
1658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1659
|
+
checksum = "76aa0eb65c0f39f9b6d82a7e5192c30f7ac9a78f084a21f270de1d8c600ca388"
|
|
1660
|
+
dependencies = [
|
|
1661
|
+
"bumpalo",
|
|
1662
|
+
"hashbrown 0.14.5",
|
|
1663
|
+
"ptr_meta",
|
|
1664
|
+
"rustc-hash",
|
|
1665
|
+
"triomphe",
|
|
1666
|
+
]
|
|
1667
|
+
|
|
1668
|
+
[[package]]
|
|
1669
|
+
name = "swc_atoms"
|
|
1670
|
+
version = "1.0.2"
|
|
1671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1672
|
+
checksum = "b25ff0f3fd48ab1a95d86fd0505fdd1ac904f84d0350dc8222bbc824e9d4fdf6"
|
|
1673
|
+
dependencies = [
|
|
1674
|
+
"hstr",
|
|
1675
|
+
"once_cell",
|
|
1676
|
+
"rustc-hash",
|
|
1677
|
+
"serde",
|
|
1678
|
+
]
|
|
1679
|
+
|
|
1680
|
+
[[package]]
|
|
1681
|
+
name = "swc_common"
|
|
1682
|
+
version = "0.40.1"
|
|
1683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
|
+
checksum = "f355465eaed1104244ce918b7ffb77ceb109aabeb74b04b98acae85683b0215b"
|
|
1685
|
+
dependencies = [
|
|
1686
|
+
"ast_node",
|
|
1687
|
+
"better_scoped_tls",
|
|
1688
|
+
"cfg-if",
|
|
1689
|
+
"either",
|
|
1690
|
+
"from_variant",
|
|
1691
|
+
"new_debug_unreachable",
|
|
1692
|
+
"num-bigint",
|
|
1693
|
+
"once_cell",
|
|
1694
|
+
"rustc-hash",
|
|
1695
|
+
"serde",
|
|
1696
|
+
"siphasher 0.3.11",
|
|
1697
|
+
"swc_allocator",
|
|
1698
|
+
"swc_atoms",
|
|
1699
|
+
"swc_eq_ignore_macros",
|
|
1700
|
+
"swc_visit",
|
|
1701
|
+
"tracing",
|
|
1702
|
+
"unicode-width",
|
|
1703
|
+
"url",
|
|
1704
|
+
]
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "swc_ecma_ast"
|
|
1708
|
+
version = "0.121.0"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "1628b2c0c6349c1960b007fda04e0c1537480e0d0b1405305ef5846b752aa7a8"
|
|
1711
|
+
dependencies = [
|
|
1712
|
+
"bitflags 2.10.0",
|
|
1713
|
+
"is-macro",
|
|
1714
|
+
"num-bigint",
|
|
1715
|
+
"phf",
|
|
1716
|
+
"scoped-tls",
|
|
1717
|
+
"string_enum",
|
|
1718
|
+
"swc_atoms",
|
|
1719
|
+
"swc_common",
|
|
1720
|
+
"unicode-id-start",
|
|
1721
|
+
]
|
|
1722
|
+
|
|
1723
|
+
[[package]]
|
|
1724
|
+
name = "swc_ecma_parser"
|
|
1725
|
+
version = "0.152.0"
|
|
1726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1727
|
+
checksum = "9ef96894fa0fb3fba233ede22a75a7ddd8b7f0727a40aa8d1028b5dd25013d2e"
|
|
1728
|
+
dependencies = [
|
|
1729
|
+
"either",
|
|
1730
|
+
"new_debug_unreachable",
|
|
1731
|
+
"num-bigint",
|
|
1732
|
+
"num-traits",
|
|
1733
|
+
"phf",
|
|
1734
|
+
"serde",
|
|
1735
|
+
"smallvec",
|
|
1736
|
+
"smartstring",
|
|
1737
|
+
"stacker",
|
|
1738
|
+
"swc_atoms",
|
|
1739
|
+
"swc_common",
|
|
1740
|
+
"swc_ecma_ast",
|
|
1741
|
+
"tracing",
|
|
1742
|
+
"typed-arena",
|
|
1743
|
+
]
|
|
1744
|
+
|
|
1745
|
+
[[package]]
|
|
1746
|
+
name = "swc_ecma_visit"
|
|
1747
|
+
version = "0.107.0"
|
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
|
+
checksum = "15bd17e03251272ee04d1155036be5288055ab43d40ab2d9fd63ff815d326dad"
|
|
1750
|
+
dependencies = [
|
|
1751
|
+
"new_debug_unreachable",
|
|
1752
|
+
"num-bigint",
|
|
1753
|
+
"swc_atoms",
|
|
1754
|
+
"swc_common",
|
|
1755
|
+
"swc_ecma_ast",
|
|
1756
|
+
"swc_visit",
|
|
1757
|
+
"tracing",
|
|
1758
|
+
]
|
|
1759
|
+
|
|
1760
|
+
[[package]]
|
|
1761
|
+
name = "swc_eq_ignore_macros"
|
|
1762
|
+
version = "0.1.4"
|
|
1763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1764
|
+
checksum = "63db0adcff29d220c3d151c5b25c0eabe7e32dd936212b84cdaa1392e3130497"
|
|
1765
|
+
dependencies = [
|
|
1766
|
+
"proc-macro2",
|
|
1767
|
+
"quote",
|
|
1768
|
+
"syn 2.0.114",
|
|
1769
|
+
]
|
|
1770
|
+
|
|
1771
|
+
[[package]]
|
|
1772
|
+
name = "swc_macros_common"
|
|
1773
|
+
version = "0.3.14"
|
|
1774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1775
|
+
checksum = "27e18fbfe83811ffae2bb23727e45829a0d19c6870bced7c0f545cc99ad248dd"
|
|
1776
|
+
dependencies = [
|
|
1777
|
+
"proc-macro2",
|
|
1778
|
+
"quote",
|
|
1779
|
+
"syn 2.0.114",
|
|
1780
|
+
]
|
|
1781
|
+
|
|
1782
|
+
[[package]]
|
|
1783
|
+
name = "swc_visit"
|
|
1784
|
+
version = "0.6.2"
|
|
1785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1786
|
+
checksum = "1ceb044142ba2719ef9eb3b6b454fce61ab849eb696c34d190f04651955c613d"
|
|
1787
|
+
dependencies = [
|
|
1788
|
+
"either",
|
|
1789
|
+
"new_debug_unreachable",
|
|
1790
|
+
]
|
|
1791
|
+
|
|
1792
|
+
[[package]]
|
|
1793
|
+
name = "syn"
|
|
1794
|
+
version = "1.0.109"
|
|
1795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1796
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
1797
|
+
dependencies = [
|
|
1798
|
+
"proc-macro2",
|
|
1799
|
+
"quote",
|
|
1800
|
+
"unicode-ident",
|
|
1801
|
+
]
|
|
1802
|
+
|
|
1193
1803
|
[[package]]
|
|
1194
1804
|
name = "syn"
|
|
1195
1805
|
version = "2.0.114"
|
|
@@ -1215,7 +1825,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
|
1215
1825
|
dependencies = [
|
|
1216
1826
|
"proc-macro2",
|
|
1217
1827
|
"quote",
|
|
1218
|
-
"syn",
|
|
1828
|
+
"syn 2.0.114",
|
|
1219
1829
|
]
|
|
1220
1830
|
|
|
1221
1831
|
[[package]]
|
|
@@ -1280,7 +1890,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
1280
1890
|
dependencies = [
|
|
1281
1891
|
"proc-macro2",
|
|
1282
1892
|
"quote",
|
|
1283
|
-
"syn",
|
|
1893
|
+
"syn 2.0.114",
|
|
1284
1894
|
]
|
|
1285
1895
|
|
|
1286
1896
|
[[package]]
|
|
@@ -1301,7 +1911,7 @@ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
|
1301
1911
|
dependencies = [
|
|
1302
1912
|
"bytes",
|
|
1303
1913
|
"libc",
|
|
1304
|
-
"mio",
|
|
1914
|
+
"mio 1.1.1",
|
|
1305
1915
|
"pin-project-lite",
|
|
1306
1916
|
"socket2 0.6.2",
|
|
1307
1917
|
"windows-sys 0.61.2",
|
|
@@ -1343,9 +1953,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1343
1953
|
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1344
1954
|
dependencies = [
|
|
1345
1955
|
"pin-project-lite",
|
|
1956
|
+
"tracing-attributes",
|
|
1346
1957
|
"tracing-core",
|
|
1347
1958
|
]
|
|
1348
1959
|
|
|
1960
|
+
[[package]]
|
|
1961
|
+
name = "tracing-attributes"
|
|
1962
|
+
version = "0.1.31"
|
|
1963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1964
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
1965
|
+
dependencies = [
|
|
1966
|
+
"proc-macro2",
|
|
1967
|
+
"quote",
|
|
1968
|
+
"syn 2.0.114",
|
|
1969
|
+
]
|
|
1970
|
+
|
|
1349
1971
|
[[package]]
|
|
1350
1972
|
name = "tracing-core"
|
|
1351
1973
|
version = "0.1.36"
|
|
@@ -1355,18 +1977,46 @@ dependencies = [
|
|
|
1355
1977
|
"once_cell",
|
|
1356
1978
|
]
|
|
1357
1979
|
|
|
1980
|
+
[[package]]
|
|
1981
|
+
name = "triomphe"
|
|
1982
|
+
version = "0.1.15"
|
|
1983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
+
checksum = "dd69c5aa8f924c7519d6372789a74eac5b94fb0f8fcf0d4a97eb0bfc3e785f39"
|
|
1985
|
+
dependencies = [
|
|
1986
|
+
"serde",
|
|
1987
|
+
"stable_deref_trait",
|
|
1988
|
+
]
|
|
1989
|
+
|
|
1358
1990
|
[[package]]
|
|
1359
1991
|
name = "try-lock"
|
|
1360
1992
|
version = "0.2.5"
|
|
1361
1993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
1994
|
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
1363
1995
|
|
|
1996
|
+
[[package]]
|
|
1997
|
+
name = "typed-arena"
|
|
1998
|
+
version = "2.0.2"
|
|
1999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2000
|
+
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
|
2001
|
+
|
|
2002
|
+
[[package]]
|
|
2003
|
+
name = "unicode-id-start"
|
|
2004
|
+
version = "1.4.0"
|
|
2005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2006
|
+
checksum = "81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007"
|
|
2007
|
+
|
|
1364
2008
|
[[package]]
|
|
1365
2009
|
name = "unicode-ident"
|
|
1366
2010
|
version = "1.0.22"
|
|
1367
2011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
2012
|
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
1369
2013
|
|
|
2014
|
+
[[package]]
|
|
2015
|
+
name = "unicode-width"
|
|
2016
|
+
version = "0.1.14"
|
|
2017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2018
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
2019
|
+
|
|
1370
2020
|
[[package]]
|
|
1371
2021
|
name = "url"
|
|
1372
2022
|
version = "2.5.8"
|
|
@@ -1403,20 +2053,35 @@ version = "0.2.15"
|
|
|
1403
2053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1404
2054
|
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
1405
2055
|
|
|
2056
|
+
[[package]]
|
|
2057
|
+
name = "version_check"
|
|
2058
|
+
version = "0.9.5"
|
|
2059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2060
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2061
|
+
|
|
1406
2062
|
[[package]]
|
|
1407
2063
|
name = "vibe-compiler"
|
|
1408
2064
|
version = "0.1.0"
|
|
1409
2065
|
dependencies = [
|
|
1410
2066
|
"clap",
|
|
1411
2067
|
"colored",
|
|
2068
|
+
"glob",
|
|
1412
2069
|
"html5ever",
|
|
2070
|
+
"markup5ever",
|
|
1413
2071
|
"markup5ever_rcdom",
|
|
2072
|
+
"notify",
|
|
2073
|
+
"notify-debouncer-full",
|
|
2074
|
+
"rayon",
|
|
1414
2075
|
"regex",
|
|
1415
2076
|
"reqwest",
|
|
2077
|
+
"rquickjs",
|
|
1416
2078
|
"serde",
|
|
1417
2079
|
"serde_json",
|
|
2080
|
+
"swc_common",
|
|
2081
|
+
"swc_ecma_ast",
|
|
2082
|
+
"swc_ecma_parser",
|
|
2083
|
+
"swc_ecma_visit",
|
|
1418
2084
|
"thiserror",
|
|
1419
|
-
"walkdir",
|
|
1420
2085
|
]
|
|
1421
2086
|
|
|
1422
2087
|
[[package]]
|
|
@@ -1499,7 +2164,7 @@ dependencies = [
|
|
|
1499
2164
|
"bumpalo",
|
|
1500
2165
|
"proc-macro2",
|
|
1501
2166
|
"quote",
|
|
1502
|
-
"syn",
|
|
2167
|
+
"syn 2.0.114",
|
|
1503
2168
|
"wasm-bindgen-shared",
|
|
1504
2169
|
]
|
|
1505
2170
|
|
|
@@ -1820,10 +2485,30 @@ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
|
1820
2485
|
dependencies = [
|
|
1821
2486
|
"proc-macro2",
|
|
1822
2487
|
"quote",
|
|
1823
|
-
"syn",
|
|
2488
|
+
"syn 2.0.114",
|
|
1824
2489
|
"synstructure",
|
|
1825
2490
|
]
|
|
1826
2491
|
|
|
2492
|
+
[[package]]
|
|
2493
|
+
name = "zerocopy"
|
|
2494
|
+
version = "0.8.39"
|
|
2495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2496
|
+
checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
|
|
2497
|
+
dependencies = [
|
|
2498
|
+
"zerocopy-derive",
|
|
2499
|
+
]
|
|
2500
|
+
|
|
2501
|
+
[[package]]
|
|
2502
|
+
name = "zerocopy-derive"
|
|
2503
|
+
version = "0.8.39"
|
|
2504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2505
|
+
checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
|
|
2506
|
+
dependencies = [
|
|
2507
|
+
"proc-macro2",
|
|
2508
|
+
"quote",
|
|
2509
|
+
"syn 2.0.114",
|
|
2510
|
+
]
|
|
2511
|
+
|
|
1827
2512
|
[[package]]
|
|
1828
2513
|
name = "zerofrom"
|
|
1829
2514
|
version = "0.1.6"
|
|
@@ -1841,7 +2526,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
|
1841
2526
|
dependencies = [
|
|
1842
2527
|
"proc-macro2",
|
|
1843
2528
|
"quote",
|
|
1844
|
-
"syn",
|
|
2529
|
+
"syn 2.0.114",
|
|
1845
2530
|
"synstructure",
|
|
1846
2531
|
]
|
|
1847
2532
|
|
|
@@ -1875,11 +2560,5 @@ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
|
1875
2560
|
dependencies = [
|
|
1876
2561
|
"proc-macro2",
|
|
1877
2562
|
"quote",
|
|
1878
|
-
"syn",
|
|
2563
|
+
"syn 2.0.114",
|
|
1879
2564
|
]
|
|
1880
|
-
|
|
1881
|
-
[[package]]
|
|
1882
|
-
name = "zmij"
|
|
1883
|
-
version = "1.0.17"
|
|
1884
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1885
|
-
checksum = "02aae0f83f69aafc94776e879363e9771d7ecbffe2c7fbb6c14c5e00dfe88439"
|