@zenithbuild/bundler 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLAUDE.md +111 -0
- package/Cargo.lock +4244 -0
- package/Cargo.toml +65 -0
- package/README.md +135 -0
- package/build.rs +5 -0
- package/dev-server.js +117 -0
- package/index.js +18 -0
- package/package.json +14 -0
- package/src/bundler.rs +81 -0
- package/src/css.rs +266 -0
- package/src/html.rs +147 -0
- package/src/lib.rs +116 -0
- package/src/plugin.rs +332 -0
- package/src/store.rs +44 -0
- package/tests/fixtures/hello.zen +19 -0
- package/tests/integration.rs +53 -0
- package/tsconfig.json +29 -0
package/Cargo.lock
ADDED
|
@@ -0,0 +1,4244 @@
|
|
|
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.7.8"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"getrandom 0.2.17",
|
|
18
|
+
"once_cell",
|
|
19
|
+
"version_check",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[[package]]
|
|
23
|
+
name = "ahash"
|
|
24
|
+
version = "0.8.12"
|
|
25
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
27
|
+
dependencies = [
|
|
28
|
+
"cfg-if",
|
|
29
|
+
"getrandom 0.3.4",
|
|
30
|
+
"once_cell",
|
|
31
|
+
"version_check",
|
|
32
|
+
"zerocopy",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "aho-corasick"
|
|
37
|
+
version = "1.1.4"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"memchr",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "allocator-api2"
|
|
46
|
+
version = "0.2.21"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anyhow"
|
|
52
|
+
version = "1.0.100"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "append-only-vec"
|
|
58
|
+
version = "0.1.8"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "2114736faba96bcd79595c700d03183f61357b9fbce14852515e59f3bee4ed4a"
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "arcstr"
|
|
64
|
+
version = "1.2.0"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "03918c3dbd7701a85c6b9887732e2921175f26c350b4563841d0958c21d57e6d"
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "arrayref"
|
|
70
|
+
version = "0.3.9"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "arrayvec"
|
|
76
|
+
version = "0.7.6"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
79
|
+
|
|
80
|
+
[[package]]
|
|
81
|
+
name = "async-scoped"
|
|
82
|
+
version = "0.9.0"
|
|
83
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
84
|
+
checksum = "4042078ea593edffc452eef14e99fdb2b120caa4ad9618bcdeabc4a023b98740"
|
|
85
|
+
dependencies = [
|
|
86
|
+
"futures",
|
|
87
|
+
"pin-project",
|
|
88
|
+
"tokio",
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "async-trait"
|
|
93
|
+
version = "0.1.89"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
96
|
+
dependencies = [
|
|
97
|
+
"proc-macro2",
|
|
98
|
+
"quote",
|
|
99
|
+
"syn 2.0.114",
|
|
100
|
+
]
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "autocfg"
|
|
104
|
+
version = "1.5.0"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "base-encode"
|
|
110
|
+
version = "0.3.1"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "a17bd29f7c70f32e9387f4d4acfa5ea7b7749ef784fb78cf382df97069337b8c"
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "base64"
|
|
116
|
+
version = "0.22.1"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "base64-simd"
|
|
122
|
+
version = "0.7.0"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "781dd20c3aff0bd194fe7d2a977dd92f21c173891f3a03b677359e5fa457e5d5"
|
|
125
|
+
dependencies = [
|
|
126
|
+
"simd-abstraction",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "base64-simd"
|
|
131
|
+
version = "0.8.0"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"outref 0.5.2",
|
|
136
|
+
"vsimd",
|
|
137
|
+
]
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "bit-set"
|
|
141
|
+
version = "0.8.0"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
144
|
+
dependencies = [
|
|
145
|
+
"bit-vec",
|
|
146
|
+
]
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "bit-vec"
|
|
150
|
+
version = "0.8.0"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "bitflags"
|
|
156
|
+
version = "1.3.2"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "bitflags"
|
|
162
|
+
version = "2.10.0"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
165
|
+
dependencies = [
|
|
166
|
+
"serde_core",
|
|
167
|
+
]
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "bitvec"
|
|
171
|
+
version = "1.0.1"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
|
|
174
|
+
dependencies = [
|
|
175
|
+
"funty",
|
|
176
|
+
"radium",
|
|
177
|
+
"tap",
|
|
178
|
+
"wyz",
|
|
179
|
+
]
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "blake3"
|
|
183
|
+
version = "1.8.3"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "2468ef7d57b3fb7e16b576e8377cdbde2320c60e1491e961d11da40fc4f02a2d"
|
|
186
|
+
dependencies = [
|
|
187
|
+
"arrayref",
|
|
188
|
+
"arrayvec",
|
|
189
|
+
"cc",
|
|
190
|
+
"cfg-if",
|
|
191
|
+
"constant_time_eq",
|
|
192
|
+
"cpufeatures",
|
|
193
|
+
]
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "block-buffer"
|
|
197
|
+
version = "0.10.4"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
200
|
+
dependencies = [
|
|
201
|
+
"generic-array",
|
|
202
|
+
]
|
|
203
|
+
|
|
204
|
+
[[package]]
|
|
205
|
+
name = "bumpalo"
|
|
206
|
+
version = "3.19.0"
|
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
209
|
+
|
|
210
|
+
[[package]]
|
|
211
|
+
name = "bytecheck"
|
|
212
|
+
version = "0.6.12"
|
|
213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
+
checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
|
|
215
|
+
dependencies = [
|
|
216
|
+
"bytecheck_derive",
|
|
217
|
+
"ptr_meta",
|
|
218
|
+
"simdutf8",
|
|
219
|
+
]
|
|
220
|
+
|
|
221
|
+
[[package]]
|
|
222
|
+
name = "bytecheck_derive"
|
|
223
|
+
version = "0.6.12"
|
|
224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
+
checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
|
|
226
|
+
dependencies = [
|
|
227
|
+
"proc-macro2",
|
|
228
|
+
"quote",
|
|
229
|
+
"syn 1.0.109",
|
|
230
|
+
]
|
|
231
|
+
|
|
232
|
+
[[package]]
|
|
233
|
+
name = "byteorder"
|
|
234
|
+
version = "1.5.0"
|
|
235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "bytes"
|
|
240
|
+
version = "1.11.1"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "castaway"
|
|
246
|
+
version = "0.2.4"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
249
|
+
dependencies = [
|
|
250
|
+
"rustversion",
|
|
251
|
+
]
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "cc"
|
|
255
|
+
version = "1.2.55"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
|
|
258
|
+
dependencies = [
|
|
259
|
+
"find-msvc-tools",
|
|
260
|
+
"shlex",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "cfb"
|
|
265
|
+
version = "0.7.3"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
|
|
268
|
+
dependencies = [
|
|
269
|
+
"byteorder",
|
|
270
|
+
"fnv",
|
|
271
|
+
"uuid",
|
|
272
|
+
]
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "cfg-if"
|
|
276
|
+
version = "1.0.4"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "cobs"
|
|
282
|
+
version = "0.3.0"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
|
|
285
|
+
dependencies = [
|
|
286
|
+
"thiserror 2.0.18",
|
|
287
|
+
]
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "commondir"
|
|
291
|
+
version = "1.0.0"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "ab552acb7c0a751c75c3dd4f9b95d31ed85c985ce5c70232a2952ffbe7ecfda5"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"thiserror 1.0.69",
|
|
296
|
+
]
|
|
297
|
+
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "compact_str"
|
|
300
|
+
version = "0.9.0"
|
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
+
checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
|
|
303
|
+
dependencies = [
|
|
304
|
+
"castaway",
|
|
305
|
+
"cfg-if",
|
|
306
|
+
"itoa",
|
|
307
|
+
"rustversion",
|
|
308
|
+
"ryu",
|
|
309
|
+
"serde",
|
|
310
|
+
"static_assertions",
|
|
311
|
+
]
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "compiler-native"
|
|
315
|
+
version = "0.1.0"
|
|
316
|
+
dependencies = [
|
|
317
|
+
"html5ever",
|
|
318
|
+
"lazy_static",
|
|
319
|
+
"markup5ever_rcdom",
|
|
320
|
+
"napi-build",
|
|
321
|
+
"oxc_allocator 0.110.0",
|
|
322
|
+
"oxc_ast 0.110.0",
|
|
323
|
+
"oxc_ast_visit 0.110.0",
|
|
324
|
+
"oxc_codegen 0.110.0",
|
|
325
|
+
"oxc_parser 0.110.0",
|
|
326
|
+
"oxc_semantic 0.110.0",
|
|
327
|
+
"oxc_span 0.110.0",
|
|
328
|
+
"oxc_syntax 0.110.0",
|
|
329
|
+
"oxc_transformer 0.110.0",
|
|
330
|
+
"rayon",
|
|
331
|
+
"regex",
|
|
332
|
+
"serde",
|
|
333
|
+
"serde_json",
|
|
334
|
+
"sha2",
|
|
335
|
+
"tendril",
|
|
336
|
+
"walkdir",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "concurrent_lru"
|
|
341
|
+
version = "0.2.0"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "7feb5cb312f774e8a24540e27206db4e890f7d488563671d24a16389cf4c2e4e"
|
|
344
|
+
dependencies = [
|
|
345
|
+
"once_cell",
|
|
346
|
+
]
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "const-str"
|
|
350
|
+
version = "0.3.2"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "21077772762a1002bb421c3af42ac1725fa56066bfc53d9a55bb79905df2aaf3"
|
|
353
|
+
dependencies = [
|
|
354
|
+
"const-str-proc-macro",
|
|
355
|
+
]
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "const-str-proc-macro"
|
|
359
|
+
version = "0.3.2"
|
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
+
checksum = "5e1e0fdd2e5d3041e530e1b21158aeeef8b5d0e306bc5c1e3d6cf0930d10e25a"
|
|
362
|
+
dependencies = [
|
|
363
|
+
"proc-macro2",
|
|
364
|
+
"quote",
|
|
365
|
+
"syn 1.0.109",
|
|
366
|
+
]
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "constant_time_eq"
|
|
370
|
+
version = "0.4.2"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "convert_case"
|
|
376
|
+
version = "0.6.0"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"unicode-segmentation",
|
|
381
|
+
]
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "convert_case"
|
|
385
|
+
version = "0.10.0"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
|
|
388
|
+
dependencies = [
|
|
389
|
+
"unicode-segmentation",
|
|
390
|
+
]
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "cow-utils"
|
|
394
|
+
version = "0.1.3"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "cpufeatures"
|
|
400
|
+
version = "0.2.17"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
403
|
+
dependencies = [
|
|
404
|
+
"libc",
|
|
405
|
+
]
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "crc32fast"
|
|
409
|
+
version = "1.5.0"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
412
|
+
dependencies = [
|
|
413
|
+
"cfg-if",
|
|
414
|
+
]
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "crossbeam-deque"
|
|
418
|
+
version = "0.8.6"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
421
|
+
dependencies = [
|
|
422
|
+
"crossbeam-epoch",
|
|
423
|
+
"crossbeam-utils",
|
|
424
|
+
]
|
|
425
|
+
|
|
426
|
+
[[package]]
|
|
427
|
+
name = "crossbeam-epoch"
|
|
428
|
+
version = "0.9.18"
|
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
431
|
+
dependencies = [
|
|
432
|
+
"crossbeam-utils",
|
|
433
|
+
]
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "crossbeam-utils"
|
|
437
|
+
version = "0.8.21"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "crypto-common"
|
|
443
|
+
version = "0.1.7"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
446
|
+
dependencies = [
|
|
447
|
+
"generic-array",
|
|
448
|
+
"typenum",
|
|
449
|
+
]
|
|
450
|
+
|
|
451
|
+
[[package]]
|
|
452
|
+
name = "css-module-lexer"
|
|
453
|
+
version = "0.0.15"
|
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
+
checksum = "0b51940c54c6ca015d3add383571ec5610114466eb67aa0a27096e1dcf3c9e29"
|
|
456
|
+
dependencies = [
|
|
457
|
+
"smallvec",
|
|
458
|
+
]
|
|
459
|
+
|
|
460
|
+
[[package]]
|
|
461
|
+
name = "cssparser"
|
|
462
|
+
version = "0.33.0"
|
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
+
checksum = "9be934d936a0fbed5bcdc01042b770de1398bf79d0e192f49fa7faea0e99281e"
|
|
465
|
+
dependencies = [
|
|
466
|
+
"cssparser-macros",
|
|
467
|
+
"dtoa-short",
|
|
468
|
+
"itoa",
|
|
469
|
+
"phf 0.11.3",
|
|
470
|
+
"smallvec",
|
|
471
|
+
]
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "cssparser-color"
|
|
475
|
+
version = "0.1.0"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "556c099a61d85989d7af52b692e35a8d68a57e7df8c6d07563dc0778b3960c9f"
|
|
478
|
+
dependencies = [
|
|
479
|
+
"cssparser",
|
|
480
|
+
]
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "cssparser-macros"
|
|
484
|
+
version = "0.6.1"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
|
487
|
+
dependencies = [
|
|
488
|
+
"quote",
|
|
489
|
+
"syn 2.0.114",
|
|
490
|
+
]
|
|
491
|
+
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "ctor"
|
|
494
|
+
version = "0.2.9"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
|
|
497
|
+
dependencies = [
|
|
498
|
+
"quote",
|
|
499
|
+
"syn 2.0.114",
|
|
500
|
+
]
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "dashmap"
|
|
504
|
+
version = "5.5.3"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
|
|
507
|
+
dependencies = [
|
|
508
|
+
"cfg-if",
|
|
509
|
+
"hashbrown 0.14.5",
|
|
510
|
+
"lock_api",
|
|
511
|
+
"once_cell",
|
|
512
|
+
"parking_lot_core",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "dashmap"
|
|
517
|
+
version = "6.1.0"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"cfg-if",
|
|
522
|
+
"crossbeam-utils",
|
|
523
|
+
"hashbrown 0.14.5",
|
|
524
|
+
"lock_api",
|
|
525
|
+
"once_cell",
|
|
526
|
+
"parking_lot_core",
|
|
527
|
+
]
|
|
528
|
+
|
|
529
|
+
[[package]]
|
|
530
|
+
name = "data-encoding"
|
|
531
|
+
version = "2.10.0"
|
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
+
checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "data-url"
|
|
537
|
+
version = "0.1.1"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "3a30bfce702bcfa94e906ef82421f2c0e61c076ad76030c16ee5d2e9a32fe193"
|
|
540
|
+
dependencies = [
|
|
541
|
+
"matches",
|
|
542
|
+
]
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "derive_more"
|
|
546
|
+
version = "2.1.1"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
549
|
+
dependencies = [
|
|
550
|
+
"derive_more-impl",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "derive_more-impl"
|
|
555
|
+
version = "2.1.1"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
558
|
+
dependencies = [
|
|
559
|
+
"convert_case 0.10.0",
|
|
560
|
+
"proc-macro2",
|
|
561
|
+
"quote",
|
|
562
|
+
"rustc_version",
|
|
563
|
+
"syn 2.0.114",
|
|
564
|
+
"unicode-xid",
|
|
565
|
+
]
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "diff"
|
|
569
|
+
version = "0.1.13"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
572
|
+
|
|
573
|
+
[[package]]
|
|
574
|
+
name = "digest"
|
|
575
|
+
version = "0.10.7"
|
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
578
|
+
dependencies = [
|
|
579
|
+
"block-buffer",
|
|
580
|
+
"crypto-common",
|
|
581
|
+
]
|
|
582
|
+
|
|
583
|
+
[[package]]
|
|
584
|
+
name = "displaydoc"
|
|
585
|
+
version = "0.2.5"
|
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
588
|
+
dependencies = [
|
|
589
|
+
"proc-macro2",
|
|
590
|
+
"quote",
|
|
591
|
+
"syn 2.0.114",
|
|
592
|
+
]
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "dragonbox_ecma"
|
|
596
|
+
version = "0.1.0"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "6a5577f010d4e1bb3f3c4d6081e05718eb6992cf20119cab4d3abadff198b5ae"
|
|
599
|
+
|
|
600
|
+
[[package]]
|
|
601
|
+
name = "dtoa"
|
|
602
|
+
version = "1.0.11"
|
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
+
checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
|
|
605
|
+
|
|
606
|
+
[[package]]
|
|
607
|
+
name = "dtoa-short"
|
|
608
|
+
version = "0.3.5"
|
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
+
checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
|
|
611
|
+
dependencies = [
|
|
612
|
+
"dtoa",
|
|
613
|
+
]
|
|
614
|
+
|
|
615
|
+
[[package]]
|
|
616
|
+
name = "either"
|
|
617
|
+
version = "1.15.0"
|
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "embedded-io"
|
|
623
|
+
version = "0.4.0"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "embedded-io"
|
|
629
|
+
version = "0.6.1"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
|
|
632
|
+
|
|
633
|
+
[[package]]
|
|
634
|
+
name = "endian-type"
|
|
635
|
+
version = "0.2.0"
|
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
637
|
+
checksum = "869b0adbda23651a9c5c0c3d270aac9fcb52e8622a8f2b17e57802d7791962f2"
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "equivalent"
|
|
641
|
+
version = "1.0.2"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "errno"
|
|
647
|
+
version = "0.3.14"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
650
|
+
dependencies = [
|
|
651
|
+
"libc",
|
|
652
|
+
"windows-sys",
|
|
653
|
+
]
|
|
654
|
+
|
|
655
|
+
[[package]]
|
|
656
|
+
name = "fancy-regex"
|
|
657
|
+
version = "0.17.0"
|
|
658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
+
checksum = "72cf461f865c862bb7dc573f643dd6a2b6842f7c30b07882b56bd148cc2761b8"
|
|
660
|
+
dependencies = [
|
|
661
|
+
"bit-set",
|
|
662
|
+
"regex-automata",
|
|
663
|
+
"regex-syntax",
|
|
664
|
+
]
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "fast-glob"
|
|
668
|
+
version = "1.0.0"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "3d26eec0ae9682c457cb0f85de67ad417b716ae852736a5d94c2ad6e92a997c9"
|
|
671
|
+
dependencies = [
|
|
672
|
+
"arrayvec",
|
|
673
|
+
]
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "fastrand"
|
|
677
|
+
version = "2.3.0"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
680
|
+
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "filetime"
|
|
683
|
+
version = "0.2.27"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
|
|
686
|
+
dependencies = [
|
|
687
|
+
"cfg-if",
|
|
688
|
+
"libc",
|
|
689
|
+
"libredox",
|
|
690
|
+
]
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "find-msvc-tools"
|
|
694
|
+
version = "0.1.9"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "fixedbitset"
|
|
700
|
+
version = "0.5.7"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "flate2"
|
|
706
|
+
version = "1.1.9"
|
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
709
|
+
dependencies = [
|
|
710
|
+
"crc32fast",
|
|
711
|
+
"miniz_oxide",
|
|
712
|
+
"zlib-rs",
|
|
713
|
+
]
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "float-cmp"
|
|
717
|
+
version = "0.10.0"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
|
|
720
|
+
dependencies = [
|
|
721
|
+
"num-traits",
|
|
722
|
+
]
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "fnv"
|
|
726
|
+
version = "1.0.7"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
729
|
+
|
|
730
|
+
[[package]]
|
|
731
|
+
name = "foldhash"
|
|
732
|
+
version = "0.1.5"
|
|
733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
734
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
735
|
+
|
|
736
|
+
[[package]]
|
|
737
|
+
name = "foldhash"
|
|
738
|
+
version = "0.2.0"
|
|
739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
741
|
+
|
|
742
|
+
[[package]]
|
|
743
|
+
name = "form_urlencoded"
|
|
744
|
+
version = "1.2.2"
|
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
747
|
+
dependencies = [
|
|
748
|
+
"percent-encoding",
|
|
749
|
+
]
|
|
750
|
+
|
|
751
|
+
[[package]]
|
|
752
|
+
name = "funty"
|
|
753
|
+
version = "2.0.0"
|
|
754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "futf"
|
|
759
|
+
version = "0.1.5"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
|
|
762
|
+
dependencies = [
|
|
763
|
+
"mac",
|
|
764
|
+
"new_debug_unreachable",
|
|
765
|
+
]
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "futures"
|
|
769
|
+
version = "0.3.31"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
772
|
+
dependencies = [
|
|
773
|
+
"futures-channel",
|
|
774
|
+
"futures-core",
|
|
775
|
+
"futures-executor",
|
|
776
|
+
"futures-io",
|
|
777
|
+
"futures-sink",
|
|
778
|
+
"futures-task",
|
|
779
|
+
"futures-util",
|
|
780
|
+
]
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "futures-channel"
|
|
784
|
+
version = "0.3.31"
|
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
787
|
+
dependencies = [
|
|
788
|
+
"futures-core",
|
|
789
|
+
"futures-sink",
|
|
790
|
+
]
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "futures-core"
|
|
794
|
+
version = "0.3.31"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
797
|
+
|
|
798
|
+
[[package]]
|
|
799
|
+
name = "futures-executor"
|
|
800
|
+
version = "0.3.31"
|
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
803
|
+
dependencies = [
|
|
804
|
+
"futures-core",
|
|
805
|
+
"futures-task",
|
|
806
|
+
"futures-util",
|
|
807
|
+
]
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "futures-io"
|
|
811
|
+
version = "0.3.31"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
814
|
+
|
|
815
|
+
[[package]]
|
|
816
|
+
name = "futures-macro"
|
|
817
|
+
version = "0.3.31"
|
|
818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
820
|
+
dependencies = [
|
|
821
|
+
"proc-macro2",
|
|
822
|
+
"quote",
|
|
823
|
+
"syn 2.0.114",
|
|
824
|
+
]
|
|
825
|
+
|
|
826
|
+
[[package]]
|
|
827
|
+
name = "futures-sink"
|
|
828
|
+
version = "0.3.31"
|
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "futures-task"
|
|
834
|
+
version = "0.3.31"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
837
|
+
|
|
838
|
+
[[package]]
|
|
839
|
+
name = "futures-util"
|
|
840
|
+
version = "0.3.31"
|
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
843
|
+
dependencies = [
|
|
844
|
+
"futures-channel",
|
|
845
|
+
"futures-core",
|
|
846
|
+
"futures-io",
|
|
847
|
+
"futures-macro",
|
|
848
|
+
"futures-sink",
|
|
849
|
+
"futures-task",
|
|
850
|
+
"memchr",
|
|
851
|
+
"pin-project-lite",
|
|
852
|
+
"pin-utils",
|
|
853
|
+
"slab",
|
|
854
|
+
]
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "generic-array"
|
|
858
|
+
version = "0.14.7"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
861
|
+
dependencies = [
|
|
862
|
+
"typenum",
|
|
863
|
+
"version_check",
|
|
864
|
+
]
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "getrandom"
|
|
868
|
+
version = "0.2.17"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
871
|
+
dependencies = [
|
|
872
|
+
"cfg-if",
|
|
873
|
+
"libc",
|
|
874
|
+
"wasi",
|
|
875
|
+
]
|
|
876
|
+
|
|
877
|
+
[[package]]
|
|
878
|
+
name = "getrandom"
|
|
879
|
+
version = "0.3.4"
|
|
880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
882
|
+
dependencies = [
|
|
883
|
+
"cfg-if",
|
|
884
|
+
"libc",
|
|
885
|
+
"r-efi",
|
|
886
|
+
"wasip2",
|
|
887
|
+
]
|
|
888
|
+
|
|
889
|
+
[[package]]
|
|
890
|
+
name = "halfbrown"
|
|
891
|
+
version = "0.4.0"
|
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
|
+
checksum = "0c7ed2f2edad8a14c8186b847909a41fbb9c3eafa44f88bd891114ed5019da09"
|
|
894
|
+
dependencies = [
|
|
895
|
+
"hashbrown 0.16.1",
|
|
896
|
+
]
|
|
897
|
+
|
|
898
|
+
[[package]]
|
|
899
|
+
name = "hashbrown"
|
|
900
|
+
version = "0.12.3"
|
|
901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
903
|
+
dependencies = [
|
|
904
|
+
"ahash 0.7.8",
|
|
905
|
+
]
|
|
906
|
+
|
|
907
|
+
[[package]]
|
|
908
|
+
name = "hashbrown"
|
|
909
|
+
version = "0.14.5"
|
|
910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
912
|
+
|
|
913
|
+
[[package]]
|
|
914
|
+
name = "hashbrown"
|
|
915
|
+
version = "0.15.5"
|
|
916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
917
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
918
|
+
dependencies = [
|
|
919
|
+
"foldhash 0.1.5",
|
|
920
|
+
]
|
|
921
|
+
|
|
922
|
+
[[package]]
|
|
923
|
+
name = "hashbrown"
|
|
924
|
+
version = "0.16.1"
|
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
927
|
+
dependencies = [
|
|
928
|
+
"allocator-api2",
|
|
929
|
+
"equivalent",
|
|
930
|
+
"foldhash 0.2.0",
|
|
931
|
+
]
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "heck"
|
|
935
|
+
version = "0.5.0"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "html5ever"
|
|
941
|
+
version = "0.27.0"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "c13771afe0e6e846f1e67d038d4cb29998a6779f93c809212e4e9c32efd244d4"
|
|
944
|
+
dependencies = [
|
|
945
|
+
"log",
|
|
946
|
+
"mac",
|
|
947
|
+
"markup5ever",
|
|
948
|
+
"proc-macro2",
|
|
949
|
+
"quote",
|
|
950
|
+
"syn 2.0.114",
|
|
951
|
+
]
|
|
952
|
+
|
|
953
|
+
[[package]]
|
|
954
|
+
name = "icu_collections"
|
|
955
|
+
version = "2.1.1"
|
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
958
|
+
dependencies = [
|
|
959
|
+
"displaydoc",
|
|
960
|
+
"potential_utf",
|
|
961
|
+
"yoke",
|
|
962
|
+
"zerofrom",
|
|
963
|
+
"zerovec",
|
|
964
|
+
]
|
|
965
|
+
|
|
966
|
+
[[package]]
|
|
967
|
+
name = "icu_locale_core"
|
|
968
|
+
version = "2.1.1"
|
|
969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
970
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
971
|
+
dependencies = [
|
|
972
|
+
"displaydoc",
|
|
973
|
+
"litemap",
|
|
974
|
+
"tinystr",
|
|
975
|
+
"writeable",
|
|
976
|
+
"zerovec",
|
|
977
|
+
]
|
|
978
|
+
|
|
979
|
+
[[package]]
|
|
980
|
+
name = "icu_normalizer"
|
|
981
|
+
version = "2.1.1"
|
|
982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
983
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
984
|
+
dependencies = [
|
|
985
|
+
"icu_collections",
|
|
986
|
+
"icu_normalizer_data",
|
|
987
|
+
"icu_properties",
|
|
988
|
+
"icu_provider",
|
|
989
|
+
"smallvec",
|
|
990
|
+
"zerovec",
|
|
991
|
+
]
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "icu_normalizer_data"
|
|
995
|
+
version = "2.1.1"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "icu_properties"
|
|
1001
|
+
version = "2.1.2"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
1004
|
+
dependencies = [
|
|
1005
|
+
"icu_collections",
|
|
1006
|
+
"icu_locale_core",
|
|
1007
|
+
"icu_properties_data",
|
|
1008
|
+
"icu_provider",
|
|
1009
|
+
"zerotrie",
|
|
1010
|
+
"zerovec",
|
|
1011
|
+
]
|
|
1012
|
+
|
|
1013
|
+
[[package]]
|
|
1014
|
+
name = "icu_properties_data"
|
|
1015
|
+
version = "2.1.2"
|
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
1018
|
+
|
|
1019
|
+
[[package]]
|
|
1020
|
+
name = "icu_provider"
|
|
1021
|
+
version = "2.1.1"
|
|
1022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1023
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
1024
|
+
dependencies = [
|
|
1025
|
+
"displaydoc",
|
|
1026
|
+
"icu_locale_core",
|
|
1027
|
+
"writeable",
|
|
1028
|
+
"yoke",
|
|
1029
|
+
"zerofrom",
|
|
1030
|
+
"zerotrie",
|
|
1031
|
+
"zerovec",
|
|
1032
|
+
]
|
|
1033
|
+
|
|
1034
|
+
[[package]]
|
|
1035
|
+
name = "idna"
|
|
1036
|
+
version = "1.1.0"
|
|
1037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1039
|
+
dependencies = [
|
|
1040
|
+
"idna_adapter",
|
|
1041
|
+
"smallvec",
|
|
1042
|
+
"utf8_iter",
|
|
1043
|
+
]
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "idna_adapter"
|
|
1047
|
+
version = "1.2.1"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1050
|
+
dependencies = [
|
|
1051
|
+
"icu_normalizer",
|
|
1052
|
+
"icu_properties",
|
|
1053
|
+
]
|
|
1054
|
+
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "indexmap"
|
|
1057
|
+
version = "2.13.0"
|
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
1060
|
+
dependencies = [
|
|
1061
|
+
"equivalent",
|
|
1062
|
+
"hashbrown 0.16.1",
|
|
1063
|
+
"serde",
|
|
1064
|
+
"serde_core",
|
|
1065
|
+
]
|
|
1066
|
+
|
|
1067
|
+
[[package]]
|
|
1068
|
+
name = "infer"
|
|
1069
|
+
version = "0.19.0"
|
|
1070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
+
checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7"
|
|
1072
|
+
dependencies = [
|
|
1073
|
+
"cfb",
|
|
1074
|
+
]
|
|
1075
|
+
|
|
1076
|
+
[[package]]
|
|
1077
|
+
name = "inotify"
|
|
1078
|
+
version = "0.11.0"
|
|
1079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
+
checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
|
|
1081
|
+
dependencies = [
|
|
1082
|
+
"bitflags 2.10.0",
|
|
1083
|
+
"inotify-sys",
|
|
1084
|
+
"libc",
|
|
1085
|
+
]
|
|
1086
|
+
|
|
1087
|
+
[[package]]
|
|
1088
|
+
name = "inotify-sys"
|
|
1089
|
+
version = "0.1.5"
|
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
+
checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
|
|
1092
|
+
dependencies = [
|
|
1093
|
+
"libc",
|
|
1094
|
+
]
|
|
1095
|
+
|
|
1096
|
+
[[package]]
|
|
1097
|
+
name = "itertools"
|
|
1098
|
+
version = "0.10.5"
|
|
1099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1100
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1101
|
+
dependencies = [
|
|
1102
|
+
"either",
|
|
1103
|
+
]
|
|
1104
|
+
|
|
1105
|
+
[[package]]
|
|
1106
|
+
name = "itertools"
|
|
1107
|
+
version = "0.14.0"
|
|
1108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1109
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1110
|
+
dependencies = [
|
|
1111
|
+
"either",
|
|
1112
|
+
]
|
|
1113
|
+
|
|
1114
|
+
[[package]]
|
|
1115
|
+
name = "itoa"
|
|
1116
|
+
version = "1.0.17"
|
|
1117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
1119
|
+
|
|
1120
|
+
[[package]]
|
|
1121
|
+
name = "js-sys"
|
|
1122
|
+
version = "0.3.85"
|
|
1123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
+
checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
|
|
1125
|
+
dependencies = [
|
|
1126
|
+
"once_cell",
|
|
1127
|
+
"wasm-bindgen",
|
|
1128
|
+
]
|
|
1129
|
+
|
|
1130
|
+
[[package]]
|
|
1131
|
+
name = "json-escape-simd"
|
|
1132
|
+
version = "3.0.1"
|
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
+
checksum = "a3c2a6c0b4b5637c41719973ef40c6a1cf564f9db6958350de6193fbee9c23f5"
|
|
1135
|
+
|
|
1136
|
+
[[package]]
|
|
1137
|
+
name = "json-strip-comments"
|
|
1138
|
+
version = "3.1.0"
|
|
1139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
+
checksum = "25376d12b2f6ae53f986f86e2a808a56af03d72284ae24fc35a2e290d09ee3c3"
|
|
1141
|
+
dependencies = [
|
|
1142
|
+
"memchr",
|
|
1143
|
+
]
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "kqueue"
|
|
1147
|
+
version = "1.1.1"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
|
|
1150
|
+
dependencies = [
|
|
1151
|
+
"kqueue-sys",
|
|
1152
|
+
"libc",
|
|
1153
|
+
]
|
|
1154
|
+
|
|
1155
|
+
[[package]]
|
|
1156
|
+
name = "kqueue-sys"
|
|
1157
|
+
version = "1.0.4"
|
|
1158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1159
|
+
checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
|
|
1160
|
+
dependencies = [
|
|
1161
|
+
"bitflags 1.3.2",
|
|
1162
|
+
"libc",
|
|
1163
|
+
]
|
|
1164
|
+
|
|
1165
|
+
[[package]]
|
|
1166
|
+
name = "lazy_static"
|
|
1167
|
+
version = "1.5.0"
|
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1170
|
+
|
|
1171
|
+
[[package]]
|
|
1172
|
+
name = "libc"
|
|
1173
|
+
version = "0.2.180"
|
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1175
|
+
checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
|
|
1176
|
+
|
|
1177
|
+
[[package]]
|
|
1178
|
+
name = "libloading"
|
|
1179
|
+
version = "0.8.9"
|
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
1182
|
+
dependencies = [
|
|
1183
|
+
"cfg-if",
|
|
1184
|
+
"windows-link",
|
|
1185
|
+
]
|
|
1186
|
+
|
|
1187
|
+
[[package]]
|
|
1188
|
+
name = "libredox"
|
|
1189
|
+
version = "0.1.12"
|
|
1190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
|
+
checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
|
|
1192
|
+
dependencies = [
|
|
1193
|
+
"bitflags 2.10.0",
|
|
1194
|
+
"libc",
|
|
1195
|
+
"redox_syscall 0.7.0",
|
|
1196
|
+
]
|
|
1197
|
+
|
|
1198
|
+
[[package]]
|
|
1199
|
+
name = "lightningcss"
|
|
1200
|
+
version = "1.0.0-alpha.70"
|
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1202
|
+
checksum = "9efb6a77b2389e62735b0b8157be9cc10a159eb4d1c3b864e99db9f297ada1b0"
|
|
1203
|
+
dependencies = [
|
|
1204
|
+
"ahash 0.8.12",
|
|
1205
|
+
"bitflags 2.10.0",
|
|
1206
|
+
"const-str",
|
|
1207
|
+
"cssparser",
|
|
1208
|
+
"cssparser-color",
|
|
1209
|
+
"dashmap 5.5.3",
|
|
1210
|
+
"data-encoding",
|
|
1211
|
+
"getrandom 0.3.4",
|
|
1212
|
+
"indexmap",
|
|
1213
|
+
"itertools 0.10.5",
|
|
1214
|
+
"lazy_static",
|
|
1215
|
+
"lightningcss-derive",
|
|
1216
|
+
"parcel_selectors",
|
|
1217
|
+
"parcel_sourcemap",
|
|
1218
|
+
"pastey",
|
|
1219
|
+
"pathdiff",
|
|
1220
|
+
"rayon",
|
|
1221
|
+
"serde",
|
|
1222
|
+
"serde-content",
|
|
1223
|
+
"smallvec",
|
|
1224
|
+
]
|
|
1225
|
+
|
|
1226
|
+
[[package]]
|
|
1227
|
+
name = "lightningcss-derive"
|
|
1228
|
+
version = "1.0.0-alpha.43"
|
|
1229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
+
checksum = "84c12744d1279367caed41739ef094c325d53fb0ffcd4f9b84a368796f870252"
|
|
1231
|
+
dependencies = [
|
|
1232
|
+
"convert_case 0.6.0",
|
|
1233
|
+
"proc-macro2",
|
|
1234
|
+
"quote",
|
|
1235
|
+
"syn 1.0.109",
|
|
1236
|
+
]
|
|
1237
|
+
|
|
1238
|
+
[[package]]
|
|
1239
|
+
name = "linux-raw-sys"
|
|
1240
|
+
version = "0.11.0"
|
|
1241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1242
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1243
|
+
|
|
1244
|
+
[[package]]
|
|
1245
|
+
name = "litemap"
|
|
1246
|
+
version = "0.8.1"
|
|
1247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1248
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
1249
|
+
|
|
1250
|
+
[[package]]
|
|
1251
|
+
name = "lock_api"
|
|
1252
|
+
version = "0.4.14"
|
|
1253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1255
|
+
dependencies = [
|
|
1256
|
+
"scopeguard",
|
|
1257
|
+
]
|
|
1258
|
+
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "log"
|
|
1261
|
+
version = "0.4.29"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "mac"
|
|
1267
|
+
version = "0.1.1"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
|
|
1270
|
+
|
|
1271
|
+
[[package]]
|
|
1272
|
+
name = "markup5ever"
|
|
1273
|
+
version = "0.12.1"
|
|
1274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1275
|
+
checksum = "16ce3abbeba692c8b8441d036ef91aea6df8da2c6b6e21c7e14d3c18e526be45"
|
|
1276
|
+
dependencies = [
|
|
1277
|
+
"log",
|
|
1278
|
+
"phf 0.11.3",
|
|
1279
|
+
"phf_codegen",
|
|
1280
|
+
"string_cache",
|
|
1281
|
+
"string_cache_codegen",
|
|
1282
|
+
"tendril",
|
|
1283
|
+
]
|
|
1284
|
+
|
|
1285
|
+
[[package]]
|
|
1286
|
+
name = "markup5ever_rcdom"
|
|
1287
|
+
version = "0.3.0"
|
|
1288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1289
|
+
checksum = "edaa21ab3701bfee5099ade5f7e1f84553fd19228cf332f13cd6e964bf59be18"
|
|
1290
|
+
dependencies = [
|
|
1291
|
+
"html5ever",
|
|
1292
|
+
"markup5ever",
|
|
1293
|
+
"tendril",
|
|
1294
|
+
"xml5ever",
|
|
1295
|
+
]
|
|
1296
|
+
|
|
1297
|
+
[[package]]
|
|
1298
|
+
name = "matches"
|
|
1299
|
+
version = "0.1.10"
|
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
+
checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
|
|
1302
|
+
|
|
1303
|
+
[[package]]
|
|
1304
|
+
name = "memchr"
|
|
1305
|
+
version = "2.7.6"
|
|
1306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1307
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
1308
|
+
|
|
1309
|
+
[[package]]
|
|
1310
|
+
name = "mime"
|
|
1311
|
+
version = "0.3.17"
|
|
1312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1313
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1314
|
+
|
|
1315
|
+
[[package]]
|
|
1316
|
+
name = "miniz_oxide"
|
|
1317
|
+
version = "0.8.9"
|
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1320
|
+
dependencies = [
|
|
1321
|
+
"adler2",
|
|
1322
|
+
"simd-adler32",
|
|
1323
|
+
]
|
|
1324
|
+
|
|
1325
|
+
[[package]]
|
|
1326
|
+
name = "mio"
|
|
1327
|
+
version = "1.1.1"
|
|
1328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1329
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
1330
|
+
dependencies = [
|
|
1331
|
+
"libc",
|
|
1332
|
+
"log",
|
|
1333
|
+
"wasi",
|
|
1334
|
+
"windows-sys",
|
|
1335
|
+
]
|
|
1336
|
+
|
|
1337
|
+
[[package]]
|
|
1338
|
+
name = "napi"
|
|
1339
|
+
version = "2.16.17"
|
|
1340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1341
|
+
checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
|
|
1342
|
+
dependencies = [
|
|
1343
|
+
"bitflags 2.10.0",
|
|
1344
|
+
"ctor",
|
|
1345
|
+
"napi-derive",
|
|
1346
|
+
"napi-sys",
|
|
1347
|
+
"once_cell",
|
|
1348
|
+
"serde",
|
|
1349
|
+
"serde_json",
|
|
1350
|
+
"tokio",
|
|
1351
|
+
]
|
|
1352
|
+
|
|
1353
|
+
[[package]]
|
|
1354
|
+
name = "napi-build"
|
|
1355
|
+
version = "2.3.1"
|
|
1356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
+
checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
|
|
1358
|
+
|
|
1359
|
+
[[package]]
|
|
1360
|
+
name = "napi-derive"
|
|
1361
|
+
version = "2.16.13"
|
|
1362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1363
|
+
checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
|
|
1364
|
+
dependencies = [
|
|
1365
|
+
"cfg-if",
|
|
1366
|
+
"convert_case 0.6.0",
|
|
1367
|
+
"napi-derive-backend",
|
|
1368
|
+
"proc-macro2",
|
|
1369
|
+
"quote",
|
|
1370
|
+
"syn 2.0.114",
|
|
1371
|
+
]
|
|
1372
|
+
|
|
1373
|
+
[[package]]
|
|
1374
|
+
name = "napi-derive-backend"
|
|
1375
|
+
version = "1.0.75"
|
|
1376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1377
|
+
checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
|
|
1378
|
+
dependencies = [
|
|
1379
|
+
"convert_case 0.6.0",
|
|
1380
|
+
"once_cell",
|
|
1381
|
+
"proc-macro2",
|
|
1382
|
+
"quote",
|
|
1383
|
+
"regex",
|
|
1384
|
+
"semver",
|
|
1385
|
+
"syn 2.0.114",
|
|
1386
|
+
]
|
|
1387
|
+
|
|
1388
|
+
[[package]]
|
|
1389
|
+
name = "napi-sys"
|
|
1390
|
+
version = "2.4.0"
|
|
1391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1392
|
+
checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
|
|
1393
|
+
dependencies = [
|
|
1394
|
+
"libloading",
|
|
1395
|
+
]
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "new_debug_unreachable"
|
|
1399
|
+
version = "1.0.6"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
1402
|
+
|
|
1403
|
+
[[package]]
|
|
1404
|
+
name = "nibble_vec"
|
|
1405
|
+
version = "0.1.0"
|
|
1406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1407
|
+
checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43"
|
|
1408
|
+
dependencies = [
|
|
1409
|
+
"smallvec",
|
|
1410
|
+
]
|
|
1411
|
+
|
|
1412
|
+
[[package]]
|
|
1413
|
+
name = "nodejs-built-in-modules"
|
|
1414
|
+
version = "1.0.0"
|
|
1415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1416
|
+
checksum = "a5eb86a92577833b75522336f210c49d9ebd7dd55a44d80a92e68c668a75f27c"
|
|
1417
|
+
|
|
1418
|
+
[[package]]
|
|
1419
|
+
name = "nom"
|
|
1420
|
+
version = "8.0.0"
|
|
1421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1422
|
+
checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
|
|
1423
|
+
dependencies = [
|
|
1424
|
+
"memchr",
|
|
1425
|
+
]
|
|
1426
|
+
|
|
1427
|
+
[[package]]
|
|
1428
|
+
name = "nonmax"
|
|
1429
|
+
version = "0.5.5"
|
|
1430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1431
|
+
checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
|
|
1432
|
+
|
|
1433
|
+
[[package]]
|
|
1434
|
+
name = "nu-ansi-term"
|
|
1435
|
+
version = "0.50.3"
|
|
1436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1437
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
1438
|
+
dependencies = [
|
|
1439
|
+
"windows-sys",
|
|
1440
|
+
]
|
|
1441
|
+
|
|
1442
|
+
[[package]]
|
|
1443
|
+
name = "num-bigint"
|
|
1444
|
+
version = "0.4.6"
|
|
1445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1446
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1447
|
+
dependencies = [
|
|
1448
|
+
"num-integer",
|
|
1449
|
+
"num-traits",
|
|
1450
|
+
]
|
|
1451
|
+
|
|
1452
|
+
[[package]]
|
|
1453
|
+
name = "num-integer"
|
|
1454
|
+
version = "0.1.46"
|
|
1455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1457
|
+
dependencies = [
|
|
1458
|
+
"num-traits",
|
|
1459
|
+
]
|
|
1460
|
+
|
|
1461
|
+
[[package]]
|
|
1462
|
+
name = "num-traits"
|
|
1463
|
+
version = "0.2.19"
|
|
1464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1465
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1466
|
+
dependencies = [
|
|
1467
|
+
"autocfg",
|
|
1468
|
+
]
|
|
1469
|
+
|
|
1470
|
+
[[package]]
|
|
1471
|
+
name = "objc2-core-foundation"
|
|
1472
|
+
version = "0.3.2"
|
|
1473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
1475
|
+
dependencies = [
|
|
1476
|
+
"bitflags 2.10.0",
|
|
1477
|
+
]
|
|
1478
|
+
|
|
1479
|
+
[[package]]
|
|
1480
|
+
name = "objc2-core-services"
|
|
1481
|
+
version = "0.3.2"
|
|
1482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1483
|
+
checksum = "583300ad934cba24ff5292aee751ecc070f7ca6b39a574cc21b7b5e588e06a0b"
|
|
1484
|
+
dependencies = [
|
|
1485
|
+
"libc",
|
|
1486
|
+
"objc2-core-foundation",
|
|
1487
|
+
]
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "once_cell"
|
|
1491
|
+
version = "1.21.3"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1494
|
+
|
|
1495
|
+
[[package]]
|
|
1496
|
+
name = "outref"
|
|
1497
|
+
version = "0.1.0"
|
|
1498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1499
|
+
checksum = "7f222829ae9293e33a9f5e9f440c6760a3d450a64affe1846486b140db81c1f4"
|
|
1500
|
+
|
|
1501
|
+
[[package]]
|
|
1502
|
+
name = "outref"
|
|
1503
|
+
version = "0.5.2"
|
|
1504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1505
|
+
checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
1506
|
+
|
|
1507
|
+
[[package]]
|
|
1508
|
+
name = "owo-colors"
|
|
1509
|
+
version = "4.2.3"
|
|
1510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1511
|
+
checksum = "9c6901729fa79e91a0913333229e9ca5dc725089d1c363b2f4b4760709dc4a52"
|
|
1512
|
+
|
|
1513
|
+
[[package]]
|
|
1514
|
+
name = "oxc"
|
|
1515
|
+
version = "0.112.0"
|
|
1516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1517
|
+
checksum = "b49207b129742093b80ee68144f4da6053a652252250b94798954f508bcbc23c"
|
|
1518
|
+
dependencies = [
|
|
1519
|
+
"oxc_allocator 0.112.0",
|
|
1520
|
+
"oxc_ast 0.112.0",
|
|
1521
|
+
"oxc_ast_visit 0.112.0",
|
|
1522
|
+
"oxc_cfg",
|
|
1523
|
+
"oxc_codegen 0.112.0",
|
|
1524
|
+
"oxc_diagnostics 0.112.0",
|
|
1525
|
+
"oxc_isolated_declarations",
|
|
1526
|
+
"oxc_mangler",
|
|
1527
|
+
"oxc_minifier",
|
|
1528
|
+
"oxc_parser 0.112.0",
|
|
1529
|
+
"oxc_regular_expression 0.112.0",
|
|
1530
|
+
"oxc_semantic 0.112.0",
|
|
1531
|
+
"oxc_span 0.112.0",
|
|
1532
|
+
"oxc_syntax 0.112.0",
|
|
1533
|
+
"oxc_transformer 0.112.0",
|
|
1534
|
+
"oxc_transformer_plugins",
|
|
1535
|
+
]
|
|
1536
|
+
|
|
1537
|
+
[[package]]
|
|
1538
|
+
name = "oxc-browserslist"
|
|
1539
|
+
version = "2.3.0"
|
|
1540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1541
|
+
checksum = "75b1853bc34cadaa90aa09f95713d8b77ec0c0d3e2d90ccf7a74216f40d20850"
|
|
1542
|
+
dependencies = [
|
|
1543
|
+
"flate2",
|
|
1544
|
+
"postcard",
|
|
1545
|
+
"rustc-hash",
|
|
1546
|
+
"serde",
|
|
1547
|
+
"serde_json",
|
|
1548
|
+
"thiserror 2.0.18",
|
|
1549
|
+
]
|
|
1550
|
+
|
|
1551
|
+
[[package]]
|
|
1552
|
+
name = "oxc-miette"
|
|
1553
|
+
version = "2.7.0"
|
|
1554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1555
|
+
checksum = "60a7ba54c704edefead1f44e9ef09c43e5cfae666bdc33516b066011f0e6ebf7"
|
|
1556
|
+
dependencies = [
|
|
1557
|
+
"cfg-if",
|
|
1558
|
+
"owo-colors",
|
|
1559
|
+
"oxc-miette-derive",
|
|
1560
|
+
"textwrap",
|
|
1561
|
+
"thiserror 2.0.18",
|
|
1562
|
+
"unicode-segmentation",
|
|
1563
|
+
"unicode-width",
|
|
1564
|
+
]
|
|
1565
|
+
|
|
1566
|
+
[[package]]
|
|
1567
|
+
name = "oxc-miette-derive"
|
|
1568
|
+
version = "2.7.0"
|
|
1569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
+
checksum = "d4faecb54d0971f948fbc1918df69b26007e6f279a204793669542e1e8b75eb3"
|
|
1571
|
+
dependencies = [
|
|
1572
|
+
"proc-macro2",
|
|
1573
|
+
"quote",
|
|
1574
|
+
"syn 2.0.114",
|
|
1575
|
+
]
|
|
1576
|
+
|
|
1577
|
+
[[package]]
|
|
1578
|
+
name = "oxc_allocator"
|
|
1579
|
+
version = "0.110.0"
|
|
1580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1581
|
+
checksum = "2174c7c8f77137b1bd1c653d7a5a531ae41f3b8fec1dd0251c801689784e7a2e"
|
|
1582
|
+
dependencies = [
|
|
1583
|
+
"allocator-api2",
|
|
1584
|
+
"hashbrown 0.16.1",
|
|
1585
|
+
"oxc_data_structures 0.110.0",
|
|
1586
|
+
"rustc-hash",
|
|
1587
|
+
]
|
|
1588
|
+
|
|
1589
|
+
[[package]]
|
|
1590
|
+
name = "oxc_allocator"
|
|
1591
|
+
version = "0.112.0"
|
|
1592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1593
|
+
checksum = "e7b9c7293fac710d0be6e941b70749566dc69f1918cf0446a677d0eb9a7c8259"
|
|
1594
|
+
dependencies = [
|
|
1595
|
+
"allocator-api2",
|
|
1596
|
+
"hashbrown 0.16.1",
|
|
1597
|
+
"oxc_data_structures 0.112.0",
|
|
1598
|
+
"oxc_estree 0.112.0",
|
|
1599
|
+
"rustc-hash",
|
|
1600
|
+
"serde",
|
|
1601
|
+
]
|
|
1602
|
+
|
|
1603
|
+
[[package]]
|
|
1604
|
+
name = "oxc_ast"
|
|
1605
|
+
version = "0.110.0"
|
|
1606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1607
|
+
checksum = "62f1902f97a5cac8767b76a1d8a1b3124e9db80c176ebbc98f75143dcc124a15"
|
|
1608
|
+
dependencies = [
|
|
1609
|
+
"bitflags 2.10.0",
|
|
1610
|
+
"oxc_allocator 0.110.0",
|
|
1611
|
+
"oxc_ast_macros 0.110.0",
|
|
1612
|
+
"oxc_data_structures 0.110.0",
|
|
1613
|
+
"oxc_diagnostics 0.110.0",
|
|
1614
|
+
"oxc_estree 0.110.0",
|
|
1615
|
+
"oxc_regular_expression 0.110.0",
|
|
1616
|
+
"oxc_span 0.110.0",
|
|
1617
|
+
"oxc_syntax 0.110.0",
|
|
1618
|
+
]
|
|
1619
|
+
|
|
1620
|
+
[[package]]
|
|
1621
|
+
name = "oxc_ast"
|
|
1622
|
+
version = "0.112.0"
|
|
1623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1624
|
+
checksum = "4dd97b20b4ad9987795c0e5eda56752de8c24682a4e2cd6b1698fdc8135510e3"
|
|
1625
|
+
dependencies = [
|
|
1626
|
+
"bitflags 2.10.0",
|
|
1627
|
+
"oxc_allocator 0.112.0",
|
|
1628
|
+
"oxc_ast_macros 0.112.0",
|
|
1629
|
+
"oxc_data_structures 0.112.0",
|
|
1630
|
+
"oxc_diagnostics 0.112.0",
|
|
1631
|
+
"oxc_estree 0.112.0",
|
|
1632
|
+
"oxc_regular_expression 0.112.0",
|
|
1633
|
+
"oxc_span 0.112.0",
|
|
1634
|
+
"oxc_syntax 0.112.0",
|
|
1635
|
+
]
|
|
1636
|
+
|
|
1637
|
+
[[package]]
|
|
1638
|
+
name = "oxc_ast_macros"
|
|
1639
|
+
version = "0.110.0"
|
|
1640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1641
|
+
checksum = "c5a31bd55516a98a35b2d99fa5813a3d3a5b798bad3262c819dfe7344bc6f390"
|
|
1642
|
+
dependencies = [
|
|
1643
|
+
"phf 0.13.1",
|
|
1644
|
+
"proc-macro2",
|
|
1645
|
+
"quote",
|
|
1646
|
+
"syn 2.0.114",
|
|
1647
|
+
]
|
|
1648
|
+
|
|
1649
|
+
[[package]]
|
|
1650
|
+
name = "oxc_ast_macros"
|
|
1651
|
+
version = "0.112.0"
|
|
1652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1653
|
+
checksum = "58b1eb3b6f9ed42c528030161d0370b023229ed05b785baf7a80d7e99a794da2"
|
|
1654
|
+
dependencies = [
|
|
1655
|
+
"phf 0.13.1",
|
|
1656
|
+
"proc-macro2",
|
|
1657
|
+
"quote",
|
|
1658
|
+
"syn 2.0.114",
|
|
1659
|
+
]
|
|
1660
|
+
|
|
1661
|
+
[[package]]
|
|
1662
|
+
name = "oxc_ast_visit"
|
|
1663
|
+
version = "0.110.0"
|
|
1664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1665
|
+
checksum = "e2c520a488c04ba5267223edd0bb245fb7f10e2358e8955802a5d962bb95b50a"
|
|
1666
|
+
dependencies = [
|
|
1667
|
+
"oxc_allocator 0.110.0",
|
|
1668
|
+
"oxc_ast 0.110.0",
|
|
1669
|
+
"oxc_span 0.110.0",
|
|
1670
|
+
"oxc_syntax 0.110.0",
|
|
1671
|
+
]
|
|
1672
|
+
|
|
1673
|
+
[[package]]
|
|
1674
|
+
name = "oxc_ast_visit"
|
|
1675
|
+
version = "0.112.0"
|
|
1676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1677
|
+
checksum = "936eaf04ad8fd9f1e7613e277a7a0a2f8575fa9543c7a0fac4a8a6f590c8527c"
|
|
1678
|
+
dependencies = [
|
|
1679
|
+
"oxc_allocator 0.112.0",
|
|
1680
|
+
"oxc_ast 0.112.0",
|
|
1681
|
+
"oxc_span 0.112.0",
|
|
1682
|
+
"oxc_syntax 0.112.0",
|
|
1683
|
+
]
|
|
1684
|
+
|
|
1685
|
+
[[package]]
|
|
1686
|
+
name = "oxc_cfg"
|
|
1687
|
+
version = "0.112.0"
|
|
1688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1689
|
+
checksum = "d012b89f8a58cce25c0f0b1f1d7f0aa48ad257161c81933887d382a28a51c490"
|
|
1690
|
+
dependencies = [
|
|
1691
|
+
"bitflags 2.10.0",
|
|
1692
|
+
"itertools 0.14.0",
|
|
1693
|
+
"oxc_index",
|
|
1694
|
+
"oxc_syntax 0.112.0",
|
|
1695
|
+
"petgraph",
|
|
1696
|
+
"rustc-hash",
|
|
1697
|
+
]
|
|
1698
|
+
|
|
1699
|
+
[[package]]
|
|
1700
|
+
name = "oxc_codegen"
|
|
1701
|
+
version = "0.110.0"
|
|
1702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1703
|
+
checksum = "abfd3d146e6e0d340c183aa0e98f29ab1bba876c282350e5e06ab9d6f536eacd"
|
|
1704
|
+
dependencies = [
|
|
1705
|
+
"bitflags 2.10.0",
|
|
1706
|
+
"cow-utils",
|
|
1707
|
+
"dragonbox_ecma",
|
|
1708
|
+
"itoa",
|
|
1709
|
+
"oxc_allocator 0.110.0",
|
|
1710
|
+
"oxc_ast 0.110.0",
|
|
1711
|
+
"oxc_data_structures 0.110.0",
|
|
1712
|
+
"oxc_index",
|
|
1713
|
+
"oxc_semantic 0.110.0",
|
|
1714
|
+
"oxc_sourcemap",
|
|
1715
|
+
"oxc_span 0.110.0",
|
|
1716
|
+
"oxc_syntax 0.110.0",
|
|
1717
|
+
"rustc-hash",
|
|
1718
|
+
]
|
|
1719
|
+
|
|
1720
|
+
[[package]]
|
|
1721
|
+
name = "oxc_codegen"
|
|
1722
|
+
version = "0.112.0"
|
|
1723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1724
|
+
checksum = "fdb04590335665806a3bc39485bb2f3c31d198c1dfd6bf7aa8405cd93b8205a0"
|
|
1725
|
+
dependencies = [
|
|
1726
|
+
"bitflags 2.10.0",
|
|
1727
|
+
"cow-utils",
|
|
1728
|
+
"dragonbox_ecma",
|
|
1729
|
+
"itoa",
|
|
1730
|
+
"oxc_allocator 0.112.0",
|
|
1731
|
+
"oxc_ast 0.112.0",
|
|
1732
|
+
"oxc_data_structures 0.112.0",
|
|
1733
|
+
"oxc_index",
|
|
1734
|
+
"oxc_semantic 0.112.0",
|
|
1735
|
+
"oxc_sourcemap",
|
|
1736
|
+
"oxc_span 0.112.0",
|
|
1737
|
+
"oxc_syntax 0.112.0",
|
|
1738
|
+
"rustc-hash",
|
|
1739
|
+
]
|
|
1740
|
+
|
|
1741
|
+
[[package]]
|
|
1742
|
+
name = "oxc_compat"
|
|
1743
|
+
version = "0.110.0"
|
|
1744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1745
|
+
checksum = "7319f12eb8d4a05737a7f71642d7a97aee210488dc4041a7a452352a31ac0fe6"
|
|
1746
|
+
dependencies = [
|
|
1747
|
+
"cow-utils",
|
|
1748
|
+
"oxc-browserslist",
|
|
1749
|
+
"oxc_syntax 0.110.0",
|
|
1750
|
+
"rustc-hash",
|
|
1751
|
+
"serde",
|
|
1752
|
+
]
|
|
1753
|
+
|
|
1754
|
+
[[package]]
|
|
1755
|
+
name = "oxc_compat"
|
|
1756
|
+
version = "0.112.0"
|
|
1757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1758
|
+
checksum = "a7a1d5d8480010cab1dd1ede5287085472224f39aace766dcd2ae4c0005f3273"
|
|
1759
|
+
dependencies = [
|
|
1760
|
+
"cow-utils",
|
|
1761
|
+
"oxc-browserslist",
|
|
1762
|
+
"oxc_syntax 0.112.0",
|
|
1763
|
+
"rustc-hash",
|
|
1764
|
+
"serde",
|
|
1765
|
+
]
|
|
1766
|
+
|
|
1767
|
+
[[package]]
|
|
1768
|
+
name = "oxc_data_structures"
|
|
1769
|
+
version = "0.110.0"
|
|
1770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1771
|
+
checksum = "a42840ce8d83a08a92823dda6189e4d97359feca24a4fa732f3256c4614bb5a4"
|
|
1772
|
+
dependencies = [
|
|
1773
|
+
"ropey",
|
|
1774
|
+
]
|
|
1775
|
+
|
|
1776
|
+
[[package]]
|
|
1777
|
+
name = "oxc_data_structures"
|
|
1778
|
+
version = "0.112.0"
|
|
1779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1780
|
+
checksum = "cea257e0e5a91b5cfcf06fd91744514d24e53c5450620f54a9fa1053f2b3fdf2"
|
|
1781
|
+
dependencies = [
|
|
1782
|
+
"ropey",
|
|
1783
|
+
]
|
|
1784
|
+
|
|
1785
|
+
[[package]]
|
|
1786
|
+
name = "oxc_diagnostics"
|
|
1787
|
+
version = "0.110.0"
|
|
1788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1789
|
+
checksum = "b4f7b09c1563a67ede53af131f717b31ba89a992959ebad188b5158c21d4dc0a"
|
|
1790
|
+
dependencies = [
|
|
1791
|
+
"cow-utils",
|
|
1792
|
+
"oxc-miette",
|
|
1793
|
+
"percent-encoding",
|
|
1794
|
+
]
|
|
1795
|
+
|
|
1796
|
+
[[package]]
|
|
1797
|
+
name = "oxc_diagnostics"
|
|
1798
|
+
version = "0.112.0"
|
|
1799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1800
|
+
checksum = "ed1dce4194036de316f09d86c9a02e42aab1693c20423f20dda694c5d9f04394"
|
|
1801
|
+
dependencies = [
|
|
1802
|
+
"cow-utils",
|
|
1803
|
+
"oxc-miette",
|
|
1804
|
+
"percent-encoding",
|
|
1805
|
+
]
|
|
1806
|
+
|
|
1807
|
+
[[package]]
|
|
1808
|
+
name = "oxc_ecmascript"
|
|
1809
|
+
version = "0.110.0"
|
|
1810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1811
|
+
checksum = "4813b352bd5b0b05badf0c9e6c5ec7ea58a6a7ab49bec8d18ead262624c6ef8d"
|
|
1812
|
+
dependencies = [
|
|
1813
|
+
"cow-utils",
|
|
1814
|
+
"num-bigint",
|
|
1815
|
+
"num-traits",
|
|
1816
|
+
"oxc_allocator 0.110.0",
|
|
1817
|
+
"oxc_ast 0.110.0",
|
|
1818
|
+
"oxc_regular_expression 0.110.0",
|
|
1819
|
+
"oxc_span 0.110.0",
|
|
1820
|
+
"oxc_syntax 0.110.0",
|
|
1821
|
+
]
|
|
1822
|
+
|
|
1823
|
+
[[package]]
|
|
1824
|
+
name = "oxc_ecmascript"
|
|
1825
|
+
version = "0.112.0"
|
|
1826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1827
|
+
checksum = "50f9465ce204eaddca376dcc235a44915c05ad512e280417d2cafd6bb1934f04"
|
|
1828
|
+
dependencies = [
|
|
1829
|
+
"cow-utils",
|
|
1830
|
+
"num-bigint",
|
|
1831
|
+
"num-traits",
|
|
1832
|
+
"oxc_allocator 0.112.0",
|
|
1833
|
+
"oxc_ast 0.112.0",
|
|
1834
|
+
"oxc_regular_expression 0.112.0",
|
|
1835
|
+
"oxc_span 0.112.0",
|
|
1836
|
+
"oxc_syntax 0.112.0",
|
|
1837
|
+
]
|
|
1838
|
+
|
|
1839
|
+
[[package]]
|
|
1840
|
+
name = "oxc_estree"
|
|
1841
|
+
version = "0.110.0"
|
|
1842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1843
|
+
checksum = "e54fb3effe995e6538d68070bf0a450b5ffd11dd41b62f11a4d01efa1f40e278"
|
|
1844
|
+
|
|
1845
|
+
[[package]]
|
|
1846
|
+
name = "oxc_estree"
|
|
1847
|
+
version = "0.112.0"
|
|
1848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1849
|
+
checksum = "e1bc44f56db73d6b7a5b8c4b4979cde79809e7c18d7fe5d99dffc37128bedd8c"
|
|
1850
|
+
dependencies = [
|
|
1851
|
+
"dragonbox_ecma",
|
|
1852
|
+
"itoa",
|
|
1853
|
+
"oxc_data_structures 0.112.0",
|
|
1854
|
+
]
|
|
1855
|
+
|
|
1856
|
+
[[package]]
|
|
1857
|
+
name = "oxc_index"
|
|
1858
|
+
version = "4.1.0"
|
|
1859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1860
|
+
checksum = "eb3e6120999627ec9703025eab7c9f410ebb7e95557632a8902ca48210416c2b"
|
|
1861
|
+
dependencies = [
|
|
1862
|
+
"nonmax",
|
|
1863
|
+
"rayon",
|
|
1864
|
+
"serde",
|
|
1865
|
+
]
|
|
1866
|
+
|
|
1867
|
+
[[package]]
|
|
1868
|
+
name = "oxc_isolated_declarations"
|
|
1869
|
+
version = "0.112.0"
|
|
1870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1871
|
+
checksum = "9ace9329d9a846ce33e55227f75811209ef224732449dffe498ea1e1f800f90f"
|
|
1872
|
+
dependencies = [
|
|
1873
|
+
"bitflags 2.10.0",
|
|
1874
|
+
"oxc_allocator 0.112.0",
|
|
1875
|
+
"oxc_ast 0.112.0",
|
|
1876
|
+
"oxc_ast_visit 0.112.0",
|
|
1877
|
+
"oxc_diagnostics 0.112.0",
|
|
1878
|
+
"oxc_ecmascript 0.112.0",
|
|
1879
|
+
"oxc_span 0.112.0",
|
|
1880
|
+
"oxc_syntax 0.112.0",
|
|
1881
|
+
"rustc-hash",
|
|
1882
|
+
]
|
|
1883
|
+
|
|
1884
|
+
[[package]]
|
|
1885
|
+
name = "oxc_mangler"
|
|
1886
|
+
version = "0.112.0"
|
|
1887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1888
|
+
checksum = "0e89072e886c2f89af49d8c45d4b486b395d30b72827932e55e1f71bb637298d"
|
|
1889
|
+
dependencies = [
|
|
1890
|
+
"itertools 0.14.0",
|
|
1891
|
+
"oxc_allocator 0.112.0",
|
|
1892
|
+
"oxc_ast 0.112.0",
|
|
1893
|
+
"oxc_data_structures 0.112.0",
|
|
1894
|
+
"oxc_index",
|
|
1895
|
+
"oxc_semantic 0.112.0",
|
|
1896
|
+
"oxc_span 0.112.0",
|
|
1897
|
+
"oxc_syntax 0.112.0",
|
|
1898
|
+
"rustc-hash",
|
|
1899
|
+
]
|
|
1900
|
+
|
|
1901
|
+
[[package]]
|
|
1902
|
+
name = "oxc_minifier"
|
|
1903
|
+
version = "0.112.0"
|
|
1904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1905
|
+
checksum = "8e7ec0b87652c198b49844fcbe406fbdcf2fc735cfef765420d4b21fad8420d4"
|
|
1906
|
+
dependencies = [
|
|
1907
|
+
"cow-utils",
|
|
1908
|
+
"oxc_allocator 0.112.0",
|
|
1909
|
+
"oxc_ast 0.112.0",
|
|
1910
|
+
"oxc_ast_visit 0.112.0",
|
|
1911
|
+
"oxc_compat 0.112.0",
|
|
1912
|
+
"oxc_data_structures 0.112.0",
|
|
1913
|
+
"oxc_ecmascript 0.112.0",
|
|
1914
|
+
"oxc_index",
|
|
1915
|
+
"oxc_mangler",
|
|
1916
|
+
"oxc_parser 0.112.0",
|
|
1917
|
+
"oxc_regular_expression 0.112.0",
|
|
1918
|
+
"oxc_semantic 0.112.0",
|
|
1919
|
+
"oxc_span 0.112.0",
|
|
1920
|
+
"oxc_syntax 0.112.0",
|
|
1921
|
+
"oxc_traverse 0.112.0",
|
|
1922
|
+
"rustc-hash",
|
|
1923
|
+
]
|
|
1924
|
+
|
|
1925
|
+
[[package]]
|
|
1926
|
+
name = "oxc_parser"
|
|
1927
|
+
version = "0.110.0"
|
|
1928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1929
|
+
checksum = "5592bf8b64743944eb46528f9eabdde2b2435c8293cd502f5c183f9dff644e16"
|
|
1930
|
+
dependencies = [
|
|
1931
|
+
"bitflags 2.10.0",
|
|
1932
|
+
"cow-utils",
|
|
1933
|
+
"memchr",
|
|
1934
|
+
"num-bigint",
|
|
1935
|
+
"num-traits",
|
|
1936
|
+
"oxc_allocator 0.110.0",
|
|
1937
|
+
"oxc_ast 0.110.0",
|
|
1938
|
+
"oxc_data_structures 0.110.0",
|
|
1939
|
+
"oxc_diagnostics 0.110.0",
|
|
1940
|
+
"oxc_ecmascript 0.110.0",
|
|
1941
|
+
"oxc_regular_expression 0.110.0",
|
|
1942
|
+
"oxc_span 0.110.0",
|
|
1943
|
+
"oxc_syntax 0.110.0",
|
|
1944
|
+
"rustc-hash",
|
|
1945
|
+
"seq-macro",
|
|
1946
|
+
]
|
|
1947
|
+
|
|
1948
|
+
[[package]]
|
|
1949
|
+
name = "oxc_parser"
|
|
1950
|
+
version = "0.112.0"
|
|
1951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1952
|
+
checksum = "f38f73b67e2ae42ce4a14e4e1dc305d65e1ada635c52959dbfaad5eec7245a15"
|
|
1953
|
+
dependencies = [
|
|
1954
|
+
"bitflags 2.10.0",
|
|
1955
|
+
"cow-utils",
|
|
1956
|
+
"memchr",
|
|
1957
|
+
"num-bigint",
|
|
1958
|
+
"num-traits",
|
|
1959
|
+
"oxc_allocator 0.112.0",
|
|
1960
|
+
"oxc_ast 0.112.0",
|
|
1961
|
+
"oxc_data_structures 0.112.0",
|
|
1962
|
+
"oxc_diagnostics 0.112.0",
|
|
1963
|
+
"oxc_ecmascript 0.112.0",
|
|
1964
|
+
"oxc_regular_expression 0.112.0",
|
|
1965
|
+
"oxc_span 0.112.0",
|
|
1966
|
+
"oxc_syntax 0.112.0",
|
|
1967
|
+
"rustc-hash",
|
|
1968
|
+
"seq-macro",
|
|
1969
|
+
]
|
|
1970
|
+
|
|
1971
|
+
[[package]]
|
|
1972
|
+
name = "oxc_regular_expression"
|
|
1973
|
+
version = "0.110.0"
|
|
1974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
+
checksum = "09de7f7e0fb82f54750e3a95346a828fd354b9aeac00f131719008733e66a18d"
|
|
1976
|
+
dependencies = [
|
|
1977
|
+
"bitflags 2.10.0",
|
|
1978
|
+
"oxc_allocator 0.110.0",
|
|
1979
|
+
"oxc_ast_macros 0.110.0",
|
|
1980
|
+
"oxc_diagnostics 0.110.0",
|
|
1981
|
+
"oxc_span 0.110.0",
|
|
1982
|
+
"phf 0.13.1",
|
|
1983
|
+
"rustc-hash",
|
|
1984
|
+
"unicode-id-start",
|
|
1985
|
+
]
|
|
1986
|
+
|
|
1987
|
+
[[package]]
|
|
1988
|
+
name = "oxc_regular_expression"
|
|
1989
|
+
version = "0.112.0"
|
|
1990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1991
|
+
checksum = "9b53ad034b3b87531190c0adde3dca1ee8a3d09e9009960576077a4062d9bc10"
|
|
1992
|
+
dependencies = [
|
|
1993
|
+
"bitflags 2.10.0",
|
|
1994
|
+
"oxc_allocator 0.112.0",
|
|
1995
|
+
"oxc_ast_macros 0.112.0",
|
|
1996
|
+
"oxc_diagnostics 0.112.0",
|
|
1997
|
+
"oxc_span 0.112.0",
|
|
1998
|
+
"phf 0.13.1",
|
|
1999
|
+
"rustc-hash",
|
|
2000
|
+
"unicode-id-start",
|
|
2001
|
+
]
|
|
2002
|
+
|
|
2003
|
+
[[package]]
|
|
2004
|
+
name = "oxc_resolver"
|
|
2005
|
+
version = "11.17.0"
|
|
2006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2007
|
+
checksum = "88c8cd25f7fd929d2d13ef85051d75240d2e4219e36547b4085e63e668e253d7"
|
|
2008
|
+
dependencies = [
|
|
2009
|
+
"cfg-if",
|
|
2010
|
+
"fast-glob",
|
|
2011
|
+
"indexmap",
|
|
2012
|
+
"json-strip-comments",
|
|
2013
|
+
"nodejs-built-in-modules",
|
|
2014
|
+
"once_cell",
|
|
2015
|
+
"papaya",
|
|
2016
|
+
"parking_lot",
|
|
2017
|
+
"pnp",
|
|
2018
|
+
"rustc-hash",
|
|
2019
|
+
"rustix",
|
|
2020
|
+
"self_cell",
|
|
2021
|
+
"serde",
|
|
2022
|
+
"serde_json",
|
|
2023
|
+
"simd-json",
|
|
2024
|
+
"simdutf8",
|
|
2025
|
+
"thiserror 2.0.18",
|
|
2026
|
+
"tracing",
|
|
2027
|
+
"url",
|
|
2028
|
+
"windows",
|
|
2029
|
+
]
|
|
2030
|
+
|
|
2031
|
+
[[package]]
|
|
2032
|
+
name = "oxc_semantic"
|
|
2033
|
+
version = "0.110.0"
|
|
2034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2035
|
+
checksum = "8c2269186b4f1510a76daf02914cb70e82a78549de451b8276bba0a419c62ac3"
|
|
2036
|
+
dependencies = [
|
|
2037
|
+
"itertools 0.14.0",
|
|
2038
|
+
"memchr",
|
|
2039
|
+
"oxc_allocator 0.110.0",
|
|
2040
|
+
"oxc_ast 0.110.0",
|
|
2041
|
+
"oxc_ast_visit 0.110.0",
|
|
2042
|
+
"oxc_data_structures 0.110.0",
|
|
2043
|
+
"oxc_diagnostics 0.110.0",
|
|
2044
|
+
"oxc_ecmascript 0.110.0",
|
|
2045
|
+
"oxc_index",
|
|
2046
|
+
"oxc_span 0.110.0",
|
|
2047
|
+
"oxc_syntax 0.110.0",
|
|
2048
|
+
"rustc-hash",
|
|
2049
|
+
"self_cell",
|
|
2050
|
+
"smallvec",
|
|
2051
|
+
]
|
|
2052
|
+
|
|
2053
|
+
[[package]]
|
|
2054
|
+
name = "oxc_semantic"
|
|
2055
|
+
version = "0.112.0"
|
|
2056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2057
|
+
checksum = "0bc73688fe48cf7f8cd6202216864c5d569f3903758b9b0c1733dbd1eedc1fce"
|
|
2058
|
+
dependencies = [
|
|
2059
|
+
"itertools 0.14.0",
|
|
2060
|
+
"memchr",
|
|
2061
|
+
"oxc_allocator 0.112.0",
|
|
2062
|
+
"oxc_ast 0.112.0",
|
|
2063
|
+
"oxc_ast_visit 0.112.0",
|
|
2064
|
+
"oxc_cfg",
|
|
2065
|
+
"oxc_data_structures 0.112.0",
|
|
2066
|
+
"oxc_diagnostics 0.112.0",
|
|
2067
|
+
"oxc_ecmascript 0.112.0",
|
|
2068
|
+
"oxc_index",
|
|
2069
|
+
"oxc_span 0.112.0",
|
|
2070
|
+
"oxc_syntax 0.112.0",
|
|
2071
|
+
"rustc-hash",
|
|
2072
|
+
"self_cell",
|
|
2073
|
+
"smallvec",
|
|
2074
|
+
]
|
|
2075
|
+
|
|
2076
|
+
[[package]]
|
|
2077
|
+
name = "oxc_sourcemap"
|
|
2078
|
+
version = "6.0.1"
|
|
2079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2080
|
+
checksum = "36801dbbd025f2fa133367494e38eef75a53d334ae6746ba0c889fc4e76fa3a3"
|
|
2081
|
+
dependencies = [
|
|
2082
|
+
"base64-simd 0.8.0",
|
|
2083
|
+
"json-escape-simd",
|
|
2084
|
+
"rustc-hash",
|
|
2085
|
+
"serde",
|
|
2086
|
+
"serde_json",
|
|
2087
|
+
]
|
|
2088
|
+
|
|
2089
|
+
[[package]]
|
|
2090
|
+
name = "oxc_span"
|
|
2091
|
+
version = "0.110.0"
|
|
2092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2093
|
+
checksum = "2a42c0759b745eca0fe776890af46ce12e79e61796995e51a8eb9dcdf5516ab0"
|
|
2094
|
+
dependencies = [
|
|
2095
|
+
"compact_str",
|
|
2096
|
+
"oxc-miette",
|
|
2097
|
+
"oxc_allocator 0.110.0",
|
|
2098
|
+
"oxc_ast_macros 0.110.0",
|
|
2099
|
+
"oxc_estree 0.110.0",
|
|
2100
|
+
]
|
|
2101
|
+
|
|
2102
|
+
[[package]]
|
|
2103
|
+
name = "oxc_span"
|
|
2104
|
+
version = "0.112.0"
|
|
2105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2106
|
+
checksum = "4807a64b6063717dcd863fb4c1ce5ec628728d037e2f20e3ffdcf3aa4adf96ca"
|
|
2107
|
+
dependencies = [
|
|
2108
|
+
"compact_str",
|
|
2109
|
+
"oxc-miette",
|
|
2110
|
+
"oxc_allocator 0.112.0",
|
|
2111
|
+
"oxc_ast_macros 0.112.0",
|
|
2112
|
+
"oxc_estree 0.112.0",
|
|
2113
|
+
"oxc_str",
|
|
2114
|
+
"serde",
|
|
2115
|
+
]
|
|
2116
|
+
|
|
2117
|
+
[[package]]
|
|
2118
|
+
name = "oxc_str"
|
|
2119
|
+
version = "0.112.0"
|
|
2120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2121
|
+
checksum = "9c64a431903dbb9b8505324824d1bd50e52407ebc30bf9a42279cd477328223e"
|
|
2122
|
+
dependencies = [
|
|
2123
|
+
"compact_str",
|
|
2124
|
+
"oxc_allocator 0.112.0",
|
|
2125
|
+
"oxc_estree 0.112.0",
|
|
2126
|
+
"serde",
|
|
2127
|
+
]
|
|
2128
|
+
|
|
2129
|
+
[[package]]
|
|
2130
|
+
name = "oxc_syntax"
|
|
2131
|
+
version = "0.110.0"
|
|
2132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2133
|
+
checksum = "b63eac2e04a75a10c5714aeb753cdfa06b1abc66bbaa748b7994700f52c9b184"
|
|
2134
|
+
dependencies = [
|
|
2135
|
+
"bitflags 2.10.0",
|
|
2136
|
+
"cow-utils",
|
|
2137
|
+
"dragonbox_ecma",
|
|
2138
|
+
"nonmax",
|
|
2139
|
+
"oxc_allocator 0.110.0",
|
|
2140
|
+
"oxc_ast_macros 0.110.0",
|
|
2141
|
+
"oxc_data_structures 0.110.0",
|
|
2142
|
+
"oxc_estree 0.110.0",
|
|
2143
|
+
"oxc_index",
|
|
2144
|
+
"oxc_span 0.110.0",
|
|
2145
|
+
"phf 0.13.1",
|
|
2146
|
+
"unicode-id-start",
|
|
2147
|
+
]
|
|
2148
|
+
|
|
2149
|
+
[[package]]
|
|
2150
|
+
name = "oxc_syntax"
|
|
2151
|
+
version = "0.112.0"
|
|
2152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2153
|
+
checksum = "82c8d491f4b2755a81aac85cde4706b591129215b3a79229ed0607ef622ed38b"
|
|
2154
|
+
dependencies = [
|
|
2155
|
+
"bitflags 2.10.0",
|
|
2156
|
+
"cow-utils",
|
|
2157
|
+
"dragonbox_ecma",
|
|
2158
|
+
"nonmax",
|
|
2159
|
+
"oxc_allocator 0.112.0",
|
|
2160
|
+
"oxc_ast_macros 0.112.0",
|
|
2161
|
+
"oxc_data_structures 0.112.0",
|
|
2162
|
+
"oxc_estree 0.112.0",
|
|
2163
|
+
"oxc_index",
|
|
2164
|
+
"oxc_span 0.112.0",
|
|
2165
|
+
"phf 0.13.1",
|
|
2166
|
+
"serde",
|
|
2167
|
+
"unicode-id-start",
|
|
2168
|
+
]
|
|
2169
|
+
|
|
2170
|
+
[[package]]
|
|
2171
|
+
name = "oxc_transformer"
|
|
2172
|
+
version = "0.110.0"
|
|
2173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2174
|
+
checksum = "0e394bc5221c9e228fc06f54b7f7a3e2d63ed135a50b8678e8485b5b49222bb5"
|
|
2175
|
+
dependencies = [
|
|
2176
|
+
"base64",
|
|
2177
|
+
"compact_str",
|
|
2178
|
+
"indexmap",
|
|
2179
|
+
"itoa",
|
|
2180
|
+
"memchr",
|
|
2181
|
+
"oxc_allocator 0.110.0",
|
|
2182
|
+
"oxc_ast 0.110.0",
|
|
2183
|
+
"oxc_ast_visit 0.110.0",
|
|
2184
|
+
"oxc_compat 0.110.0",
|
|
2185
|
+
"oxc_data_structures 0.110.0",
|
|
2186
|
+
"oxc_diagnostics 0.110.0",
|
|
2187
|
+
"oxc_ecmascript 0.110.0",
|
|
2188
|
+
"oxc_regular_expression 0.110.0",
|
|
2189
|
+
"oxc_semantic 0.110.0",
|
|
2190
|
+
"oxc_span 0.110.0",
|
|
2191
|
+
"oxc_syntax 0.110.0",
|
|
2192
|
+
"oxc_traverse 0.110.0",
|
|
2193
|
+
"rustc-hash",
|
|
2194
|
+
"serde",
|
|
2195
|
+
"serde_json",
|
|
2196
|
+
"sha1",
|
|
2197
|
+
]
|
|
2198
|
+
|
|
2199
|
+
[[package]]
|
|
2200
|
+
name = "oxc_transformer"
|
|
2201
|
+
version = "0.112.0"
|
|
2202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2203
|
+
checksum = "768f8763f5901f4f517b96a25235a838805764cff3c5d2a67eed3c07493f8894"
|
|
2204
|
+
dependencies = [
|
|
2205
|
+
"base64",
|
|
2206
|
+
"compact_str",
|
|
2207
|
+
"indexmap",
|
|
2208
|
+
"itoa",
|
|
2209
|
+
"memchr",
|
|
2210
|
+
"oxc_allocator 0.112.0",
|
|
2211
|
+
"oxc_ast 0.112.0",
|
|
2212
|
+
"oxc_ast_visit 0.112.0",
|
|
2213
|
+
"oxc_compat 0.112.0",
|
|
2214
|
+
"oxc_data_structures 0.112.0",
|
|
2215
|
+
"oxc_diagnostics 0.112.0",
|
|
2216
|
+
"oxc_ecmascript 0.112.0",
|
|
2217
|
+
"oxc_regular_expression 0.112.0",
|
|
2218
|
+
"oxc_semantic 0.112.0",
|
|
2219
|
+
"oxc_span 0.112.0",
|
|
2220
|
+
"oxc_syntax 0.112.0",
|
|
2221
|
+
"oxc_traverse 0.112.0",
|
|
2222
|
+
"rustc-hash",
|
|
2223
|
+
"serde",
|
|
2224
|
+
"serde_json",
|
|
2225
|
+
"sha1",
|
|
2226
|
+
]
|
|
2227
|
+
|
|
2228
|
+
[[package]]
|
|
2229
|
+
name = "oxc_transformer_plugins"
|
|
2230
|
+
version = "0.112.0"
|
|
2231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
|
+
checksum = "0c0c09deff1f88c604201ab0a705a893e9bd0a797a76426e192cb038a82505b1"
|
|
2233
|
+
dependencies = [
|
|
2234
|
+
"cow-utils",
|
|
2235
|
+
"itoa",
|
|
2236
|
+
"oxc_allocator 0.112.0",
|
|
2237
|
+
"oxc_ast 0.112.0",
|
|
2238
|
+
"oxc_ast_visit 0.112.0",
|
|
2239
|
+
"oxc_diagnostics 0.112.0",
|
|
2240
|
+
"oxc_ecmascript 0.112.0",
|
|
2241
|
+
"oxc_parser 0.112.0",
|
|
2242
|
+
"oxc_semantic 0.112.0",
|
|
2243
|
+
"oxc_span 0.112.0",
|
|
2244
|
+
"oxc_syntax 0.112.0",
|
|
2245
|
+
"oxc_transformer 0.112.0",
|
|
2246
|
+
"oxc_traverse 0.112.0",
|
|
2247
|
+
"rustc-hash",
|
|
2248
|
+
]
|
|
2249
|
+
|
|
2250
|
+
[[package]]
|
|
2251
|
+
name = "oxc_traverse"
|
|
2252
|
+
version = "0.110.0"
|
|
2253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2254
|
+
checksum = "4473bf963b351d5b744b75aee9ff6aa41d62f8ca662012b03dc315cac9f1f2e5"
|
|
2255
|
+
dependencies = [
|
|
2256
|
+
"itoa",
|
|
2257
|
+
"oxc_allocator 0.110.0",
|
|
2258
|
+
"oxc_ast 0.110.0",
|
|
2259
|
+
"oxc_ast_visit 0.110.0",
|
|
2260
|
+
"oxc_data_structures 0.110.0",
|
|
2261
|
+
"oxc_ecmascript 0.110.0",
|
|
2262
|
+
"oxc_semantic 0.110.0",
|
|
2263
|
+
"oxc_span 0.110.0",
|
|
2264
|
+
"oxc_syntax 0.110.0",
|
|
2265
|
+
"rustc-hash",
|
|
2266
|
+
]
|
|
2267
|
+
|
|
2268
|
+
[[package]]
|
|
2269
|
+
name = "oxc_traverse"
|
|
2270
|
+
version = "0.112.0"
|
|
2271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2272
|
+
checksum = "5b66d5f2c7cb914d0b773560986d39b0ae5efcf59ce2367c45d4e30f551500b4"
|
|
2273
|
+
dependencies = [
|
|
2274
|
+
"itoa",
|
|
2275
|
+
"oxc_allocator 0.112.0",
|
|
2276
|
+
"oxc_ast 0.112.0",
|
|
2277
|
+
"oxc_ast_visit 0.112.0",
|
|
2278
|
+
"oxc_data_structures 0.112.0",
|
|
2279
|
+
"oxc_ecmascript 0.112.0",
|
|
2280
|
+
"oxc_semantic 0.112.0",
|
|
2281
|
+
"oxc_span 0.112.0",
|
|
2282
|
+
"oxc_syntax 0.112.0",
|
|
2283
|
+
"rustc-hash",
|
|
2284
|
+
]
|
|
2285
|
+
|
|
2286
|
+
[[package]]
|
|
2287
|
+
name = "papaya"
|
|
2288
|
+
version = "0.2.3"
|
|
2289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2290
|
+
checksum = "f92dd0b07c53a0a0c764db2ace8c541dc47320dad97c2200c2a637ab9dd2328f"
|
|
2291
|
+
dependencies = [
|
|
2292
|
+
"equivalent",
|
|
2293
|
+
"seize",
|
|
2294
|
+
]
|
|
2295
|
+
|
|
2296
|
+
[[package]]
|
|
2297
|
+
name = "parcel_selectors"
|
|
2298
|
+
version = "0.28.2"
|
|
2299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2300
|
+
checksum = "54fd03f1ad26cb6b3ec1b7414fa78a3bd639e7dbb421b1a60513c96ce886a196"
|
|
2301
|
+
dependencies = [
|
|
2302
|
+
"bitflags 2.10.0",
|
|
2303
|
+
"cssparser",
|
|
2304
|
+
"log",
|
|
2305
|
+
"phf 0.11.3",
|
|
2306
|
+
"phf_codegen",
|
|
2307
|
+
"precomputed-hash",
|
|
2308
|
+
"rustc-hash",
|
|
2309
|
+
"smallvec",
|
|
2310
|
+
]
|
|
2311
|
+
|
|
2312
|
+
[[package]]
|
|
2313
|
+
name = "parcel_sourcemap"
|
|
2314
|
+
version = "2.1.1"
|
|
2315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2316
|
+
checksum = "485b74d7218068b2b7c0e3ff12fbc61ae11d57cb5d8224f525bd304c6be05bbb"
|
|
2317
|
+
dependencies = [
|
|
2318
|
+
"base64-simd 0.7.0",
|
|
2319
|
+
"data-url",
|
|
2320
|
+
"rkyv",
|
|
2321
|
+
"serde",
|
|
2322
|
+
"serde_json",
|
|
2323
|
+
"vlq",
|
|
2324
|
+
]
|
|
2325
|
+
|
|
2326
|
+
[[package]]
|
|
2327
|
+
name = "parking_lot"
|
|
2328
|
+
version = "0.12.5"
|
|
2329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2330
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
2331
|
+
dependencies = [
|
|
2332
|
+
"lock_api",
|
|
2333
|
+
"parking_lot_core",
|
|
2334
|
+
]
|
|
2335
|
+
|
|
2336
|
+
[[package]]
|
|
2337
|
+
name = "parking_lot_core"
|
|
2338
|
+
version = "0.9.12"
|
|
2339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2340
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2341
|
+
dependencies = [
|
|
2342
|
+
"cfg-if",
|
|
2343
|
+
"libc",
|
|
2344
|
+
"redox_syscall 0.5.18",
|
|
2345
|
+
"smallvec",
|
|
2346
|
+
"windows-link",
|
|
2347
|
+
]
|
|
2348
|
+
|
|
2349
|
+
[[package]]
|
|
2350
|
+
name = "pastey"
|
|
2351
|
+
version = "0.1.1"
|
|
2352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2353
|
+
checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"
|
|
2354
|
+
|
|
2355
|
+
[[package]]
|
|
2356
|
+
name = "pathdiff"
|
|
2357
|
+
version = "0.2.3"
|
|
2358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2359
|
+
checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
|
|
2360
|
+
|
|
2361
|
+
[[package]]
|
|
2362
|
+
name = "percent-encoding"
|
|
2363
|
+
version = "2.3.2"
|
|
2364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2365
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2366
|
+
|
|
2367
|
+
[[package]]
|
|
2368
|
+
name = "petgraph"
|
|
2369
|
+
version = "0.8.3"
|
|
2370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2371
|
+
checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
|
|
2372
|
+
dependencies = [
|
|
2373
|
+
"fixedbitset",
|
|
2374
|
+
"hashbrown 0.15.5",
|
|
2375
|
+
"indexmap",
|
|
2376
|
+
"serde",
|
|
2377
|
+
]
|
|
2378
|
+
|
|
2379
|
+
[[package]]
|
|
2380
|
+
name = "phf"
|
|
2381
|
+
version = "0.11.3"
|
|
2382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2383
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
2384
|
+
dependencies = [
|
|
2385
|
+
"phf_macros 0.11.3",
|
|
2386
|
+
"phf_shared 0.11.3",
|
|
2387
|
+
]
|
|
2388
|
+
|
|
2389
|
+
[[package]]
|
|
2390
|
+
name = "phf"
|
|
2391
|
+
version = "0.13.1"
|
|
2392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2393
|
+
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
2394
|
+
dependencies = [
|
|
2395
|
+
"phf_macros 0.13.1",
|
|
2396
|
+
"phf_shared 0.13.1",
|
|
2397
|
+
"serde",
|
|
2398
|
+
]
|
|
2399
|
+
|
|
2400
|
+
[[package]]
|
|
2401
|
+
name = "phf_codegen"
|
|
2402
|
+
version = "0.11.3"
|
|
2403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2404
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
2405
|
+
dependencies = [
|
|
2406
|
+
"phf_generator 0.11.3",
|
|
2407
|
+
"phf_shared 0.11.3",
|
|
2408
|
+
]
|
|
2409
|
+
|
|
2410
|
+
[[package]]
|
|
2411
|
+
name = "phf_generator"
|
|
2412
|
+
version = "0.11.3"
|
|
2413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2414
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
2415
|
+
dependencies = [
|
|
2416
|
+
"phf_shared 0.11.3",
|
|
2417
|
+
"rand",
|
|
2418
|
+
]
|
|
2419
|
+
|
|
2420
|
+
[[package]]
|
|
2421
|
+
name = "phf_generator"
|
|
2422
|
+
version = "0.13.1"
|
|
2423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2424
|
+
checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
|
|
2425
|
+
dependencies = [
|
|
2426
|
+
"fastrand",
|
|
2427
|
+
"phf_shared 0.13.1",
|
|
2428
|
+
]
|
|
2429
|
+
|
|
2430
|
+
[[package]]
|
|
2431
|
+
name = "phf_macros"
|
|
2432
|
+
version = "0.11.3"
|
|
2433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2434
|
+
checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
|
|
2435
|
+
dependencies = [
|
|
2436
|
+
"phf_generator 0.11.3",
|
|
2437
|
+
"phf_shared 0.11.3",
|
|
2438
|
+
"proc-macro2",
|
|
2439
|
+
"quote",
|
|
2440
|
+
"syn 2.0.114",
|
|
2441
|
+
]
|
|
2442
|
+
|
|
2443
|
+
[[package]]
|
|
2444
|
+
name = "phf_macros"
|
|
2445
|
+
version = "0.13.1"
|
|
2446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2447
|
+
checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
|
|
2448
|
+
dependencies = [
|
|
2449
|
+
"phf_generator 0.13.1",
|
|
2450
|
+
"phf_shared 0.13.1",
|
|
2451
|
+
"proc-macro2",
|
|
2452
|
+
"quote",
|
|
2453
|
+
"syn 2.0.114",
|
|
2454
|
+
]
|
|
2455
|
+
|
|
2456
|
+
[[package]]
|
|
2457
|
+
name = "phf_shared"
|
|
2458
|
+
version = "0.11.3"
|
|
2459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2460
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
2461
|
+
dependencies = [
|
|
2462
|
+
"siphasher",
|
|
2463
|
+
]
|
|
2464
|
+
|
|
2465
|
+
[[package]]
|
|
2466
|
+
name = "phf_shared"
|
|
2467
|
+
version = "0.13.1"
|
|
2468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2469
|
+
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
2470
|
+
dependencies = [
|
|
2471
|
+
"siphasher",
|
|
2472
|
+
]
|
|
2473
|
+
|
|
2474
|
+
[[package]]
|
|
2475
|
+
name = "pin-project"
|
|
2476
|
+
version = "1.1.10"
|
|
2477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2478
|
+
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
2479
|
+
dependencies = [
|
|
2480
|
+
"pin-project-internal",
|
|
2481
|
+
]
|
|
2482
|
+
|
|
2483
|
+
[[package]]
|
|
2484
|
+
name = "pin-project-internal"
|
|
2485
|
+
version = "1.1.10"
|
|
2486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2487
|
+
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
2488
|
+
dependencies = [
|
|
2489
|
+
"proc-macro2",
|
|
2490
|
+
"quote",
|
|
2491
|
+
"syn 2.0.114",
|
|
2492
|
+
]
|
|
2493
|
+
|
|
2494
|
+
[[package]]
|
|
2495
|
+
name = "pin-project-lite"
|
|
2496
|
+
version = "0.2.16"
|
|
2497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2498
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
2499
|
+
|
|
2500
|
+
[[package]]
|
|
2501
|
+
name = "pin-utils"
|
|
2502
|
+
version = "0.1.0"
|
|
2503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2504
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2505
|
+
|
|
2506
|
+
[[package]]
|
|
2507
|
+
name = "pnp"
|
|
2508
|
+
version = "0.12.8"
|
|
2509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2510
|
+
checksum = "5401c5598b8244888870c2f1e84bb7bc1976f01c0043f1a4070a268409276840"
|
|
2511
|
+
dependencies = [
|
|
2512
|
+
"byteorder",
|
|
2513
|
+
"concurrent_lru",
|
|
2514
|
+
"fancy-regex",
|
|
2515
|
+
"flate2",
|
|
2516
|
+
"indexmap",
|
|
2517
|
+
"nodejs-built-in-modules",
|
|
2518
|
+
"pathdiff",
|
|
2519
|
+
"radix_trie",
|
|
2520
|
+
"rustc-hash",
|
|
2521
|
+
"serde",
|
|
2522
|
+
"serde_json",
|
|
2523
|
+
"thiserror 2.0.18",
|
|
2524
|
+
]
|
|
2525
|
+
|
|
2526
|
+
[[package]]
|
|
2527
|
+
name = "postcard"
|
|
2528
|
+
version = "1.1.3"
|
|
2529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2530
|
+
checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
|
|
2531
|
+
dependencies = [
|
|
2532
|
+
"cobs",
|
|
2533
|
+
"embedded-io 0.4.0",
|
|
2534
|
+
"embedded-io 0.6.1",
|
|
2535
|
+
"serde",
|
|
2536
|
+
]
|
|
2537
|
+
|
|
2538
|
+
[[package]]
|
|
2539
|
+
name = "potential_utf"
|
|
2540
|
+
version = "0.1.4"
|
|
2541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2542
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
2543
|
+
dependencies = [
|
|
2544
|
+
"zerovec",
|
|
2545
|
+
]
|
|
2546
|
+
|
|
2547
|
+
[[package]]
|
|
2548
|
+
name = "precomputed-hash"
|
|
2549
|
+
version = "0.1.1"
|
|
2550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2551
|
+
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
2552
|
+
|
|
2553
|
+
[[package]]
|
|
2554
|
+
name = "pretty_assertions"
|
|
2555
|
+
version = "1.4.1"
|
|
2556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2557
|
+
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
2558
|
+
dependencies = [
|
|
2559
|
+
"diff",
|
|
2560
|
+
"yansi",
|
|
2561
|
+
]
|
|
2562
|
+
|
|
2563
|
+
[[package]]
|
|
2564
|
+
name = "proc-macro2"
|
|
2565
|
+
version = "1.0.106"
|
|
2566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2567
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
2568
|
+
dependencies = [
|
|
2569
|
+
"unicode-ident",
|
|
2570
|
+
]
|
|
2571
|
+
|
|
2572
|
+
[[package]]
|
|
2573
|
+
name = "ptr_meta"
|
|
2574
|
+
version = "0.1.4"
|
|
2575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2576
|
+
checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
|
|
2577
|
+
dependencies = [
|
|
2578
|
+
"ptr_meta_derive",
|
|
2579
|
+
]
|
|
2580
|
+
|
|
2581
|
+
[[package]]
|
|
2582
|
+
name = "ptr_meta_derive"
|
|
2583
|
+
version = "0.1.4"
|
|
2584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2585
|
+
checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
|
|
2586
|
+
dependencies = [
|
|
2587
|
+
"proc-macro2",
|
|
2588
|
+
"quote",
|
|
2589
|
+
"syn 1.0.109",
|
|
2590
|
+
]
|
|
2591
|
+
|
|
2592
|
+
[[package]]
|
|
2593
|
+
name = "quote"
|
|
2594
|
+
version = "1.0.44"
|
|
2595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2596
|
+
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
|
|
2597
|
+
dependencies = [
|
|
2598
|
+
"proc-macro2",
|
|
2599
|
+
]
|
|
2600
|
+
|
|
2601
|
+
[[package]]
|
|
2602
|
+
name = "r-efi"
|
|
2603
|
+
version = "5.3.0"
|
|
2604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2605
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2606
|
+
|
|
2607
|
+
[[package]]
|
|
2608
|
+
name = "radium"
|
|
2609
|
+
version = "0.7.0"
|
|
2610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2611
|
+
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
2612
|
+
|
|
2613
|
+
[[package]]
|
|
2614
|
+
name = "radix_trie"
|
|
2615
|
+
version = "0.3.0"
|
|
2616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2617
|
+
checksum = "3b4431027dcd37fc2a73ef740b5f233aa805897935b8bce0195e41bbf9a3289a"
|
|
2618
|
+
dependencies = [
|
|
2619
|
+
"endian-type",
|
|
2620
|
+
"nibble_vec",
|
|
2621
|
+
]
|
|
2622
|
+
|
|
2623
|
+
[[package]]
|
|
2624
|
+
name = "rand"
|
|
2625
|
+
version = "0.8.5"
|
|
2626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2627
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2628
|
+
dependencies = [
|
|
2629
|
+
"rand_core",
|
|
2630
|
+
]
|
|
2631
|
+
|
|
2632
|
+
[[package]]
|
|
2633
|
+
name = "rand_core"
|
|
2634
|
+
version = "0.6.4"
|
|
2635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2636
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2637
|
+
|
|
2638
|
+
[[package]]
|
|
2639
|
+
name = "rayon"
|
|
2640
|
+
version = "1.11.0"
|
|
2641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2642
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
2643
|
+
dependencies = [
|
|
2644
|
+
"either",
|
|
2645
|
+
"rayon-core",
|
|
2646
|
+
]
|
|
2647
|
+
|
|
2648
|
+
[[package]]
|
|
2649
|
+
name = "rayon-core"
|
|
2650
|
+
version = "1.13.0"
|
|
2651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2652
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2653
|
+
dependencies = [
|
|
2654
|
+
"crossbeam-deque",
|
|
2655
|
+
"crossbeam-utils",
|
|
2656
|
+
]
|
|
2657
|
+
|
|
2658
|
+
[[package]]
|
|
2659
|
+
name = "redox_syscall"
|
|
2660
|
+
version = "0.5.18"
|
|
2661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2662
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2663
|
+
dependencies = [
|
|
2664
|
+
"bitflags 2.10.0",
|
|
2665
|
+
]
|
|
2666
|
+
|
|
2667
|
+
[[package]]
|
|
2668
|
+
name = "redox_syscall"
|
|
2669
|
+
version = "0.7.0"
|
|
2670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2671
|
+
checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27"
|
|
2672
|
+
dependencies = [
|
|
2673
|
+
"bitflags 2.10.0",
|
|
2674
|
+
]
|
|
2675
|
+
|
|
2676
|
+
[[package]]
|
|
2677
|
+
name = "ref-cast"
|
|
2678
|
+
version = "1.0.25"
|
|
2679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2680
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
2681
|
+
dependencies = [
|
|
2682
|
+
"ref-cast-impl",
|
|
2683
|
+
]
|
|
2684
|
+
|
|
2685
|
+
[[package]]
|
|
2686
|
+
name = "ref-cast-impl"
|
|
2687
|
+
version = "1.0.25"
|
|
2688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2689
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
2690
|
+
dependencies = [
|
|
2691
|
+
"proc-macro2",
|
|
2692
|
+
"quote",
|
|
2693
|
+
"syn 2.0.114",
|
|
2694
|
+
]
|
|
2695
|
+
|
|
2696
|
+
[[package]]
|
|
2697
|
+
name = "regex"
|
|
2698
|
+
version = "1.12.3"
|
|
2699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2700
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
2701
|
+
dependencies = [
|
|
2702
|
+
"aho-corasick",
|
|
2703
|
+
"memchr",
|
|
2704
|
+
"regex-automata",
|
|
2705
|
+
"regex-syntax",
|
|
2706
|
+
]
|
|
2707
|
+
|
|
2708
|
+
[[package]]
|
|
2709
|
+
name = "regex-automata"
|
|
2710
|
+
version = "0.4.14"
|
|
2711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2712
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
2713
|
+
dependencies = [
|
|
2714
|
+
"aho-corasick",
|
|
2715
|
+
"memchr",
|
|
2716
|
+
"regex-syntax",
|
|
2717
|
+
]
|
|
2718
|
+
|
|
2719
|
+
[[package]]
|
|
2720
|
+
name = "regex-syntax"
|
|
2721
|
+
version = "0.8.9"
|
|
2722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2723
|
+
checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
|
|
2724
|
+
|
|
2725
|
+
[[package]]
|
|
2726
|
+
name = "regress"
|
|
2727
|
+
version = "0.10.5"
|
|
2728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2729
|
+
checksum = "2057b2325e68a893284d1538021ab90279adac1139957ca2a74426c6f118fb48"
|
|
2730
|
+
dependencies = [
|
|
2731
|
+
"hashbrown 0.16.1",
|
|
2732
|
+
"memchr",
|
|
2733
|
+
]
|
|
2734
|
+
|
|
2735
|
+
[[package]]
|
|
2736
|
+
name = "rend"
|
|
2737
|
+
version = "0.4.2"
|
|
2738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2739
|
+
checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
|
|
2740
|
+
dependencies = [
|
|
2741
|
+
"bytecheck",
|
|
2742
|
+
]
|
|
2743
|
+
|
|
2744
|
+
[[package]]
|
|
2745
|
+
name = "rkyv"
|
|
2746
|
+
version = "0.7.46"
|
|
2747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2748
|
+
checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
|
|
2749
|
+
dependencies = [
|
|
2750
|
+
"bitvec",
|
|
2751
|
+
"bytecheck",
|
|
2752
|
+
"bytes",
|
|
2753
|
+
"hashbrown 0.12.3",
|
|
2754
|
+
"ptr_meta",
|
|
2755
|
+
"rend",
|
|
2756
|
+
"rkyv_derive",
|
|
2757
|
+
"seahash",
|
|
2758
|
+
"tinyvec",
|
|
2759
|
+
"uuid",
|
|
2760
|
+
]
|
|
2761
|
+
|
|
2762
|
+
[[package]]
|
|
2763
|
+
name = "rkyv_derive"
|
|
2764
|
+
version = "0.7.46"
|
|
2765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2766
|
+
checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
|
|
2767
|
+
dependencies = [
|
|
2768
|
+
"proc-macro2",
|
|
2769
|
+
"quote",
|
|
2770
|
+
"syn 1.0.109",
|
|
2771
|
+
]
|
|
2772
|
+
|
|
2773
|
+
[[package]]
|
|
2774
|
+
name = "rolldown"
|
|
2775
|
+
version = "0.1.0"
|
|
2776
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
2777
|
+
dependencies = [
|
|
2778
|
+
"anyhow",
|
|
2779
|
+
"append-only-vec",
|
|
2780
|
+
"arcstr",
|
|
2781
|
+
"bitflags 2.10.0",
|
|
2782
|
+
"commondir",
|
|
2783
|
+
"css-module-lexer",
|
|
2784
|
+
"futures",
|
|
2785
|
+
"indexmap",
|
|
2786
|
+
"itertools 0.14.0",
|
|
2787
|
+
"itoa",
|
|
2788
|
+
"json-escape-simd",
|
|
2789
|
+
"memchr",
|
|
2790
|
+
"oxc",
|
|
2791
|
+
"oxc_allocator 0.112.0",
|
|
2792
|
+
"oxc_ecmascript 0.112.0",
|
|
2793
|
+
"oxc_index",
|
|
2794
|
+
"oxc_traverse 0.112.0",
|
|
2795
|
+
"petgraph",
|
|
2796
|
+
"rayon",
|
|
2797
|
+
"rolldown-notify",
|
|
2798
|
+
"rolldown_common",
|
|
2799
|
+
"rolldown_dev_common",
|
|
2800
|
+
"rolldown_devtools",
|
|
2801
|
+
"rolldown_ecmascript",
|
|
2802
|
+
"rolldown_ecmascript_utils",
|
|
2803
|
+
"rolldown_error",
|
|
2804
|
+
"rolldown_fs",
|
|
2805
|
+
"rolldown_plugin",
|
|
2806
|
+
"rolldown_plugin_chunk_import_map",
|
|
2807
|
+
"rolldown_plugin_data_uri",
|
|
2808
|
+
"rolldown_plugin_hmr",
|
|
2809
|
+
"rolldown_plugin_lazy_compilation",
|
|
2810
|
+
"rolldown_plugin_oxc_runtime",
|
|
2811
|
+
"rolldown_resolver",
|
|
2812
|
+
"rolldown_sourcemap",
|
|
2813
|
+
"rolldown_std_utils",
|
|
2814
|
+
"rolldown_tracing",
|
|
2815
|
+
"rolldown_utils",
|
|
2816
|
+
"rustc-hash",
|
|
2817
|
+
"serde_json",
|
|
2818
|
+
"string_wizard",
|
|
2819
|
+
"sugar_path",
|
|
2820
|
+
"tokio",
|
|
2821
|
+
"tracing",
|
|
2822
|
+
"url",
|
|
2823
|
+
"xxhash-rust",
|
|
2824
|
+
]
|
|
2825
|
+
|
|
2826
|
+
[[package]]
|
|
2827
|
+
name = "rolldown-ariadne"
|
|
2828
|
+
version = "0.5.3"
|
|
2829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2830
|
+
checksum = "77dff57c9de498bb1eb5b1ce682c2e3a0ae956b266fa0933c3e151b87b078967"
|
|
2831
|
+
dependencies = [
|
|
2832
|
+
"unicode-width",
|
|
2833
|
+
"yansi",
|
|
2834
|
+
]
|
|
2835
|
+
|
|
2836
|
+
[[package]]
|
|
2837
|
+
name = "rolldown-notify"
|
|
2838
|
+
version = "10.1.0"
|
|
2839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2840
|
+
checksum = "e8bf250d410b79487a6d054e6bd16ec08dddd2998f5f5e6291867a35066cfc37"
|
|
2841
|
+
dependencies = [
|
|
2842
|
+
"bitflags 2.10.0",
|
|
2843
|
+
"inotify",
|
|
2844
|
+
"kqueue",
|
|
2845
|
+
"libc",
|
|
2846
|
+
"mio",
|
|
2847
|
+
"objc2-core-foundation",
|
|
2848
|
+
"objc2-core-services",
|
|
2849
|
+
"rolldown-notify-types",
|
|
2850
|
+
"tracing",
|
|
2851
|
+
"walkdir",
|
|
2852
|
+
"windows-sys",
|
|
2853
|
+
]
|
|
2854
|
+
|
|
2855
|
+
[[package]]
|
|
2856
|
+
name = "rolldown-notify-types"
|
|
2857
|
+
version = "2.0.2"
|
|
2858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2859
|
+
checksum = "1931923a28e14c01a27ca56669669eb3e3de4068859c34e17b96c93ba3a61afe"
|
|
2860
|
+
|
|
2861
|
+
[[package]]
|
|
2862
|
+
name = "rolldown_common"
|
|
2863
|
+
version = "0.1.0"
|
|
2864
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
2865
|
+
dependencies = [
|
|
2866
|
+
"anyhow",
|
|
2867
|
+
"arcstr",
|
|
2868
|
+
"bitflags 2.10.0",
|
|
2869
|
+
"dashmap 6.1.0",
|
|
2870
|
+
"derive_more",
|
|
2871
|
+
"fast-glob",
|
|
2872
|
+
"itertools 0.14.0",
|
|
2873
|
+
"num-bigint",
|
|
2874
|
+
"oxc",
|
|
2875
|
+
"oxc_ecmascript 0.112.0",
|
|
2876
|
+
"oxc_index",
|
|
2877
|
+
"oxc_resolver",
|
|
2878
|
+
"rolldown_ecmascript",
|
|
2879
|
+
"rolldown_error",
|
|
2880
|
+
"rolldown_sourcemap",
|
|
2881
|
+
"rolldown_std_utils",
|
|
2882
|
+
"rolldown_utils",
|
|
2883
|
+
"rustc-hash",
|
|
2884
|
+
"serde",
|
|
2885
|
+
"serde_json",
|
|
2886
|
+
"simdutf8",
|
|
2887
|
+
"string_wizard",
|
|
2888
|
+
"sugar_path",
|
|
2889
|
+
"tokio",
|
|
2890
|
+
]
|
|
2891
|
+
|
|
2892
|
+
[[package]]
|
|
2893
|
+
name = "rolldown_dev_common"
|
|
2894
|
+
version = "0.1.0"
|
|
2895
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
2896
|
+
dependencies = [
|
|
2897
|
+
"derive_more",
|
|
2898
|
+
"rolldown_common",
|
|
2899
|
+
"rolldown_error",
|
|
2900
|
+
]
|
|
2901
|
+
|
|
2902
|
+
[[package]]
|
|
2903
|
+
name = "rolldown_devtools"
|
|
2904
|
+
version = "0.1.0"
|
|
2905
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
2906
|
+
dependencies = [
|
|
2907
|
+
"blake3",
|
|
2908
|
+
"dashmap 6.1.0",
|
|
2909
|
+
"rolldown_devtools_action",
|
|
2910
|
+
"rustc-hash",
|
|
2911
|
+
"serde",
|
|
2912
|
+
"serde_json",
|
|
2913
|
+
"tracing",
|
|
2914
|
+
"tracing-subscriber",
|
|
2915
|
+
]
|
|
2916
|
+
|
|
2917
|
+
[[package]]
|
|
2918
|
+
name = "rolldown_devtools_action"
|
|
2919
|
+
version = "0.1.0"
|
|
2920
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
2921
|
+
dependencies = [
|
|
2922
|
+
"serde",
|
|
2923
|
+
"ts-rs",
|
|
2924
|
+
]
|
|
2925
|
+
|
|
2926
|
+
[[package]]
|
|
2927
|
+
name = "rolldown_ecmascript"
|
|
2928
|
+
version = "0.1.0"
|
|
2929
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
2930
|
+
dependencies = [
|
|
2931
|
+
"arcstr",
|
|
2932
|
+
"oxc",
|
|
2933
|
+
"oxc_sourcemap",
|
|
2934
|
+
"rolldown_error",
|
|
2935
|
+
"self_cell",
|
|
2936
|
+
]
|
|
2937
|
+
|
|
2938
|
+
[[package]]
|
|
2939
|
+
name = "rolldown_ecmascript_utils"
|
|
2940
|
+
version = "0.1.0"
|
|
2941
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
2942
|
+
dependencies = [
|
|
2943
|
+
"memchr",
|
|
2944
|
+
"oxc",
|
|
2945
|
+
"rolldown_common",
|
|
2946
|
+
"rolldown_utils",
|
|
2947
|
+
"smallvec",
|
|
2948
|
+
]
|
|
2949
|
+
|
|
2950
|
+
[[package]]
|
|
2951
|
+
name = "rolldown_error"
|
|
2952
|
+
version = "0.1.0"
|
|
2953
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
2954
|
+
dependencies = [
|
|
2955
|
+
"anyhow",
|
|
2956
|
+
"arcstr",
|
|
2957
|
+
"bitflags 2.10.0",
|
|
2958
|
+
"derive_more",
|
|
2959
|
+
"heck",
|
|
2960
|
+
"oxc",
|
|
2961
|
+
"oxc_resolver",
|
|
2962
|
+
"rolldown-ariadne",
|
|
2963
|
+
"ropey",
|
|
2964
|
+
"rustc-hash",
|
|
2965
|
+
"sugar_path",
|
|
2966
|
+
]
|
|
2967
|
+
|
|
2968
|
+
[[package]]
|
|
2969
|
+
name = "rolldown_fs"
|
|
2970
|
+
version = "0.1.0"
|
|
2971
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
2972
|
+
dependencies = [
|
|
2973
|
+
"oxc_resolver",
|
|
2974
|
+
"vfs",
|
|
2975
|
+
]
|
|
2976
|
+
|
|
2977
|
+
[[package]]
|
|
2978
|
+
name = "rolldown_plugin"
|
|
2979
|
+
version = "0.1.0"
|
|
2980
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
2981
|
+
dependencies = [
|
|
2982
|
+
"anyhow",
|
|
2983
|
+
"arcstr",
|
|
2984
|
+
"async-trait",
|
|
2985
|
+
"bitflags 2.10.0",
|
|
2986
|
+
"dashmap 6.1.0",
|
|
2987
|
+
"derive_more",
|
|
2988
|
+
"nodejs-built-in-modules",
|
|
2989
|
+
"oxc_index",
|
|
2990
|
+
"rolldown_common",
|
|
2991
|
+
"rolldown_devtools",
|
|
2992
|
+
"rolldown_ecmascript",
|
|
2993
|
+
"rolldown_error",
|
|
2994
|
+
"rolldown_resolver",
|
|
2995
|
+
"rolldown_sourcemap",
|
|
2996
|
+
"rolldown_utils",
|
|
2997
|
+
"rustc-hash",
|
|
2998
|
+
"serde",
|
|
2999
|
+
"serde_json",
|
|
3000
|
+
"string_wizard",
|
|
3001
|
+
"sugar_path",
|
|
3002
|
+
"tokio",
|
|
3003
|
+
"tracing",
|
|
3004
|
+
"typedmap",
|
|
3005
|
+
]
|
|
3006
|
+
|
|
3007
|
+
[[package]]
|
|
3008
|
+
name = "rolldown_plugin_chunk_import_map"
|
|
3009
|
+
version = "0.1.0"
|
|
3010
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
3011
|
+
dependencies = [
|
|
3012
|
+
"arcstr",
|
|
3013
|
+
"rolldown_common",
|
|
3014
|
+
"rolldown_plugin",
|
|
3015
|
+
"rolldown_utils",
|
|
3016
|
+
"rustc-hash",
|
|
3017
|
+
"serde_json",
|
|
3018
|
+
"xxhash-rust",
|
|
3019
|
+
]
|
|
3020
|
+
|
|
3021
|
+
[[package]]
|
|
3022
|
+
name = "rolldown_plugin_data_uri"
|
|
3023
|
+
version = "0.1.0"
|
|
3024
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
3025
|
+
dependencies = [
|
|
3026
|
+
"arcstr",
|
|
3027
|
+
"base64-simd 0.8.0",
|
|
3028
|
+
"rolldown_common",
|
|
3029
|
+
"rolldown_plugin",
|
|
3030
|
+
"rolldown_utils",
|
|
3031
|
+
"simdutf8",
|
|
3032
|
+
"urlencoding",
|
|
3033
|
+
]
|
|
3034
|
+
|
|
3035
|
+
[[package]]
|
|
3036
|
+
name = "rolldown_plugin_hmr"
|
|
3037
|
+
version = "0.1.0"
|
|
3038
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
3039
|
+
dependencies = [
|
|
3040
|
+
"arcstr",
|
|
3041
|
+
"oxc",
|
|
3042
|
+
"rolldown_common",
|
|
3043
|
+
"rolldown_plugin",
|
|
3044
|
+
]
|
|
3045
|
+
|
|
3046
|
+
[[package]]
|
|
3047
|
+
name = "rolldown_plugin_lazy_compilation"
|
|
3048
|
+
version = "0.1.0"
|
|
3049
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
3050
|
+
dependencies = [
|
|
3051
|
+
"anyhow",
|
|
3052
|
+
"arcstr",
|
|
3053
|
+
"oxc",
|
|
3054
|
+
"rolldown_common",
|
|
3055
|
+
"rolldown_plugin",
|
|
3056
|
+
"rolldown_utils",
|
|
3057
|
+
]
|
|
3058
|
+
|
|
3059
|
+
[[package]]
|
|
3060
|
+
name = "rolldown_plugin_oxc_runtime"
|
|
3061
|
+
version = "0.1.0"
|
|
3062
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
3063
|
+
dependencies = [
|
|
3064
|
+
"arcstr",
|
|
3065
|
+
"phf 0.13.1",
|
|
3066
|
+
"rolldown_plugin",
|
|
3067
|
+
"rolldown_utils",
|
|
3068
|
+
]
|
|
3069
|
+
|
|
3070
|
+
[[package]]
|
|
3071
|
+
name = "rolldown_resolver"
|
|
3072
|
+
version = "0.1.0"
|
|
3073
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
3074
|
+
dependencies = [
|
|
3075
|
+
"anyhow",
|
|
3076
|
+
"arcstr",
|
|
3077
|
+
"dashmap 6.1.0",
|
|
3078
|
+
"itertools 0.14.0",
|
|
3079
|
+
"oxc_resolver",
|
|
3080
|
+
"rolldown_common",
|
|
3081
|
+
"rolldown_fs",
|
|
3082
|
+
"rolldown_utils",
|
|
3083
|
+
"sugar_path",
|
|
3084
|
+
]
|
|
3085
|
+
|
|
3086
|
+
[[package]]
|
|
3087
|
+
name = "rolldown_sourcemap"
|
|
3088
|
+
version = "0.1.0"
|
|
3089
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
3090
|
+
dependencies = [
|
|
3091
|
+
"memchr",
|
|
3092
|
+
"oxc",
|
|
3093
|
+
"oxc_sourcemap",
|
|
3094
|
+
"rolldown_utils",
|
|
3095
|
+
"rustc-hash",
|
|
3096
|
+
]
|
|
3097
|
+
|
|
3098
|
+
[[package]]
|
|
3099
|
+
name = "rolldown_std_utils"
|
|
3100
|
+
version = "0.1.0"
|
|
3101
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
3102
|
+
dependencies = [
|
|
3103
|
+
"regex",
|
|
3104
|
+
]
|
|
3105
|
+
|
|
3106
|
+
[[package]]
|
|
3107
|
+
name = "rolldown_tracing"
|
|
3108
|
+
version = "0.1.0"
|
|
3109
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
3110
|
+
dependencies = [
|
|
3111
|
+
"tracing",
|
|
3112
|
+
"tracing-chrome",
|
|
3113
|
+
"tracing-subscriber",
|
|
3114
|
+
]
|
|
3115
|
+
|
|
3116
|
+
[[package]]
|
|
3117
|
+
name = "rolldown_utils"
|
|
3118
|
+
version = "0.1.0"
|
|
3119
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
3120
|
+
dependencies = [
|
|
3121
|
+
"anyhow",
|
|
3122
|
+
"arcstr",
|
|
3123
|
+
"async-scoped",
|
|
3124
|
+
"base-encode",
|
|
3125
|
+
"base64-simd 0.8.0",
|
|
3126
|
+
"cow-utils",
|
|
3127
|
+
"dashmap 6.1.0",
|
|
3128
|
+
"fast-glob",
|
|
3129
|
+
"form_urlencoded",
|
|
3130
|
+
"futures",
|
|
3131
|
+
"indexmap",
|
|
3132
|
+
"infer",
|
|
3133
|
+
"itoa",
|
|
3134
|
+
"memchr",
|
|
3135
|
+
"mime",
|
|
3136
|
+
"nom",
|
|
3137
|
+
"oxc",
|
|
3138
|
+
"oxc_index",
|
|
3139
|
+
"phf 0.13.1",
|
|
3140
|
+
"rayon",
|
|
3141
|
+
"regex",
|
|
3142
|
+
"regress",
|
|
3143
|
+
"rolldown_error",
|
|
3144
|
+
"rolldown_std_utils",
|
|
3145
|
+
"rustc-hash",
|
|
3146
|
+
"serde_json",
|
|
3147
|
+
"simdutf8",
|
|
3148
|
+
"sugar_path",
|
|
3149
|
+
"tokio",
|
|
3150
|
+
"uuid",
|
|
3151
|
+
"xxhash-rust",
|
|
3152
|
+
]
|
|
3153
|
+
|
|
3154
|
+
[[package]]
|
|
3155
|
+
name = "ropey"
|
|
3156
|
+
version = "1.6.1"
|
|
3157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3158
|
+
checksum = "93411e420bcd1a75ddd1dc3caf18c23155eda2c090631a85af21ba19e97093b5"
|
|
3159
|
+
dependencies = [
|
|
3160
|
+
"smallvec",
|
|
3161
|
+
"str_indices",
|
|
3162
|
+
]
|
|
3163
|
+
|
|
3164
|
+
[[package]]
|
|
3165
|
+
name = "rustc-hash"
|
|
3166
|
+
version = "2.1.1"
|
|
3167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3168
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
3169
|
+
|
|
3170
|
+
[[package]]
|
|
3171
|
+
name = "rustc_version"
|
|
3172
|
+
version = "0.4.1"
|
|
3173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3174
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
3175
|
+
dependencies = [
|
|
3176
|
+
"semver",
|
|
3177
|
+
]
|
|
3178
|
+
|
|
3179
|
+
[[package]]
|
|
3180
|
+
name = "rustix"
|
|
3181
|
+
version = "1.1.3"
|
|
3182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3183
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
3184
|
+
dependencies = [
|
|
3185
|
+
"bitflags 2.10.0",
|
|
3186
|
+
"errno",
|
|
3187
|
+
"libc",
|
|
3188
|
+
"linux-raw-sys",
|
|
3189
|
+
"windows-sys",
|
|
3190
|
+
]
|
|
3191
|
+
|
|
3192
|
+
[[package]]
|
|
3193
|
+
name = "rustversion"
|
|
3194
|
+
version = "1.0.22"
|
|
3195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3196
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
3197
|
+
|
|
3198
|
+
[[package]]
|
|
3199
|
+
name = "ryu"
|
|
3200
|
+
version = "1.0.22"
|
|
3201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3202
|
+
checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
|
|
3203
|
+
|
|
3204
|
+
[[package]]
|
|
3205
|
+
name = "same-file"
|
|
3206
|
+
version = "1.0.6"
|
|
3207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3208
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
3209
|
+
dependencies = [
|
|
3210
|
+
"winapi-util",
|
|
3211
|
+
]
|
|
3212
|
+
|
|
3213
|
+
[[package]]
|
|
3214
|
+
name = "scopeguard"
|
|
3215
|
+
version = "1.2.0"
|
|
3216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3217
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
3218
|
+
|
|
3219
|
+
[[package]]
|
|
3220
|
+
name = "seahash"
|
|
3221
|
+
version = "4.1.0"
|
|
3222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3223
|
+
checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
|
|
3224
|
+
|
|
3225
|
+
[[package]]
|
|
3226
|
+
name = "seize"
|
|
3227
|
+
version = "0.5.1"
|
|
3228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3229
|
+
checksum = "5b55fb86dfd3a2f5f76ea78310a88f96c4ea21a3031f8d212443d56123fd0521"
|
|
3230
|
+
dependencies = [
|
|
3231
|
+
"libc",
|
|
3232
|
+
"windows-sys",
|
|
3233
|
+
]
|
|
3234
|
+
|
|
3235
|
+
[[package]]
|
|
3236
|
+
name = "self_cell"
|
|
3237
|
+
version = "1.2.2"
|
|
3238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3239
|
+
checksum = "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89"
|
|
3240
|
+
|
|
3241
|
+
[[package]]
|
|
3242
|
+
name = "semver"
|
|
3243
|
+
version = "1.0.27"
|
|
3244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3245
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
3246
|
+
|
|
3247
|
+
[[package]]
|
|
3248
|
+
name = "seq-macro"
|
|
3249
|
+
version = "0.3.6"
|
|
3250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3251
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
3252
|
+
|
|
3253
|
+
[[package]]
|
|
3254
|
+
name = "serde"
|
|
3255
|
+
version = "1.0.228"
|
|
3256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3257
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
3258
|
+
dependencies = [
|
|
3259
|
+
"serde_core",
|
|
3260
|
+
"serde_derive",
|
|
3261
|
+
]
|
|
3262
|
+
|
|
3263
|
+
[[package]]
|
|
3264
|
+
name = "serde-content"
|
|
3265
|
+
version = "0.1.2"
|
|
3266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3267
|
+
checksum = "3753ca04f350fa92d00b6146a3555e63c55388c9ef2e11e09bce2ff1c0b509c6"
|
|
3268
|
+
dependencies = [
|
|
3269
|
+
"serde",
|
|
3270
|
+
]
|
|
3271
|
+
|
|
3272
|
+
[[package]]
|
|
3273
|
+
name = "serde_core"
|
|
3274
|
+
version = "1.0.228"
|
|
3275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3276
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
3277
|
+
dependencies = [
|
|
3278
|
+
"serde_derive",
|
|
3279
|
+
]
|
|
3280
|
+
|
|
3281
|
+
[[package]]
|
|
3282
|
+
name = "serde_derive"
|
|
3283
|
+
version = "1.0.228"
|
|
3284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3285
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
3286
|
+
dependencies = [
|
|
3287
|
+
"proc-macro2",
|
|
3288
|
+
"quote",
|
|
3289
|
+
"syn 2.0.114",
|
|
3290
|
+
]
|
|
3291
|
+
|
|
3292
|
+
[[package]]
|
|
3293
|
+
name = "serde_json"
|
|
3294
|
+
version = "1.0.149"
|
|
3295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3296
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
3297
|
+
dependencies = [
|
|
3298
|
+
"indexmap",
|
|
3299
|
+
"itoa",
|
|
3300
|
+
"memchr",
|
|
3301
|
+
"serde",
|
|
3302
|
+
"serde_core",
|
|
3303
|
+
"zmij",
|
|
3304
|
+
]
|
|
3305
|
+
|
|
3306
|
+
[[package]]
|
|
3307
|
+
name = "sha1"
|
|
3308
|
+
version = "0.10.6"
|
|
3309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3310
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
3311
|
+
dependencies = [
|
|
3312
|
+
"cfg-if",
|
|
3313
|
+
"cpufeatures",
|
|
3314
|
+
"digest",
|
|
3315
|
+
]
|
|
3316
|
+
|
|
3317
|
+
[[package]]
|
|
3318
|
+
name = "sha2"
|
|
3319
|
+
version = "0.10.9"
|
|
3320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3321
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
3322
|
+
dependencies = [
|
|
3323
|
+
"cfg-if",
|
|
3324
|
+
"cpufeatures",
|
|
3325
|
+
"digest",
|
|
3326
|
+
]
|
|
3327
|
+
|
|
3328
|
+
[[package]]
|
|
3329
|
+
name = "sharded-slab"
|
|
3330
|
+
version = "0.1.7"
|
|
3331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3332
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
3333
|
+
dependencies = [
|
|
3334
|
+
"lazy_static",
|
|
3335
|
+
]
|
|
3336
|
+
|
|
3337
|
+
[[package]]
|
|
3338
|
+
name = "shlex"
|
|
3339
|
+
version = "1.3.0"
|
|
3340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3341
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
3342
|
+
|
|
3343
|
+
[[package]]
|
|
3344
|
+
name = "simd-abstraction"
|
|
3345
|
+
version = "0.7.1"
|
|
3346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3347
|
+
checksum = "9cadb29c57caadc51ff8346233b5cec1d240b68ce55cf1afc764818791876987"
|
|
3348
|
+
dependencies = [
|
|
3349
|
+
"outref 0.1.0",
|
|
3350
|
+
]
|
|
3351
|
+
|
|
3352
|
+
[[package]]
|
|
3353
|
+
name = "simd-adler32"
|
|
3354
|
+
version = "0.3.8"
|
|
3355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3356
|
+
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
3357
|
+
|
|
3358
|
+
[[package]]
|
|
3359
|
+
name = "simd-json"
|
|
3360
|
+
version = "0.17.0"
|
|
3361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3362
|
+
checksum = "4255126f310d2ba20048db6321c81ab376f6a6735608bf11f0785c41f01f64e3"
|
|
3363
|
+
dependencies = [
|
|
3364
|
+
"halfbrown",
|
|
3365
|
+
"ref-cast",
|
|
3366
|
+
"simdutf8",
|
|
3367
|
+
"value-trait",
|
|
3368
|
+
]
|
|
3369
|
+
|
|
3370
|
+
[[package]]
|
|
3371
|
+
name = "simdutf8"
|
|
3372
|
+
version = "0.1.5"
|
|
3373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3374
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
3375
|
+
|
|
3376
|
+
[[package]]
|
|
3377
|
+
name = "siphasher"
|
|
3378
|
+
version = "1.0.2"
|
|
3379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3380
|
+
checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
|
|
3381
|
+
|
|
3382
|
+
[[package]]
|
|
3383
|
+
name = "slab"
|
|
3384
|
+
version = "0.4.12"
|
|
3385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3386
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
3387
|
+
|
|
3388
|
+
[[package]]
|
|
3389
|
+
name = "smallvec"
|
|
3390
|
+
version = "1.15.1"
|
|
3391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3392
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
3393
|
+
dependencies = [
|
|
3394
|
+
"serde",
|
|
3395
|
+
]
|
|
3396
|
+
|
|
3397
|
+
[[package]]
|
|
3398
|
+
name = "smawk"
|
|
3399
|
+
version = "0.3.2"
|
|
3400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3401
|
+
checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
|
|
3402
|
+
|
|
3403
|
+
[[package]]
|
|
3404
|
+
name = "stable_deref_trait"
|
|
3405
|
+
version = "1.2.1"
|
|
3406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3407
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
3408
|
+
|
|
3409
|
+
[[package]]
|
|
3410
|
+
name = "static_assertions"
|
|
3411
|
+
version = "1.1.0"
|
|
3412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3413
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
3414
|
+
|
|
3415
|
+
[[package]]
|
|
3416
|
+
name = "str_indices"
|
|
3417
|
+
version = "0.4.4"
|
|
3418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3419
|
+
checksum = "d08889ec5408683408db66ad89e0e1f93dff55c73a4ccc71c427d5b277ee47e6"
|
|
3420
|
+
|
|
3421
|
+
[[package]]
|
|
3422
|
+
name = "string_cache"
|
|
3423
|
+
version = "0.8.9"
|
|
3424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3425
|
+
checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
|
|
3426
|
+
dependencies = [
|
|
3427
|
+
"new_debug_unreachable",
|
|
3428
|
+
"parking_lot",
|
|
3429
|
+
"phf_shared 0.11.3",
|
|
3430
|
+
"precomputed-hash",
|
|
3431
|
+
"serde",
|
|
3432
|
+
]
|
|
3433
|
+
|
|
3434
|
+
[[package]]
|
|
3435
|
+
name = "string_cache_codegen"
|
|
3436
|
+
version = "0.5.4"
|
|
3437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3438
|
+
checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
|
|
3439
|
+
dependencies = [
|
|
3440
|
+
"phf_generator 0.11.3",
|
|
3441
|
+
"phf_shared 0.11.3",
|
|
3442
|
+
"proc-macro2",
|
|
3443
|
+
"quote",
|
|
3444
|
+
]
|
|
3445
|
+
|
|
3446
|
+
[[package]]
|
|
3447
|
+
name = "string_wizard"
|
|
3448
|
+
version = "0.0.27"
|
|
3449
|
+
source = "git+https://github.com/rolldown/rolldown?branch=main#3ae4645d91fd9b1282a908d3d927efd168abc231"
|
|
3450
|
+
dependencies = [
|
|
3451
|
+
"memchr",
|
|
3452
|
+
"oxc_index",
|
|
3453
|
+
"oxc_sourcemap",
|
|
3454
|
+
"regex",
|
|
3455
|
+
"rustc-hash",
|
|
3456
|
+
"serde",
|
|
3457
|
+
]
|
|
3458
|
+
|
|
3459
|
+
[[package]]
|
|
3460
|
+
name = "sugar_path"
|
|
3461
|
+
version = "1.2.1"
|
|
3462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3463
|
+
checksum = "48abcb2199ce37819c20dc7a72dc09e3263a00e598ff5089fe5fda92e0f63c37"
|
|
3464
|
+
dependencies = [
|
|
3465
|
+
"smallvec",
|
|
3466
|
+
]
|
|
3467
|
+
|
|
3468
|
+
[[package]]
|
|
3469
|
+
name = "syn"
|
|
3470
|
+
version = "1.0.109"
|
|
3471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3472
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
3473
|
+
dependencies = [
|
|
3474
|
+
"proc-macro2",
|
|
3475
|
+
"quote",
|
|
3476
|
+
"unicode-ident",
|
|
3477
|
+
]
|
|
3478
|
+
|
|
3479
|
+
[[package]]
|
|
3480
|
+
name = "syn"
|
|
3481
|
+
version = "2.0.114"
|
|
3482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3483
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
3484
|
+
dependencies = [
|
|
3485
|
+
"proc-macro2",
|
|
3486
|
+
"quote",
|
|
3487
|
+
"unicode-ident",
|
|
3488
|
+
]
|
|
3489
|
+
|
|
3490
|
+
[[package]]
|
|
3491
|
+
name = "synstructure"
|
|
3492
|
+
version = "0.13.2"
|
|
3493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3494
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
3495
|
+
dependencies = [
|
|
3496
|
+
"proc-macro2",
|
|
3497
|
+
"quote",
|
|
3498
|
+
"syn 2.0.114",
|
|
3499
|
+
]
|
|
3500
|
+
|
|
3501
|
+
[[package]]
|
|
3502
|
+
name = "tap"
|
|
3503
|
+
version = "1.0.1"
|
|
3504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3505
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
3506
|
+
|
|
3507
|
+
[[package]]
|
|
3508
|
+
name = "tendril"
|
|
3509
|
+
version = "0.4.3"
|
|
3510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3511
|
+
checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
|
|
3512
|
+
dependencies = [
|
|
3513
|
+
"futf",
|
|
3514
|
+
"mac",
|
|
3515
|
+
"utf-8",
|
|
3516
|
+
]
|
|
3517
|
+
|
|
3518
|
+
[[package]]
|
|
3519
|
+
name = "termcolor"
|
|
3520
|
+
version = "1.4.1"
|
|
3521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3522
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
3523
|
+
dependencies = [
|
|
3524
|
+
"winapi-util",
|
|
3525
|
+
]
|
|
3526
|
+
|
|
3527
|
+
[[package]]
|
|
3528
|
+
name = "textwrap"
|
|
3529
|
+
version = "0.16.2"
|
|
3530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3531
|
+
checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
|
|
3532
|
+
dependencies = [
|
|
3533
|
+
"smawk",
|
|
3534
|
+
"unicode-linebreak",
|
|
3535
|
+
"unicode-width",
|
|
3536
|
+
]
|
|
3537
|
+
|
|
3538
|
+
[[package]]
|
|
3539
|
+
name = "thiserror"
|
|
3540
|
+
version = "1.0.69"
|
|
3541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3542
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
3543
|
+
dependencies = [
|
|
3544
|
+
"thiserror-impl 1.0.69",
|
|
3545
|
+
]
|
|
3546
|
+
|
|
3547
|
+
[[package]]
|
|
3548
|
+
name = "thiserror"
|
|
3549
|
+
version = "2.0.18"
|
|
3550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3551
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
3552
|
+
dependencies = [
|
|
3553
|
+
"thiserror-impl 2.0.18",
|
|
3554
|
+
]
|
|
3555
|
+
|
|
3556
|
+
[[package]]
|
|
3557
|
+
name = "thiserror-impl"
|
|
3558
|
+
version = "1.0.69"
|
|
3559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3560
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
3561
|
+
dependencies = [
|
|
3562
|
+
"proc-macro2",
|
|
3563
|
+
"quote",
|
|
3564
|
+
"syn 2.0.114",
|
|
3565
|
+
]
|
|
3566
|
+
|
|
3567
|
+
[[package]]
|
|
3568
|
+
name = "thiserror-impl"
|
|
3569
|
+
version = "2.0.18"
|
|
3570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3571
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
3572
|
+
dependencies = [
|
|
3573
|
+
"proc-macro2",
|
|
3574
|
+
"quote",
|
|
3575
|
+
"syn 2.0.114",
|
|
3576
|
+
]
|
|
3577
|
+
|
|
3578
|
+
[[package]]
|
|
3579
|
+
name = "thread_local"
|
|
3580
|
+
version = "1.1.9"
|
|
3581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3582
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
3583
|
+
dependencies = [
|
|
3584
|
+
"cfg-if",
|
|
3585
|
+
]
|
|
3586
|
+
|
|
3587
|
+
[[package]]
|
|
3588
|
+
name = "tinystr"
|
|
3589
|
+
version = "0.8.2"
|
|
3590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3591
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
3592
|
+
dependencies = [
|
|
3593
|
+
"displaydoc",
|
|
3594
|
+
"zerovec",
|
|
3595
|
+
]
|
|
3596
|
+
|
|
3597
|
+
[[package]]
|
|
3598
|
+
name = "tinyvec"
|
|
3599
|
+
version = "1.10.0"
|
|
3600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3601
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
3602
|
+
dependencies = [
|
|
3603
|
+
"tinyvec_macros",
|
|
3604
|
+
]
|
|
3605
|
+
|
|
3606
|
+
[[package]]
|
|
3607
|
+
name = "tinyvec_macros"
|
|
3608
|
+
version = "0.1.1"
|
|
3609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3610
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3611
|
+
|
|
3612
|
+
[[package]]
|
|
3613
|
+
name = "tokio"
|
|
3614
|
+
version = "1.49.0"
|
|
3615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3616
|
+
checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
3617
|
+
dependencies = [
|
|
3618
|
+
"pin-project-lite",
|
|
3619
|
+
"tokio-macros",
|
|
3620
|
+
]
|
|
3621
|
+
|
|
3622
|
+
[[package]]
|
|
3623
|
+
name = "tokio-macros"
|
|
3624
|
+
version = "2.6.0"
|
|
3625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3626
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
3627
|
+
dependencies = [
|
|
3628
|
+
"proc-macro2",
|
|
3629
|
+
"quote",
|
|
3630
|
+
"syn 2.0.114",
|
|
3631
|
+
]
|
|
3632
|
+
|
|
3633
|
+
[[package]]
|
|
3634
|
+
name = "tracing"
|
|
3635
|
+
version = "0.1.44"
|
|
3636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3637
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3638
|
+
dependencies = [
|
|
3639
|
+
"pin-project-lite",
|
|
3640
|
+
"tracing-attributes",
|
|
3641
|
+
"tracing-core",
|
|
3642
|
+
]
|
|
3643
|
+
|
|
3644
|
+
[[package]]
|
|
3645
|
+
name = "tracing-attributes"
|
|
3646
|
+
version = "0.1.31"
|
|
3647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3648
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
3649
|
+
dependencies = [
|
|
3650
|
+
"proc-macro2",
|
|
3651
|
+
"quote",
|
|
3652
|
+
"syn 2.0.114",
|
|
3653
|
+
]
|
|
3654
|
+
|
|
3655
|
+
[[package]]
|
|
3656
|
+
name = "tracing-chrome"
|
|
3657
|
+
version = "0.7.2"
|
|
3658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3659
|
+
checksum = "bf0a738ed5d6450a9fb96e86a23ad808de2b727fd1394585da5cdd6788ffe724"
|
|
3660
|
+
dependencies = [
|
|
3661
|
+
"serde_json",
|
|
3662
|
+
"tracing-core",
|
|
3663
|
+
"tracing-subscriber",
|
|
3664
|
+
]
|
|
3665
|
+
|
|
3666
|
+
[[package]]
|
|
3667
|
+
name = "tracing-core"
|
|
3668
|
+
version = "0.1.36"
|
|
3669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3670
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3671
|
+
dependencies = [
|
|
3672
|
+
"once_cell",
|
|
3673
|
+
"valuable",
|
|
3674
|
+
]
|
|
3675
|
+
|
|
3676
|
+
[[package]]
|
|
3677
|
+
name = "tracing-log"
|
|
3678
|
+
version = "0.2.0"
|
|
3679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3680
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
3681
|
+
dependencies = [
|
|
3682
|
+
"log",
|
|
3683
|
+
"once_cell",
|
|
3684
|
+
"tracing-core",
|
|
3685
|
+
]
|
|
3686
|
+
|
|
3687
|
+
[[package]]
|
|
3688
|
+
name = "tracing-serde"
|
|
3689
|
+
version = "0.2.0"
|
|
3690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3691
|
+
checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
|
|
3692
|
+
dependencies = [
|
|
3693
|
+
"serde",
|
|
3694
|
+
"tracing-core",
|
|
3695
|
+
]
|
|
3696
|
+
|
|
3697
|
+
[[package]]
|
|
3698
|
+
name = "tracing-subscriber"
|
|
3699
|
+
version = "0.3.22"
|
|
3700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3701
|
+
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
|
3702
|
+
dependencies = [
|
|
3703
|
+
"nu-ansi-term",
|
|
3704
|
+
"serde",
|
|
3705
|
+
"serde_json",
|
|
3706
|
+
"sharded-slab",
|
|
3707
|
+
"smallvec",
|
|
3708
|
+
"thread_local",
|
|
3709
|
+
"tracing-core",
|
|
3710
|
+
"tracing-log",
|
|
3711
|
+
"tracing-serde",
|
|
3712
|
+
]
|
|
3713
|
+
|
|
3714
|
+
[[package]]
|
|
3715
|
+
name = "ts-rs"
|
|
3716
|
+
version = "12.0.1"
|
|
3717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3718
|
+
checksum = "756050066659291d47a554a9f558125db17428b073c5ffce1daf5dcb0f7231d8"
|
|
3719
|
+
dependencies = [
|
|
3720
|
+
"thiserror 2.0.18",
|
|
3721
|
+
"ts-rs-macros",
|
|
3722
|
+
]
|
|
3723
|
+
|
|
3724
|
+
[[package]]
|
|
3725
|
+
name = "ts-rs-macros"
|
|
3726
|
+
version = "12.0.1"
|
|
3727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3728
|
+
checksum = "38d90eea51bc7988ef9e674bf80a85ba6804739e535e9cab48e4bb34a8b652aa"
|
|
3729
|
+
dependencies = [
|
|
3730
|
+
"proc-macro2",
|
|
3731
|
+
"quote",
|
|
3732
|
+
"syn 2.0.114",
|
|
3733
|
+
"termcolor",
|
|
3734
|
+
]
|
|
3735
|
+
|
|
3736
|
+
[[package]]
|
|
3737
|
+
name = "typedmap"
|
|
3738
|
+
version = "0.6.0"
|
|
3739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3740
|
+
checksum = "63278e72ed4f207eb3216c944cbafb35bdb656d2eab97ef73c0c165a1cd3e319"
|
|
3741
|
+
dependencies = [
|
|
3742
|
+
"dashmap 6.1.0",
|
|
3743
|
+
]
|
|
3744
|
+
|
|
3745
|
+
[[package]]
|
|
3746
|
+
name = "typenum"
|
|
3747
|
+
version = "1.19.0"
|
|
3748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3749
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
3750
|
+
|
|
3751
|
+
[[package]]
|
|
3752
|
+
name = "unicode-id-start"
|
|
3753
|
+
version = "1.4.0"
|
|
3754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3755
|
+
checksum = "81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007"
|
|
3756
|
+
|
|
3757
|
+
[[package]]
|
|
3758
|
+
name = "unicode-ident"
|
|
3759
|
+
version = "1.0.22"
|
|
3760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3761
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
3762
|
+
|
|
3763
|
+
[[package]]
|
|
3764
|
+
name = "unicode-linebreak"
|
|
3765
|
+
version = "0.1.5"
|
|
3766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3767
|
+
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
|
|
3768
|
+
|
|
3769
|
+
[[package]]
|
|
3770
|
+
name = "unicode-segmentation"
|
|
3771
|
+
version = "1.12.0"
|
|
3772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3773
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
3774
|
+
|
|
3775
|
+
[[package]]
|
|
3776
|
+
name = "unicode-width"
|
|
3777
|
+
version = "0.2.2"
|
|
3778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3779
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
3780
|
+
|
|
3781
|
+
[[package]]
|
|
3782
|
+
name = "unicode-xid"
|
|
3783
|
+
version = "0.2.6"
|
|
3784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3785
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
3786
|
+
|
|
3787
|
+
[[package]]
|
|
3788
|
+
name = "url"
|
|
3789
|
+
version = "2.5.8"
|
|
3790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3791
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
3792
|
+
dependencies = [
|
|
3793
|
+
"form_urlencoded",
|
|
3794
|
+
"idna",
|
|
3795
|
+
"percent-encoding",
|
|
3796
|
+
"serde",
|
|
3797
|
+
]
|
|
3798
|
+
|
|
3799
|
+
[[package]]
|
|
3800
|
+
name = "urlencoding"
|
|
3801
|
+
version = "2.1.3"
|
|
3802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3803
|
+
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
3804
|
+
|
|
3805
|
+
[[package]]
|
|
3806
|
+
name = "utf-8"
|
|
3807
|
+
version = "0.7.6"
|
|
3808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3809
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
3810
|
+
|
|
3811
|
+
[[package]]
|
|
3812
|
+
name = "utf8_iter"
|
|
3813
|
+
version = "1.0.4"
|
|
3814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3815
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3816
|
+
|
|
3817
|
+
[[package]]
|
|
3818
|
+
name = "uuid"
|
|
3819
|
+
version = "1.20.0"
|
|
3820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3821
|
+
checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f"
|
|
3822
|
+
dependencies = [
|
|
3823
|
+
"getrandom 0.3.4",
|
|
3824
|
+
"js-sys",
|
|
3825
|
+
"wasm-bindgen",
|
|
3826
|
+
]
|
|
3827
|
+
|
|
3828
|
+
[[package]]
|
|
3829
|
+
name = "valuable"
|
|
3830
|
+
version = "0.1.1"
|
|
3831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3832
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
3833
|
+
|
|
3834
|
+
[[package]]
|
|
3835
|
+
name = "value-trait"
|
|
3836
|
+
version = "0.12.1"
|
|
3837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3838
|
+
checksum = "8e80f0c733af0720a501b3905d22e2f97662d8eacfe082a75ed7ffb5ab08cb59"
|
|
3839
|
+
dependencies = [
|
|
3840
|
+
"float-cmp",
|
|
3841
|
+
"halfbrown",
|
|
3842
|
+
"itoa",
|
|
3843
|
+
"ryu",
|
|
3844
|
+
]
|
|
3845
|
+
|
|
3846
|
+
[[package]]
|
|
3847
|
+
name = "version_check"
|
|
3848
|
+
version = "0.9.5"
|
|
3849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3850
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3851
|
+
|
|
3852
|
+
[[package]]
|
|
3853
|
+
name = "vfs"
|
|
3854
|
+
version = "0.12.2"
|
|
3855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3856
|
+
checksum = "9e723b9e1c02a3cf9f9d0de6a4ddb8cdc1df859078902fe0ae0589d615711ae6"
|
|
3857
|
+
dependencies = [
|
|
3858
|
+
"filetime",
|
|
3859
|
+
]
|
|
3860
|
+
|
|
3861
|
+
[[package]]
|
|
3862
|
+
name = "vlq"
|
|
3863
|
+
version = "0.5.1"
|
|
3864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3865
|
+
checksum = "65dd7eed29412da847b0f78bcec0ac98588165988a8cfe41d4ea1d429f8ccfff"
|
|
3866
|
+
|
|
3867
|
+
[[package]]
|
|
3868
|
+
name = "vsimd"
|
|
3869
|
+
version = "0.8.0"
|
|
3870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3871
|
+
checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
|
|
3872
|
+
|
|
3873
|
+
[[package]]
|
|
3874
|
+
name = "walkdir"
|
|
3875
|
+
version = "2.5.0"
|
|
3876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3877
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3878
|
+
dependencies = [
|
|
3879
|
+
"same-file",
|
|
3880
|
+
"winapi-util",
|
|
3881
|
+
]
|
|
3882
|
+
|
|
3883
|
+
[[package]]
|
|
3884
|
+
name = "wasi"
|
|
3885
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3887
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3888
|
+
|
|
3889
|
+
[[package]]
|
|
3890
|
+
name = "wasip2"
|
|
3891
|
+
version = "1.0.2+wasi-0.2.9"
|
|
3892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3893
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
3894
|
+
dependencies = [
|
|
3895
|
+
"wit-bindgen",
|
|
3896
|
+
]
|
|
3897
|
+
|
|
3898
|
+
[[package]]
|
|
3899
|
+
name = "wasm-bindgen"
|
|
3900
|
+
version = "0.2.108"
|
|
3901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3902
|
+
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
|
|
3903
|
+
dependencies = [
|
|
3904
|
+
"cfg-if",
|
|
3905
|
+
"once_cell",
|
|
3906
|
+
"rustversion",
|
|
3907
|
+
"wasm-bindgen-macro",
|
|
3908
|
+
"wasm-bindgen-shared",
|
|
3909
|
+
]
|
|
3910
|
+
|
|
3911
|
+
[[package]]
|
|
3912
|
+
name = "wasm-bindgen-macro"
|
|
3913
|
+
version = "0.2.108"
|
|
3914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3915
|
+
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
|
3916
|
+
dependencies = [
|
|
3917
|
+
"quote",
|
|
3918
|
+
"wasm-bindgen-macro-support",
|
|
3919
|
+
]
|
|
3920
|
+
|
|
3921
|
+
[[package]]
|
|
3922
|
+
name = "wasm-bindgen-macro-support"
|
|
3923
|
+
version = "0.2.108"
|
|
3924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3925
|
+
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
|
3926
|
+
dependencies = [
|
|
3927
|
+
"bumpalo",
|
|
3928
|
+
"proc-macro2",
|
|
3929
|
+
"quote",
|
|
3930
|
+
"syn 2.0.114",
|
|
3931
|
+
"wasm-bindgen-shared",
|
|
3932
|
+
]
|
|
3933
|
+
|
|
3934
|
+
[[package]]
|
|
3935
|
+
name = "wasm-bindgen-shared"
|
|
3936
|
+
version = "0.2.108"
|
|
3937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3938
|
+
checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
|
|
3939
|
+
dependencies = [
|
|
3940
|
+
"unicode-ident",
|
|
3941
|
+
]
|
|
3942
|
+
|
|
3943
|
+
[[package]]
|
|
3944
|
+
name = "winapi-util"
|
|
3945
|
+
version = "0.1.11"
|
|
3946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3947
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3948
|
+
dependencies = [
|
|
3949
|
+
"windows-sys",
|
|
3950
|
+
]
|
|
3951
|
+
|
|
3952
|
+
[[package]]
|
|
3953
|
+
name = "windows"
|
|
3954
|
+
version = "0.62.2"
|
|
3955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3956
|
+
checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
|
|
3957
|
+
dependencies = [
|
|
3958
|
+
"windows-collections",
|
|
3959
|
+
"windows-core",
|
|
3960
|
+
"windows-future",
|
|
3961
|
+
"windows-numerics",
|
|
3962
|
+
]
|
|
3963
|
+
|
|
3964
|
+
[[package]]
|
|
3965
|
+
name = "windows-collections"
|
|
3966
|
+
version = "0.3.2"
|
|
3967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3968
|
+
checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
|
|
3969
|
+
dependencies = [
|
|
3970
|
+
"windows-core",
|
|
3971
|
+
]
|
|
3972
|
+
|
|
3973
|
+
[[package]]
|
|
3974
|
+
name = "windows-core"
|
|
3975
|
+
version = "0.62.2"
|
|
3976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3977
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
3978
|
+
dependencies = [
|
|
3979
|
+
"windows-implement",
|
|
3980
|
+
"windows-interface",
|
|
3981
|
+
"windows-link",
|
|
3982
|
+
"windows-result",
|
|
3983
|
+
"windows-strings",
|
|
3984
|
+
]
|
|
3985
|
+
|
|
3986
|
+
[[package]]
|
|
3987
|
+
name = "windows-future"
|
|
3988
|
+
version = "0.3.2"
|
|
3989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3990
|
+
checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
|
|
3991
|
+
dependencies = [
|
|
3992
|
+
"windows-core",
|
|
3993
|
+
"windows-link",
|
|
3994
|
+
"windows-threading",
|
|
3995
|
+
]
|
|
3996
|
+
|
|
3997
|
+
[[package]]
|
|
3998
|
+
name = "windows-implement"
|
|
3999
|
+
version = "0.60.2"
|
|
4000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4001
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
4002
|
+
dependencies = [
|
|
4003
|
+
"proc-macro2",
|
|
4004
|
+
"quote",
|
|
4005
|
+
"syn 2.0.114",
|
|
4006
|
+
]
|
|
4007
|
+
|
|
4008
|
+
[[package]]
|
|
4009
|
+
name = "windows-interface"
|
|
4010
|
+
version = "0.59.3"
|
|
4011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4012
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
4013
|
+
dependencies = [
|
|
4014
|
+
"proc-macro2",
|
|
4015
|
+
"quote",
|
|
4016
|
+
"syn 2.0.114",
|
|
4017
|
+
]
|
|
4018
|
+
|
|
4019
|
+
[[package]]
|
|
4020
|
+
name = "windows-link"
|
|
4021
|
+
version = "0.2.1"
|
|
4022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4023
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
4024
|
+
|
|
4025
|
+
[[package]]
|
|
4026
|
+
name = "windows-numerics"
|
|
4027
|
+
version = "0.3.1"
|
|
4028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4029
|
+
checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
|
|
4030
|
+
dependencies = [
|
|
4031
|
+
"windows-core",
|
|
4032
|
+
"windows-link",
|
|
4033
|
+
]
|
|
4034
|
+
|
|
4035
|
+
[[package]]
|
|
4036
|
+
name = "windows-result"
|
|
4037
|
+
version = "0.4.1"
|
|
4038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4039
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
4040
|
+
dependencies = [
|
|
4041
|
+
"windows-link",
|
|
4042
|
+
]
|
|
4043
|
+
|
|
4044
|
+
[[package]]
|
|
4045
|
+
name = "windows-strings"
|
|
4046
|
+
version = "0.5.1"
|
|
4047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4048
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
4049
|
+
dependencies = [
|
|
4050
|
+
"windows-link",
|
|
4051
|
+
]
|
|
4052
|
+
|
|
4053
|
+
[[package]]
|
|
4054
|
+
name = "windows-sys"
|
|
4055
|
+
version = "0.61.2"
|
|
4056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4057
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
4058
|
+
dependencies = [
|
|
4059
|
+
"windows-link",
|
|
4060
|
+
]
|
|
4061
|
+
|
|
4062
|
+
[[package]]
|
|
4063
|
+
name = "windows-threading"
|
|
4064
|
+
version = "0.2.1"
|
|
4065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4066
|
+
checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
|
|
4067
|
+
dependencies = [
|
|
4068
|
+
"windows-link",
|
|
4069
|
+
]
|
|
4070
|
+
|
|
4071
|
+
[[package]]
|
|
4072
|
+
name = "wit-bindgen"
|
|
4073
|
+
version = "0.51.0"
|
|
4074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4075
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
4076
|
+
|
|
4077
|
+
[[package]]
|
|
4078
|
+
name = "writeable"
|
|
4079
|
+
version = "0.6.2"
|
|
4080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4081
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
4082
|
+
|
|
4083
|
+
[[package]]
|
|
4084
|
+
name = "wyz"
|
|
4085
|
+
version = "0.5.1"
|
|
4086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4087
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
4088
|
+
dependencies = [
|
|
4089
|
+
"tap",
|
|
4090
|
+
]
|
|
4091
|
+
|
|
4092
|
+
[[package]]
|
|
4093
|
+
name = "xml5ever"
|
|
4094
|
+
version = "0.18.1"
|
|
4095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4096
|
+
checksum = "9bbb26405d8e919bc1547a5aa9abc95cbfa438f04844f5fdd9dc7596b748bf69"
|
|
4097
|
+
dependencies = [
|
|
4098
|
+
"log",
|
|
4099
|
+
"mac",
|
|
4100
|
+
"markup5ever",
|
|
4101
|
+
]
|
|
4102
|
+
|
|
4103
|
+
[[package]]
|
|
4104
|
+
name = "xxhash-rust"
|
|
4105
|
+
version = "0.8.15"
|
|
4106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4107
|
+
checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
|
|
4108
|
+
|
|
4109
|
+
[[package]]
|
|
4110
|
+
name = "yansi"
|
|
4111
|
+
version = "1.0.1"
|
|
4112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4113
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
4114
|
+
|
|
4115
|
+
[[package]]
|
|
4116
|
+
name = "yoke"
|
|
4117
|
+
version = "0.8.1"
|
|
4118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4119
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
4120
|
+
dependencies = [
|
|
4121
|
+
"stable_deref_trait",
|
|
4122
|
+
"yoke-derive",
|
|
4123
|
+
"zerofrom",
|
|
4124
|
+
]
|
|
4125
|
+
|
|
4126
|
+
[[package]]
|
|
4127
|
+
name = "yoke-derive"
|
|
4128
|
+
version = "0.8.1"
|
|
4129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4130
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
4131
|
+
dependencies = [
|
|
4132
|
+
"proc-macro2",
|
|
4133
|
+
"quote",
|
|
4134
|
+
"syn 2.0.114",
|
|
4135
|
+
"synstructure",
|
|
4136
|
+
]
|
|
4137
|
+
|
|
4138
|
+
[[package]]
|
|
4139
|
+
name = "zenith-bundler"
|
|
4140
|
+
version = "0.1.0"
|
|
4141
|
+
dependencies = [
|
|
4142
|
+
"anyhow",
|
|
4143
|
+
"arcstr",
|
|
4144
|
+
"compiler-native",
|
|
4145
|
+
"dashmap 5.5.3",
|
|
4146
|
+
"lightningcss",
|
|
4147
|
+
"napi",
|
|
4148
|
+
"napi-build",
|
|
4149
|
+
"napi-derive",
|
|
4150
|
+
"pretty_assertions",
|
|
4151
|
+
"regex",
|
|
4152
|
+
"rolldown",
|
|
4153
|
+
"rolldown_common",
|
|
4154
|
+
"rolldown_plugin",
|
|
4155
|
+
"serde",
|
|
4156
|
+
"serde_json",
|
|
4157
|
+
"tokio",
|
|
4158
|
+
]
|
|
4159
|
+
|
|
4160
|
+
[[package]]
|
|
4161
|
+
name = "zerocopy"
|
|
4162
|
+
version = "0.8.38"
|
|
4163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4164
|
+
checksum = "57cf3aa6855b23711ee9852dfc97dfaa51c45feaba5b645d0c777414d494a961"
|
|
4165
|
+
dependencies = [
|
|
4166
|
+
"zerocopy-derive",
|
|
4167
|
+
]
|
|
4168
|
+
|
|
4169
|
+
[[package]]
|
|
4170
|
+
name = "zerocopy-derive"
|
|
4171
|
+
version = "0.8.38"
|
|
4172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4173
|
+
checksum = "8a616990af1a287837c4fe6596ad77ef57948f787e46ce28e166facc0cc1cb75"
|
|
4174
|
+
dependencies = [
|
|
4175
|
+
"proc-macro2",
|
|
4176
|
+
"quote",
|
|
4177
|
+
"syn 2.0.114",
|
|
4178
|
+
]
|
|
4179
|
+
|
|
4180
|
+
[[package]]
|
|
4181
|
+
name = "zerofrom"
|
|
4182
|
+
version = "0.1.6"
|
|
4183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4184
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
4185
|
+
dependencies = [
|
|
4186
|
+
"zerofrom-derive",
|
|
4187
|
+
]
|
|
4188
|
+
|
|
4189
|
+
[[package]]
|
|
4190
|
+
name = "zerofrom-derive"
|
|
4191
|
+
version = "0.1.6"
|
|
4192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4193
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
4194
|
+
dependencies = [
|
|
4195
|
+
"proc-macro2",
|
|
4196
|
+
"quote",
|
|
4197
|
+
"syn 2.0.114",
|
|
4198
|
+
"synstructure",
|
|
4199
|
+
]
|
|
4200
|
+
|
|
4201
|
+
[[package]]
|
|
4202
|
+
name = "zerotrie"
|
|
4203
|
+
version = "0.2.3"
|
|
4204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4205
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
4206
|
+
dependencies = [
|
|
4207
|
+
"displaydoc",
|
|
4208
|
+
"yoke",
|
|
4209
|
+
"zerofrom",
|
|
4210
|
+
]
|
|
4211
|
+
|
|
4212
|
+
[[package]]
|
|
4213
|
+
name = "zerovec"
|
|
4214
|
+
version = "0.11.5"
|
|
4215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4216
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
4217
|
+
dependencies = [
|
|
4218
|
+
"yoke",
|
|
4219
|
+
"zerofrom",
|
|
4220
|
+
"zerovec-derive",
|
|
4221
|
+
]
|
|
4222
|
+
|
|
4223
|
+
[[package]]
|
|
4224
|
+
name = "zerovec-derive"
|
|
4225
|
+
version = "0.11.2"
|
|
4226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4227
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
4228
|
+
dependencies = [
|
|
4229
|
+
"proc-macro2",
|
|
4230
|
+
"quote",
|
|
4231
|
+
"syn 2.0.114",
|
|
4232
|
+
]
|
|
4233
|
+
|
|
4234
|
+
[[package]]
|
|
4235
|
+
name = "zlib-rs"
|
|
4236
|
+
version = "0.6.0"
|
|
4237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4238
|
+
checksum = "a7948af682ccbc3342b6e9420e8c51c1fe5d7bf7756002b4a3c6cabfe96a7e3c"
|
|
4239
|
+
|
|
4240
|
+
[[package]]
|
|
4241
|
+
name = "zmij"
|
|
4242
|
+
version = "1.0.19"
|
|
4243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4244
|
+
checksum = "3ff05f8caa9038894637571ae6b9e29466c1f4f829d26c9b28f869a29cbe3445"
|