rolldown 0.1.0-aarch64-linux-gnu
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +152 -0
- data/ext/rolldown/extconf.rb +123 -0
- data/ext/rolldown/include/rolldown.h +54 -0
- data/ext/rolldown/rolldown.c +130 -0
- data/lib/rolldown/3.2/rolldown.so +0 -0
- data/lib/rolldown/3.3/rolldown.so +0 -0
- data/lib/rolldown/3.4/rolldown.so +0 -0
- data/lib/rolldown/4.0/rolldown.so +0 -0
- data/lib/rolldown/asset.rb +33 -0
- data/lib/rolldown/backend.rb +36 -0
- data/lib/rolldown/build_result.rb +106 -0
- data/lib/rolldown/chunk.rb +70 -0
- data/lib/rolldown/diagnostic.rb +56 -0
- data/lib/rolldown/errors.rb +11 -0
- data/lib/rolldown/options.rb +152 -0
- data/lib/rolldown/version.rb +5 -0
- data/lib/rolldown.rb +50 -0
- data/licenses/README.md +8 -0
- data/licenses/rolldown-MIT.txt +25 -0
- data/licenses/rolldown-THIRD-PARTY.txt +33 -0
- data/rolldown.gemspec +43 -0
- data/rust/Cargo.lock +3086 -0
- data/rust/Cargo.toml +37 -0
- data/rust/build.rs +55 -0
- data/rust/cbindgen.toml +24 -0
- data/rust/rustfmt.toml +3 -0
- data/rust/src/build.rs +39 -0
- data/rust/src/lib.rs +92 -0
- data/rust/src/modules.rs +89 -0
- data/rust/src/options.rs +251 -0
- data/rust/src/payload.rs +104 -0
- data/rust/src/result.rs +49 -0
- data/sig/rolldown/asset.rbs +23 -0
- data/sig/rolldown/backend.rbs +26 -0
- data/sig/rolldown/build_result.rbs +47 -0
- data/sig/rolldown/chunk.rbs +39 -0
- data/sig/rolldown/diagnostic.rbs +35 -0
- data/sig/rolldown/errors.rbs +24 -0
- data/sig/rolldown/options.rbs +61 -0
- data/sig/rolldown/version.rbs +5 -0
- data/sig/rolldown.rbs +12 -0
- metadata +92 -0
data/rust/Cargo.lock
ADDED
|
@@ -0,0 +1,3086 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aho-corasick"
|
|
13
|
+
version = "1.1.5"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "allocator-api2"
|
|
22
|
+
version = "0.2.21"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anstream"
|
|
28
|
+
version = "1.0.0"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"anstyle",
|
|
33
|
+
"anstyle-parse",
|
|
34
|
+
"anstyle-query",
|
|
35
|
+
"anstyle-wincon",
|
|
36
|
+
"colorchoice",
|
|
37
|
+
"is_terminal_polyfill",
|
|
38
|
+
"utf8parse",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstyle"
|
|
43
|
+
version = "1.0.14"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "anstyle-parse"
|
|
49
|
+
version = "1.0.0"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
52
|
+
dependencies = [
|
|
53
|
+
"utf8parse",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "anstyle-query"
|
|
58
|
+
version = "1.1.5"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"windows-sys",
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "anstyle-wincon"
|
|
67
|
+
version = "3.0.11"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"anstyle",
|
|
72
|
+
"once_cell_polyfill",
|
|
73
|
+
"windows-sys",
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "anyhow"
|
|
78
|
+
version = "1.0.104"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "append-only-vec"
|
|
84
|
+
version = "0.1.8"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "2114736faba96bcd79595c700d03183f61357b9fbce14852515e59f3bee4ed4a"
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "arcstr"
|
|
90
|
+
version = "1.2.0"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "03918c3dbd7701a85c6b9887732e2921175f26c350b4563841d0958c21d57e6d"
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "arrayvec"
|
|
96
|
+
version = "0.7.8"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "async-scoped"
|
|
102
|
+
version = "0.9.0"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "4042078ea593edffc452eef14e99fdb2b120caa4ad9618bcdeabc4a023b98740"
|
|
105
|
+
dependencies = [
|
|
106
|
+
"futures",
|
|
107
|
+
"pin-project",
|
|
108
|
+
"tokio",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "autocfg"
|
|
113
|
+
version = "1.5.1"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "base-encode"
|
|
119
|
+
version = "0.3.1"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "a17bd29f7c70f32e9387f4d4acfa5ea7b7749ef784fb78cf382df97069337b8c"
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "base64"
|
|
125
|
+
version = "0.23.1"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
|
|
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",
|
|
136
|
+
"vsimd",
|
|
137
|
+
]
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "bitflags"
|
|
141
|
+
version = "2.13.1"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
144
|
+
dependencies = [
|
|
145
|
+
"serde_core",
|
|
146
|
+
]
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "blake3"
|
|
150
|
+
version = "1.8.7"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "6d9e454fc11f76977dc803893aff6304ed33d6a26efae8696573bea74baa27ae"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"arrayvec",
|
|
155
|
+
"cc",
|
|
156
|
+
"cfg-if",
|
|
157
|
+
"constant_time_eq",
|
|
158
|
+
"cpufeatures",
|
|
159
|
+
]
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "bumpalo"
|
|
163
|
+
version = "3.20.3"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
166
|
+
|
|
167
|
+
[[package]]
|
|
168
|
+
name = "bytecount"
|
|
169
|
+
version = "0.6.9"
|
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
+
checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "byteorder"
|
|
175
|
+
version = "1.5.0"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "castaway"
|
|
181
|
+
version = "0.2.4"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
184
|
+
dependencies = [
|
|
185
|
+
"rustversion",
|
|
186
|
+
]
|
|
187
|
+
|
|
188
|
+
[[package]]
|
|
189
|
+
name = "cbindgen"
|
|
190
|
+
version = "0.28.0"
|
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
+
checksum = "eadd868a2ce9ca38de7eeafdcec9c7065ef89b42b32f0839278d55f35c54d1ff"
|
|
193
|
+
dependencies = [
|
|
194
|
+
"clap",
|
|
195
|
+
"heck 0.4.1",
|
|
196
|
+
"indexmap",
|
|
197
|
+
"log",
|
|
198
|
+
"proc-macro2",
|
|
199
|
+
"quote",
|
|
200
|
+
"serde",
|
|
201
|
+
"serde_json",
|
|
202
|
+
"syn 2.0.119",
|
|
203
|
+
"tempfile",
|
|
204
|
+
"toml",
|
|
205
|
+
]
|
|
206
|
+
|
|
207
|
+
[[package]]
|
|
208
|
+
name = "cc"
|
|
209
|
+
version = "1.4.4"
|
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
+
checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273"
|
|
212
|
+
dependencies = [
|
|
213
|
+
"find-msvc-tools",
|
|
214
|
+
"shlex",
|
|
215
|
+
]
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "cfg-if"
|
|
219
|
+
version = "1.0.4"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "clap"
|
|
225
|
+
version = "4.6.6"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
|
|
228
|
+
dependencies = [
|
|
229
|
+
"clap_builder",
|
|
230
|
+
]
|
|
231
|
+
|
|
232
|
+
[[package]]
|
|
233
|
+
name = "clap_builder"
|
|
234
|
+
version = "4.6.6"
|
|
235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
+
checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
|
|
237
|
+
dependencies = [
|
|
238
|
+
"anstream",
|
|
239
|
+
"anstyle",
|
|
240
|
+
"clap_lex",
|
|
241
|
+
"strsim",
|
|
242
|
+
]
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "clap_lex"
|
|
246
|
+
version = "1.1.0"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "cobs"
|
|
252
|
+
version = "0.3.0"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
|
|
255
|
+
dependencies = [
|
|
256
|
+
"thiserror",
|
|
257
|
+
]
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "colorchoice"
|
|
261
|
+
version = "1.0.5"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "compact_str"
|
|
267
|
+
version = "0.10.0"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "79fcda08c33bb58b97008b2cdada6622500e949e060f5913361763121abd2416"
|
|
270
|
+
dependencies = [
|
|
271
|
+
"castaway",
|
|
272
|
+
"cfg-if",
|
|
273
|
+
"itoa",
|
|
274
|
+
"serde",
|
|
275
|
+
"static_assertions",
|
|
276
|
+
"zmij",
|
|
277
|
+
]
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "concurrent_lru"
|
|
281
|
+
version = "0.2.0"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "7feb5cb312f774e8a24540e27206db4e890f7d488563671d24a16389cf4c2e4e"
|
|
284
|
+
dependencies = [
|
|
285
|
+
"once_cell",
|
|
286
|
+
]
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "constant_time_eq"
|
|
290
|
+
version = "0.4.2"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "cow-utils"
|
|
296
|
+
version = "0.1.3"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
|
|
299
|
+
|
|
300
|
+
[[package]]
|
|
301
|
+
name = "cpufeatures"
|
|
302
|
+
version = "0.3.1"
|
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
+
checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
|
|
305
|
+
dependencies = [
|
|
306
|
+
"libc",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "crossbeam-deque"
|
|
311
|
+
version = "0.8.7"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"crossbeam-epoch",
|
|
316
|
+
"crossbeam-utils",
|
|
317
|
+
]
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "crossbeam-epoch"
|
|
321
|
+
version = "0.9.20"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
324
|
+
dependencies = [
|
|
325
|
+
"crossbeam-utils",
|
|
326
|
+
]
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "crossbeam-utils"
|
|
330
|
+
version = "0.8.22"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "dashmap"
|
|
336
|
+
version = "6.2.1"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
|
|
339
|
+
dependencies = [
|
|
340
|
+
"cfg-if",
|
|
341
|
+
"crossbeam-utils",
|
|
342
|
+
"hashbrown 0.14.5",
|
|
343
|
+
"lock_api",
|
|
344
|
+
"once_cell",
|
|
345
|
+
"parking_lot_core",
|
|
346
|
+
]
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "derive_more"
|
|
350
|
+
version = "2.1.1"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
353
|
+
dependencies = [
|
|
354
|
+
"derive_more-impl",
|
|
355
|
+
]
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "derive_more-impl"
|
|
359
|
+
version = "2.1.1"
|
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
+
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
362
|
+
dependencies = [
|
|
363
|
+
"proc-macro2",
|
|
364
|
+
"quote",
|
|
365
|
+
"rustc_version",
|
|
366
|
+
"syn 2.0.119",
|
|
367
|
+
"unicode-xid",
|
|
368
|
+
]
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "displaydoc"
|
|
372
|
+
version = "0.2.7"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
|
|
375
|
+
dependencies = [
|
|
376
|
+
"proc-macro2",
|
|
377
|
+
"quote",
|
|
378
|
+
"syn 3.0.4",
|
|
379
|
+
]
|
|
380
|
+
|
|
381
|
+
[[package]]
|
|
382
|
+
name = "dragonbox_ecma"
|
|
383
|
+
version = "0.1.12"
|
|
384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
|
+
checksum = "fd8e701084c37e7ef62d3f9e453b618130cbc0ef3573847785952a3ac3f746bf"
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "either"
|
|
389
|
+
version = "1.18.0"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "embedded-io"
|
|
395
|
+
version = "0.4.0"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "embedded-io"
|
|
401
|
+
version = "0.6.1"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "endian-type"
|
|
407
|
+
version = "0.2.0"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "869b0adbda23651a9c5c0c3d270aac9fcb52e8622a8f2b17e57802d7791962f2"
|
|
410
|
+
|
|
411
|
+
[[package]]
|
|
412
|
+
name = "equivalent"
|
|
413
|
+
version = "1.0.2"
|
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "errno"
|
|
419
|
+
version = "0.3.14"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"libc",
|
|
424
|
+
"windows-sys",
|
|
425
|
+
]
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "fast-glob"
|
|
429
|
+
version = "1.1.1"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "6d3f5d15b86ff37d2d23719f90657a53d5399abe0736dacb9e5fbe549314d349"
|
|
432
|
+
dependencies = [
|
|
433
|
+
"arrayvec",
|
|
434
|
+
]
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "fastrand"
|
|
438
|
+
version = "2.5.0"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "filetime"
|
|
444
|
+
version = "0.2.29"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
|
|
447
|
+
dependencies = [
|
|
448
|
+
"cfg-if",
|
|
449
|
+
"libc",
|
|
450
|
+
]
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "find-msvc-tools"
|
|
454
|
+
version = "0.1.11"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "fixedbitset"
|
|
460
|
+
version = "0.5.7"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "flate2"
|
|
466
|
+
version = "1.1.10"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb"
|
|
469
|
+
dependencies = [
|
|
470
|
+
"zlib-rs",
|
|
471
|
+
]
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "float-cmp"
|
|
475
|
+
version = "0.10.0"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
|
|
478
|
+
dependencies = [
|
|
479
|
+
"num-traits",
|
|
480
|
+
]
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "foldhash"
|
|
484
|
+
version = "0.1.5"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "foldhash"
|
|
490
|
+
version = "0.2.0"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "form_urlencoded"
|
|
496
|
+
version = "1.2.2"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
499
|
+
dependencies = [
|
|
500
|
+
"percent-encoding",
|
|
501
|
+
]
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "futures"
|
|
505
|
+
version = "0.3.34"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"futures-channel",
|
|
510
|
+
"futures-core",
|
|
511
|
+
"futures-executor",
|
|
512
|
+
"futures-io",
|
|
513
|
+
"futures-sink",
|
|
514
|
+
"futures-task",
|
|
515
|
+
"futures-util",
|
|
516
|
+
]
|
|
517
|
+
|
|
518
|
+
[[package]]
|
|
519
|
+
name = "futures-channel"
|
|
520
|
+
version = "0.3.34"
|
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
+
checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"
|
|
523
|
+
dependencies = [
|
|
524
|
+
"futures-core",
|
|
525
|
+
"futures-sink",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "futures-core"
|
|
530
|
+
version = "0.3.34"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "futures-executor"
|
|
536
|
+
version = "0.3.34"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432"
|
|
539
|
+
dependencies = [
|
|
540
|
+
"futures-core",
|
|
541
|
+
"futures-task",
|
|
542
|
+
"futures-util",
|
|
543
|
+
]
|
|
544
|
+
|
|
545
|
+
[[package]]
|
|
546
|
+
name = "futures-io"
|
|
547
|
+
version = "0.3.34"
|
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
+
checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed"
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "futures-macro"
|
|
553
|
+
version = "0.3.34"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"
|
|
556
|
+
dependencies = [
|
|
557
|
+
"proc-macro2",
|
|
558
|
+
"quote",
|
|
559
|
+
"syn 3.0.4",
|
|
560
|
+
]
|
|
561
|
+
|
|
562
|
+
[[package]]
|
|
563
|
+
name = "futures-sink"
|
|
564
|
+
version = "0.3.34"
|
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
+
checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
|
|
567
|
+
|
|
568
|
+
[[package]]
|
|
569
|
+
name = "futures-task"
|
|
570
|
+
version = "0.3.34"
|
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
+
checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "futures-util"
|
|
576
|
+
version = "0.3.34"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
|
|
579
|
+
dependencies = [
|
|
580
|
+
"futures-channel",
|
|
581
|
+
"futures-core",
|
|
582
|
+
"futures-io",
|
|
583
|
+
"futures-macro",
|
|
584
|
+
"futures-sink",
|
|
585
|
+
"futures-task",
|
|
586
|
+
"memchr",
|
|
587
|
+
"pin-project-lite",
|
|
588
|
+
"slab",
|
|
589
|
+
]
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "getrandom"
|
|
593
|
+
version = "0.4.3"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
596
|
+
dependencies = [
|
|
597
|
+
"cfg-if",
|
|
598
|
+
"libc",
|
|
599
|
+
"r-efi",
|
|
600
|
+
]
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "halfbrown"
|
|
604
|
+
version = "0.4.0"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "0c7ed2f2edad8a14c8186b847909a41fbb9c3eafa44f88bd891114ed5019da09"
|
|
607
|
+
dependencies = [
|
|
608
|
+
"hashbrown 0.16.1",
|
|
609
|
+
]
|
|
610
|
+
|
|
611
|
+
[[package]]
|
|
612
|
+
name = "hashbrown"
|
|
613
|
+
version = "0.14.5"
|
|
614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "hashbrown"
|
|
619
|
+
version = "0.15.5"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
622
|
+
dependencies = [
|
|
623
|
+
"foldhash 0.1.5",
|
|
624
|
+
]
|
|
625
|
+
|
|
626
|
+
[[package]]
|
|
627
|
+
name = "hashbrown"
|
|
628
|
+
version = "0.16.1"
|
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
631
|
+
dependencies = [
|
|
632
|
+
"allocator-api2",
|
|
633
|
+
"equivalent",
|
|
634
|
+
"foldhash 0.2.0",
|
|
635
|
+
]
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "hashbrown"
|
|
639
|
+
version = "0.17.1"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
642
|
+
dependencies = [
|
|
643
|
+
"allocator-api2",
|
|
644
|
+
]
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "heck"
|
|
648
|
+
version = "0.4.1"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
651
|
+
|
|
652
|
+
[[package]]
|
|
653
|
+
name = "heck"
|
|
654
|
+
version = "0.5.0"
|
|
655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
657
|
+
|
|
658
|
+
[[package]]
|
|
659
|
+
name = "hmac-sha1-compact"
|
|
660
|
+
version = "1.1.7"
|
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
662
|
+
checksum = "b0b3ba31f6dc772cc8221ce81dbbbd64fa1e668255a6737d95eeace59b5a8823"
|
|
663
|
+
|
|
664
|
+
[[package]]
|
|
665
|
+
name = "icu_collections"
|
|
666
|
+
version = "2.3.0"
|
|
667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
+
checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
|
|
669
|
+
dependencies = [
|
|
670
|
+
"displaydoc",
|
|
671
|
+
"potential_utf",
|
|
672
|
+
"utf8_iter",
|
|
673
|
+
"yoke",
|
|
674
|
+
"zerofrom",
|
|
675
|
+
"zerovec",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "icu_locale_core"
|
|
680
|
+
version = "2.3.0"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
|
|
683
|
+
dependencies = [
|
|
684
|
+
"displaydoc",
|
|
685
|
+
"litemap",
|
|
686
|
+
"tinystr",
|
|
687
|
+
"writeable",
|
|
688
|
+
"zerovec",
|
|
689
|
+
]
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "icu_normalizer"
|
|
693
|
+
version = "2.3.0"
|
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
+
checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"
|
|
696
|
+
dependencies = [
|
|
697
|
+
"icu_collections",
|
|
698
|
+
"icu_normalizer_data",
|
|
699
|
+
"icu_properties",
|
|
700
|
+
"icu_provider",
|
|
701
|
+
"smallvec",
|
|
702
|
+
"zerovec",
|
|
703
|
+
]
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "icu_normalizer_data"
|
|
707
|
+
version = "2.3.0"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "icu_properties"
|
|
713
|
+
version = "2.3.0"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
|
|
716
|
+
dependencies = [
|
|
717
|
+
"displaydoc",
|
|
718
|
+
"icu_collections",
|
|
719
|
+
"icu_locale_core",
|
|
720
|
+
"icu_properties_data",
|
|
721
|
+
"icu_provider",
|
|
722
|
+
"zerotrie",
|
|
723
|
+
"zerovec",
|
|
724
|
+
]
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "icu_properties_data"
|
|
728
|
+
version = "2.3.0"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
|
|
731
|
+
|
|
732
|
+
[[package]]
|
|
733
|
+
name = "icu_provider"
|
|
734
|
+
version = "2.3.1"
|
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
+
checksum = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73"
|
|
737
|
+
dependencies = [
|
|
738
|
+
"displaydoc",
|
|
739
|
+
"icu_locale_core",
|
|
740
|
+
"writeable",
|
|
741
|
+
"yoke",
|
|
742
|
+
"zerofrom",
|
|
743
|
+
"zerotrie",
|
|
744
|
+
"zerovec",
|
|
745
|
+
]
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "idna"
|
|
749
|
+
version = "1.1.0"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
752
|
+
dependencies = [
|
|
753
|
+
"idna_adapter",
|
|
754
|
+
"smallvec",
|
|
755
|
+
"utf8_iter",
|
|
756
|
+
]
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "idna_adapter"
|
|
760
|
+
version = "1.2.2"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
763
|
+
dependencies = [
|
|
764
|
+
"icu_normalizer",
|
|
765
|
+
"icu_properties",
|
|
766
|
+
]
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "indexmap"
|
|
770
|
+
version = "2.14.1"
|
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
+
checksum = "07aa2048142242915a31d35844fb311e0e53fcca590c3a0a40dcf1b841fa09eb"
|
|
773
|
+
dependencies = [
|
|
774
|
+
"equivalent",
|
|
775
|
+
"hashbrown 0.17.1",
|
|
776
|
+
"serde",
|
|
777
|
+
"serde_core",
|
|
778
|
+
]
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "infer"
|
|
782
|
+
version = "0.22.0"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "f4200d433cbd5178df7797c9c2e75b348b728e39631cf14520d1e2fc424201f4"
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "is_terminal_polyfill"
|
|
788
|
+
version = "1.70.2"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "itertools"
|
|
794
|
+
version = "0.15.0"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
|
|
797
|
+
dependencies = [
|
|
798
|
+
"either",
|
|
799
|
+
]
|
|
800
|
+
|
|
801
|
+
[[package]]
|
|
802
|
+
name = "itoa"
|
|
803
|
+
version = "1.0.18"
|
|
804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
806
|
+
|
|
807
|
+
[[package]]
|
|
808
|
+
name = "js-sys"
|
|
809
|
+
version = "0.3.104"
|
|
810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
811
|
+
checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
|
|
812
|
+
dependencies = [
|
|
813
|
+
"cfg-if",
|
|
814
|
+
"futures-util",
|
|
815
|
+
"wasm-bindgen",
|
|
816
|
+
]
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "json-escape-simd"
|
|
820
|
+
version = "3.1.1"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "c22a2041e3874a055a4eb03ea2395aaccdefa84ce75b31d542d72a741c3c6ad3"
|
|
823
|
+
|
|
824
|
+
[[package]]
|
|
825
|
+
name = "json-strip-comments"
|
|
826
|
+
version = "3.1.2"
|
|
827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
+
checksum = "01ed659c5f428031b9c1fb7de6729af2eb491654d4bcd416a5b5b704986b9658"
|
|
829
|
+
dependencies = [
|
|
830
|
+
"memchr",
|
|
831
|
+
]
|
|
832
|
+
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "lazy-regex"
|
|
835
|
+
version = "3.6.1"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "4994ba703f78b083e2f7946dac9251abd83fd43a0365f030e99b69be5b4b9ef9"
|
|
838
|
+
dependencies = [
|
|
839
|
+
"lazy-regex-proc_macros",
|
|
840
|
+
"once_cell",
|
|
841
|
+
"regex",
|
|
842
|
+
]
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "lazy-regex-proc_macros"
|
|
846
|
+
version = "3.6.1"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "fd97232314824e6dbef1918a871bb93f51070455e3715bf26e19a6d01aa977a0"
|
|
849
|
+
dependencies = [
|
|
850
|
+
"proc-macro2",
|
|
851
|
+
"quote",
|
|
852
|
+
"regex",
|
|
853
|
+
"syn 2.0.119",
|
|
854
|
+
]
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "lazy_static"
|
|
858
|
+
version = "1.5.0"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
861
|
+
|
|
862
|
+
[[package]]
|
|
863
|
+
name = "libc"
|
|
864
|
+
version = "0.2.189"
|
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
867
|
+
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "linux-raw-sys"
|
|
870
|
+
version = "0.12.1"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "litemap"
|
|
876
|
+
version = "0.8.3"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
|
|
879
|
+
|
|
880
|
+
[[package]]
|
|
881
|
+
name = "lock_api"
|
|
882
|
+
version = "0.4.14"
|
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
885
|
+
dependencies = [
|
|
886
|
+
"scopeguard",
|
|
887
|
+
]
|
|
888
|
+
|
|
889
|
+
[[package]]
|
|
890
|
+
name = "log"
|
|
891
|
+
version = "0.4.34"
|
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
|
+
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "memchr"
|
|
897
|
+
version = "2.8.3"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "mime"
|
|
903
|
+
version = "0.3.17"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
906
|
+
|
|
907
|
+
[[package]]
|
|
908
|
+
name = "miniz_oxide"
|
|
909
|
+
version = "0.9.1"
|
|
910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
+
checksum = "b63fbc4a50860e98e7b2aa7804ded1db5cbc3aff9193adaff57a6931bf7c4b4c"
|
|
912
|
+
dependencies = [
|
|
913
|
+
"adler2",
|
|
914
|
+
]
|
|
915
|
+
|
|
916
|
+
[[package]]
|
|
917
|
+
name = "nibble_vec"
|
|
918
|
+
version = "0.1.0"
|
|
919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
920
|
+
checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43"
|
|
921
|
+
dependencies = [
|
|
922
|
+
"smallvec",
|
|
923
|
+
]
|
|
924
|
+
|
|
925
|
+
[[package]]
|
|
926
|
+
name = "nodejs-built-in-modules"
|
|
927
|
+
version = "1.0.0"
|
|
928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
929
|
+
checksum = "a5eb86a92577833b75522336f210c49d9ebd7dd55a44d80a92e68c668a75f27c"
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "nom"
|
|
933
|
+
version = "8.0.0"
|
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
+
checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
|
|
936
|
+
dependencies = [
|
|
937
|
+
"memchr",
|
|
938
|
+
]
|
|
939
|
+
|
|
940
|
+
[[package]]
|
|
941
|
+
name = "nonmax"
|
|
942
|
+
version = "0.5.5"
|
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
|
+
checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
|
|
945
|
+
|
|
946
|
+
[[package]]
|
|
947
|
+
name = "nu-ansi-term"
|
|
948
|
+
version = "0.50.3"
|
|
949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
950
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
951
|
+
dependencies = [
|
|
952
|
+
"windows-sys",
|
|
953
|
+
]
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "num-bigint"
|
|
957
|
+
version = "0.5.1"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "93e7820bc0a80a0238e650327316f929ba18d5be054b647490a3a6a339f3e7c0"
|
|
960
|
+
dependencies = [
|
|
961
|
+
"num-integer",
|
|
962
|
+
"num-traits",
|
|
963
|
+
]
|
|
964
|
+
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "num-integer"
|
|
967
|
+
version = "0.1.47"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
|
|
970
|
+
dependencies = [
|
|
971
|
+
"num-traits",
|
|
972
|
+
]
|
|
973
|
+
|
|
974
|
+
[[package]]
|
|
975
|
+
name = "num-traits"
|
|
976
|
+
version = "0.2.19"
|
|
977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
979
|
+
dependencies = [
|
|
980
|
+
"autocfg",
|
|
981
|
+
]
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "once_cell"
|
|
985
|
+
version = "1.21.4"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
988
|
+
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "once_cell_polyfill"
|
|
991
|
+
version = "1.70.2"
|
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
994
|
+
|
|
995
|
+
[[package]]
|
|
996
|
+
name = "outref"
|
|
997
|
+
version = "0.5.2"
|
|
998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
+
checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
1000
|
+
|
|
1001
|
+
[[package]]
|
|
1002
|
+
name = "owo-colors"
|
|
1003
|
+
version = "4.4.0"
|
|
1004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
+
checksum = "13c45bb4a6ae1280ec0803b1ef9d3455eb50f01efbbe1447ab020f1d54fba9d8"
|
|
1006
|
+
|
|
1007
|
+
[[package]]
|
|
1008
|
+
name = "oxc"
|
|
1009
|
+
version = "0.147.0"
|
|
1010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
+
checksum = "db297a5e119706ad508114ec9065a8a13d154efc14d830d3a1effb0b69cbd5eb"
|
|
1012
|
+
dependencies = [
|
|
1013
|
+
"oxc_allocator",
|
|
1014
|
+
"oxc_ast",
|
|
1015
|
+
"oxc_ast_visit",
|
|
1016
|
+
"oxc_codegen",
|
|
1017
|
+
"oxc_diagnostics",
|
|
1018
|
+
"oxc_isolated_declarations",
|
|
1019
|
+
"oxc_mangler",
|
|
1020
|
+
"oxc_minifier",
|
|
1021
|
+
"oxc_parser",
|
|
1022
|
+
"oxc_regular_expression",
|
|
1023
|
+
"oxc_semantic",
|
|
1024
|
+
"oxc_span",
|
|
1025
|
+
"oxc_str",
|
|
1026
|
+
"oxc_syntax",
|
|
1027
|
+
"oxc_transformer",
|
|
1028
|
+
"oxc_transformer_plugins",
|
|
1029
|
+
]
|
|
1030
|
+
|
|
1031
|
+
[[package]]
|
|
1032
|
+
name = "oxc-browserslist"
|
|
1033
|
+
version = "5.0.1"
|
|
1034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1035
|
+
checksum = "456720daa870e4f69f8d29fded1c8deea82da4780a6b8553baa160eb0cd8d864"
|
|
1036
|
+
dependencies = [
|
|
1037
|
+
"js-sys",
|
|
1038
|
+
"libc",
|
|
1039
|
+
"miniz_oxide",
|
|
1040
|
+
"postcard",
|
|
1041
|
+
"rustc-hash",
|
|
1042
|
+
"serde",
|
|
1043
|
+
"thiserror",
|
|
1044
|
+
]
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "oxc_allocator"
|
|
1048
|
+
version = "0.147.0"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "c4e69b2400ab3c2f96eb3ae474ed80fa3a2959ba05e26afc5df45e634fc9a071"
|
|
1051
|
+
dependencies = [
|
|
1052
|
+
"allocator-api2",
|
|
1053
|
+
"hashbrown 0.17.1",
|
|
1054
|
+
"oxc_data_structures",
|
|
1055
|
+
"oxc_estree",
|
|
1056
|
+
"rustc-hash",
|
|
1057
|
+
"serde",
|
|
1058
|
+
]
|
|
1059
|
+
|
|
1060
|
+
[[package]]
|
|
1061
|
+
name = "oxc_ast"
|
|
1062
|
+
version = "0.147.0"
|
|
1063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1064
|
+
checksum = "3dcf0e905263cc649c07e3494489de620462390de12cb2b5933247f91785a421"
|
|
1065
|
+
dependencies = [
|
|
1066
|
+
"bitflags",
|
|
1067
|
+
"oxc_allocator",
|
|
1068
|
+
"oxc_ast_macros",
|
|
1069
|
+
"oxc_data_structures",
|
|
1070
|
+
"oxc_diagnostics",
|
|
1071
|
+
"oxc_estree",
|
|
1072
|
+
"oxc_regular_expression",
|
|
1073
|
+
"oxc_span",
|
|
1074
|
+
"oxc_str",
|
|
1075
|
+
"oxc_syntax",
|
|
1076
|
+
]
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "oxc_ast_macros"
|
|
1080
|
+
version = "0.147.0"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "aa520723c19e83bcc683a988ac77d56bbca4b88178d5fc6c0c89fb73a45893cf"
|
|
1083
|
+
dependencies = [
|
|
1084
|
+
"phf",
|
|
1085
|
+
"proc-macro2",
|
|
1086
|
+
"quote",
|
|
1087
|
+
"syn 3.0.4",
|
|
1088
|
+
]
|
|
1089
|
+
|
|
1090
|
+
[[package]]
|
|
1091
|
+
name = "oxc_ast_visit"
|
|
1092
|
+
version = "0.147.0"
|
|
1093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1094
|
+
checksum = "7bcdfe65eec7cc091e52f73ea7f6546375a2dd5b88c43900afc94dafffebfb8c"
|
|
1095
|
+
dependencies = [
|
|
1096
|
+
"oxc_allocator",
|
|
1097
|
+
"oxc_ast",
|
|
1098
|
+
"oxc_span",
|
|
1099
|
+
"oxc_syntax",
|
|
1100
|
+
]
|
|
1101
|
+
|
|
1102
|
+
[[package]]
|
|
1103
|
+
name = "oxc_codegen"
|
|
1104
|
+
version = "0.147.0"
|
|
1105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
+
checksum = "bd265be822054de498537a8df29f0afef75f9e804f9c499c81c0ec8c9b9212bd"
|
|
1107
|
+
dependencies = [
|
|
1108
|
+
"bitflags",
|
|
1109
|
+
"cow-utils",
|
|
1110
|
+
"oxc_allocator",
|
|
1111
|
+
"oxc_ast",
|
|
1112
|
+
"oxc_data_structures",
|
|
1113
|
+
"oxc_ecmascript",
|
|
1114
|
+
"oxc_index",
|
|
1115
|
+
"oxc_semantic",
|
|
1116
|
+
"oxc_sourcemap",
|
|
1117
|
+
"oxc_span",
|
|
1118
|
+
"oxc_str",
|
|
1119
|
+
"oxc_syntax",
|
|
1120
|
+
"rustc-hash",
|
|
1121
|
+
"smallvec",
|
|
1122
|
+
]
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "oxc_compat"
|
|
1126
|
+
version = "0.147.0"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "970fe81a0a43846ebe37c9250f3a1948e984ba79cbdf866681fd117dffe27e3d"
|
|
1129
|
+
dependencies = [
|
|
1130
|
+
"cow-utils",
|
|
1131
|
+
"oxc-browserslist",
|
|
1132
|
+
"oxc_syntax",
|
|
1133
|
+
"rustc-hash",
|
|
1134
|
+
"serde",
|
|
1135
|
+
]
|
|
1136
|
+
|
|
1137
|
+
[[package]]
|
|
1138
|
+
name = "oxc_data_structures"
|
|
1139
|
+
version = "0.147.0"
|
|
1140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1141
|
+
checksum = "e7903e8f1f76f148c943b5a2e192bf908d600b5fe0df1efc77ebeb75591ace56"
|
|
1142
|
+
dependencies = [
|
|
1143
|
+
"ropey",
|
|
1144
|
+
]
|
|
1145
|
+
|
|
1146
|
+
[[package]]
|
|
1147
|
+
name = "oxc_diagnostics"
|
|
1148
|
+
version = "0.147.0"
|
|
1149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
+
checksum = "acb70f89da6524e6a2d097f0d747f14731156996ee5400474ef19ad3f318646b"
|
|
1151
|
+
dependencies = [
|
|
1152
|
+
"bytecount",
|
|
1153
|
+
"cow-utils",
|
|
1154
|
+
"itoa",
|
|
1155
|
+
"memchr",
|
|
1156
|
+
"owo-colors",
|
|
1157
|
+
"oxc_span",
|
|
1158
|
+
"percent-encoding",
|
|
1159
|
+
"smallvec",
|
|
1160
|
+
"textwrap",
|
|
1161
|
+
"unicode-segmentation",
|
|
1162
|
+
"unicode-width",
|
|
1163
|
+
]
|
|
1164
|
+
|
|
1165
|
+
[[package]]
|
|
1166
|
+
name = "oxc_ecmascript"
|
|
1167
|
+
version = "0.147.0"
|
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
+
checksum = "9f1fdd494072a511d7df691282dbd4fe656ad6fd0bea24d4366c019ed1172a4f"
|
|
1170
|
+
dependencies = [
|
|
1171
|
+
"cow-utils",
|
|
1172
|
+
"dragonbox_ecma",
|
|
1173
|
+
"itoa",
|
|
1174
|
+
"num-bigint",
|
|
1175
|
+
"num-traits",
|
|
1176
|
+
"oxc_allocator",
|
|
1177
|
+
"oxc_ast",
|
|
1178
|
+
"oxc_compat",
|
|
1179
|
+
"oxc_data_structures",
|
|
1180
|
+
"oxc_regular_expression",
|
|
1181
|
+
"oxc_span",
|
|
1182
|
+
"oxc_syntax",
|
|
1183
|
+
"smallvec",
|
|
1184
|
+
]
|
|
1185
|
+
|
|
1186
|
+
[[package]]
|
|
1187
|
+
name = "oxc_estree"
|
|
1188
|
+
version = "0.147.0"
|
|
1189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
+
checksum = "e2ef8cdc8d02a7e0b91ee51a2572963c914d3bb38261e11a54d068a092c4dc42"
|
|
1191
|
+
dependencies = [
|
|
1192
|
+
"dragonbox_ecma",
|
|
1193
|
+
"itoa",
|
|
1194
|
+
"oxc_data_structures",
|
|
1195
|
+
]
|
|
1196
|
+
|
|
1197
|
+
[[package]]
|
|
1198
|
+
name = "oxc_index"
|
|
1199
|
+
version = "5.0.0"
|
|
1200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1201
|
+
checksum = "191884bee6c3744909a51acc7d78d4ae370d817b25875b10642f632327b6296e"
|
|
1202
|
+
dependencies = [
|
|
1203
|
+
"nonmax",
|
|
1204
|
+
"rayon",
|
|
1205
|
+
"serde",
|
|
1206
|
+
]
|
|
1207
|
+
|
|
1208
|
+
[[package]]
|
|
1209
|
+
name = "oxc_isolated_declarations"
|
|
1210
|
+
version = "0.147.0"
|
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1212
|
+
checksum = "88fe41a07cb943168e10efb18a3f5f56ffbb70c7eb6ef42d89de203cca5a73a3"
|
|
1213
|
+
dependencies = [
|
|
1214
|
+
"bitflags",
|
|
1215
|
+
"oxc_allocator",
|
|
1216
|
+
"oxc_ast",
|
|
1217
|
+
"oxc_ast_visit",
|
|
1218
|
+
"oxc_diagnostics",
|
|
1219
|
+
"oxc_ecmascript",
|
|
1220
|
+
"oxc_span",
|
|
1221
|
+
"oxc_str",
|
|
1222
|
+
"oxc_syntax",
|
|
1223
|
+
"rustc-hash",
|
|
1224
|
+
]
|
|
1225
|
+
|
|
1226
|
+
[[package]]
|
|
1227
|
+
name = "oxc_mangler"
|
|
1228
|
+
version = "0.147.0"
|
|
1229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
+
checksum = "efa851c466fb09783764de87e93fa44c27c2d0b918dbaa8b0a0364aca15b2f44"
|
|
1231
|
+
dependencies = [
|
|
1232
|
+
"itertools",
|
|
1233
|
+
"oxc_allocator",
|
|
1234
|
+
"oxc_ast",
|
|
1235
|
+
"oxc_data_structures",
|
|
1236
|
+
"oxc_ecmascript",
|
|
1237
|
+
"oxc_index",
|
|
1238
|
+
"oxc_semantic",
|
|
1239
|
+
"oxc_span",
|
|
1240
|
+
"oxc_str",
|
|
1241
|
+
"oxc_syntax",
|
|
1242
|
+
"rustc-hash",
|
|
1243
|
+
]
|
|
1244
|
+
|
|
1245
|
+
[[package]]
|
|
1246
|
+
name = "oxc_minifier"
|
|
1247
|
+
version = "0.147.0"
|
|
1248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
+
checksum = "4bba5313adecd3682455f4a830e26cfcd751ac8f9423ca95f93d7b8dcdee807c"
|
|
1250
|
+
dependencies = [
|
|
1251
|
+
"cow-utils",
|
|
1252
|
+
"itoa",
|
|
1253
|
+
"lazy-regex",
|
|
1254
|
+
"oxc_allocator",
|
|
1255
|
+
"oxc_ast",
|
|
1256
|
+
"oxc_ast_visit",
|
|
1257
|
+
"oxc_compat",
|
|
1258
|
+
"oxc_data_structures",
|
|
1259
|
+
"oxc_ecmascript",
|
|
1260
|
+
"oxc_index",
|
|
1261
|
+
"oxc_mangler",
|
|
1262
|
+
"oxc_parser",
|
|
1263
|
+
"oxc_semantic",
|
|
1264
|
+
"oxc_span",
|
|
1265
|
+
"oxc_str",
|
|
1266
|
+
"oxc_syntax",
|
|
1267
|
+
"oxc_traverse",
|
|
1268
|
+
"rustc-hash",
|
|
1269
|
+
]
|
|
1270
|
+
|
|
1271
|
+
[[package]]
|
|
1272
|
+
name = "oxc_parser"
|
|
1273
|
+
version = "0.147.0"
|
|
1274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1275
|
+
checksum = "12a55bfce994289467c88ed9732dbc4c8f03f3186af2b77e48dc4a71c502cb2c"
|
|
1276
|
+
dependencies = [
|
|
1277
|
+
"bitflags",
|
|
1278
|
+
"cow-utils",
|
|
1279
|
+
"memchr",
|
|
1280
|
+
"num-bigint",
|
|
1281
|
+
"num-traits",
|
|
1282
|
+
"oxc_allocator",
|
|
1283
|
+
"oxc_ast",
|
|
1284
|
+
"oxc_data_structures",
|
|
1285
|
+
"oxc_diagnostics",
|
|
1286
|
+
"oxc_ecmascript",
|
|
1287
|
+
"oxc_regular_expression",
|
|
1288
|
+
"oxc_span",
|
|
1289
|
+
"oxc_str",
|
|
1290
|
+
"oxc_syntax",
|
|
1291
|
+
"rustc-hash",
|
|
1292
|
+
"seq-macro",
|
|
1293
|
+
]
|
|
1294
|
+
|
|
1295
|
+
[[package]]
|
|
1296
|
+
name = "oxc_regular_expression"
|
|
1297
|
+
version = "0.147.0"
|
|
1298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1299
|
+
checksum = "d8455a292e58e24a0c51cfa2ec1d44e219e22d59a04b9af1ae050d4944a19d51"
|
|
1300
|
+
dependencies = [
|
|
1301
|
+
"bitflags",
|
|
1302
|
+
"oxc_allocator",
|
|
1303
|
+
"oxc_ast_macros",
|
|
1304
|
+
"oxc_diagnostics",
|
|
1305
|
+
"oxc_span",
|
|
1306
|
+
"oxc_str",
|
|
1307
|
+
"phf",
|
|
1308
|
+
"rustc-hash",
|
|
1309
|
+
"unicode-id-start",
|
|
1310
|
+
]
|
|
1311
|
+
|
|
1312
|
+
[[package]]
|
|
1313
|
+
name = "oxc_resolver"
|
|
1314
|
+
version = "11.24.3"
|
|
1315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
+
checksum = "2c7fd0839a5ecee17c0d2c88c8006e8ab4dff25d4a79e3a0bf7a9f0cce17f4e3"
|
|
1317
|
+
dependencies = [
|
|
1318
|
+
"compact_str",
|
|
1319
|
+
"dashmap",
|
|
1320
|
+
"fast-glob",
|
|
1321
|
+
"indexmap",
|
|
1322
|
+
"json-strip-comments",
|
|
1323
|
+
"memchr",
|
|
1324
|
+
"nodejs-built-in-modules",
|
|
1325
|
+
"once_cell",
|
|
1326
|
+
"percent-encoding",
|
|
1327
|
+
"pnp",
|
|
1328
|
+
"rustc-hash",
|
|
1329
|
+
"rustix",
|
|
1330
|
+
"self_cell",
|
|
1331
|
+
"serde",
|
|
1332
|
+
"serde_json",
|
|
1333
|
+
"simd-json",
|
|
1334
|
+
"simdutf8",
|
|
1335
|
+
"thiserror",
|
|
1336
|
+
"tracing",
|
|
1337
|
+
"windows",
|
|
1338
|
+
]
|
|
1339
|
+
|
|
1340
|
+
[[package]]
|
|
1341
|
+
name = "oxc_semantic"
|
|
1342
|
+
version = "0.147.0"
|
|
1343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1344
|
+
checksum = "b9c35fc29f969e7f93ee41dc37c9d82816e9c2597495f6cc302477831c8fd2ed"
|
|
1345
|
+
dependencies = [
|
|
1346
|
+
"itertools",
|
|
1347
|
+
"memchr",
|
|
1348
|
+
"oxc_allocator",
|
|
1349
|
+
"oxc_ast",
|
|
1350
|
+
"oxc_ast_visit",
|
|
1351
|
+
"oxc_data_structures",
|
|
1352
|
+
"oxc_diagnostics",
|
|
1353
|
+
"oxc_ecmascript",
|
|
1354
|
+
"oxc_index",
|
|
1355
|
+
"oxc_span",
|
|
1356
|
+
"oxc_str",
|
|
1357
|
+
"oxc_syntax",
|
|
1358
|
+
"rustc-hash",
|
|
1359
|
+
"self_cell",
|
|
1360
|
+
"smallvec",
|
|
1361
|
+
]
|
|
1362
|
+
|
|
1363
|
+
[[package]]
|
|
1364
|
+
name = "oxc_sourcemap"
|
|
1365
|
+
version = "8.1.2"
|
|
1366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1367
|
+
checksum = "b415102a94b483bbd76d13e850fe87961197e5795c79a8523ebec5d82025f94f"
|
|
1368
|
+
dependencies = [
|
|
1369
|
+
"base64-simd",
|
|
1370
|
+
"json-escape-simd",
|
|
1371
|
+
"rustc-hash",
|
|
1372
|
+
"serde",
|
|
1373
|
+
"serde_json",
|
|
1374
|
+
]
|
|
1375
|
+
|
|
1376
|
+
[[package]]
|
|
1377
|
+
name = "oxc_span"
|
|
1378
|
+
version = "0.147.0"
|
|
1379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
+
checksum = "378737bf42338e31badcdae2e6e2afc7a63cb7ffe82c418ac12d506c554adda4"
|
|
1381
|
+
dependencies = [
|
|
1382
|
+
"compact_str",
|
|
1383
|
+
"oxc_allocator",
|
|
1384
|
+
"oxc_ast_macros",
|
|
1385
|
+
"oxc_estree",
|
|
1386
|
+
"oxc_str",
|
|
1387
|
+
"serde",
|
|
1388
|
+
]
|
|
1389
|
+
|
|
1390
|
+
[[package]]
|
|
1391
|
+
name = "oxc_str"
|
|
1392
|
+
version = "0.147.0"
|
|
1393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
|
+
checksum = "8564a0269f93153f856100db908af25434efdd1ec9d403ffa099cdab57385c8c"
|
|
1395
|
+
dependencies = [
|
|
1396
|
+
"compact_str",
|
|
1397
|
+
"hashbrown 0.17.1",
|
|
1398
|
+
"oxc_allocator",
|
|
1399
|
+
"oxc_estree",
|
|
1400
|
+
"serde",
|
|
1401
|
+
]
|
|
1402
|
+
|
|
1403
|
+
[[package]]
|
|
1404
|
+
name = "oxc_syntax"
|
|
1405
|
+
version = "0.147.0"
|
|
1406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1407
|
+
checksum = "59f05978138676c9d54f021391409fcf1314a46adcdbbaabc670c2990f8387dd"
|
|
1408
|
+
dependencies = [
|
|
1409
|
+
"bitflags",
|
|
1410
|
+
"cow-utils",
|
|
1411
|
+
"dragonbox_ecma",
|
|
1412
|
+
"nonmax",
|
|
1413
|
+
"oxc_allocator",
|
|
1414
|
+
"oxc_ast_macros",
|
|
1415
|
+
"oxc_estree",
|
|
1416
|
+
"oxc_index",
|
|
1417
|
+
"oxc_span",
|
|
1418
|
+
"oxc_str",
|
|
1419
|
+
"phf",
|
|
1420
|
+
"serde",
|
|
1421
|
+
"unicode-id-start",
|
|
1422
|
+
]
|
|
1423
|
+
|
|
1424
|
+
[[package]]
|
|
1425
|
+
name = "oxc_transformer"
|
|
1426
|
+
version = "0.147.0"
|
|
1427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1428
|
+
checksum = "2e4443b3e36410882b44ed13e415ef8ddc3d31e6786d03f5a0e486e4c1d18090"
|
|
1429
|
+
dependencies = [
|
|
1430
|
+
"base64",
|
|
1431
|
+
"compact_str",
|
|
1432
|
+
"hmac-sha1-compact",
|
|
1433
|
+
"indexmap",
|
|
1434
|
+
"itoa",
|
|
1435
|
+
"memchr",
|
|
1436
|
+
"oxc_allocator",
|
|
1437
|
+
"oxc_ast",
|
|
1438
|
+
"oxc_ast_visit",
|
|
1439
|
+
"oxc_compat",
|
|
1440
|
+
"oxc_data_structures",
|
|
1441
|
+
"oxc_diagnostics",
|
|
1442
|
+
"oxc_ecmascript",
|
|
1443
|
+
"oxc_regular_expression",
|
|
1444
|
+
"oxc_semantic",
|
|
1445
|
+
"oxc_span",
|
|
1446
|
+
"oxc_str",
|
|
1447
|
+
"oxc_syntax",
|
|
1448
|
+
"oxc_traverse",
|
|
1449
|
+
"rustc-hash",
|
|
1450
|
+
"serde",
|
|
1451
|
+
"serde_json",
|
|
1452
|
+
]
|
|
1453
|
+
|
|
1454
|
+
[[package]]
|
|
1455
|
+
name = "oxc_transformer_plugins"
|
|
1456
|
+
version = "0.147.0"
|
|
1457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1458
|
+
checksum = "f9db3729caa06dcea2f4a2a50a045c4e6148be0b579b3108ac181145f212fb0d"
|
|
1459
|
+
dependencies = [
|
|
1460
|
+
"cow-utils",
|
|
1461
|
+
"itoa",
|
|
1462
|
+
"oxc_allocator",
|
|
1463
|
+
"oxc_ast",
|
|
1464
|
+
"oxc_ast_visit",
|
|
1465
|
+
"oxc_diagnostics",
|
|
1466
|
+
"oxc_ecmascript",
|
|
1467
|
+
"oxc_parser",
|
|
1468
|
+
"oxc_semantic",
|
|
1469
|
+
"oxc_span",
|
|
1470
|
+
"oxc_str",
|
|
1471
|
+
"oxc_syntax",
|
|
1472
|
+
"oxc_transformer",
|
|
1473
|
+
"oxc_traverse",
|
|
1474
|
+
"rustc-hash",
|
|
1475
|
+
]
|
|
1476
|
+
|
|
1477
|
+
[[package]]
|
|
1478
|
+
name = "oxc_traverse"
|
|
1479
|
+
version = "0.147.0"
|
|
1480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1481
|
+
checksum = "02a3cc8f1a31a1b08104ede1a6631dfc984282234249f4503f51f4d2b22036e4"
|
|
1482
|
+
dependencies = [
|
|
1483
|
+
"itoa",
|
|
1484
|
+
"oxc_allocator",
|
|
1485
|
+
"oxc_ast",
|
|
1486
|
+
"oxc_ast_visit",
|
|
1487
|
+
"oxc_data_structures",
|
|
1488
|
+
"oxc_ecmascript",
|
|
1489
|
+
"oxc_semantic",
|
|
1490
|
+
"oxc_span",
|
|
1491
|
+
"oxc_str",
|
|
1492
|
+
"oxc_syntax",
|
|
1493
|
+
"rustc-hash",
|
|
1494
|
+
]
|
|
1495
|
+
|
|
1496
|
+
[[package]]
|
|
1497
|
+
name = "parking_lot_core"
|
|
1498
|
+
version = "0.9.12"
|
|
1499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1500
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1501
|
+
dependencies = [
|
|
1502
|
+
"cfg-if",
|
|
1503
|
+
"libc",
|
|
1504
|
+
"redox_syscall",
|
|
1505
|
+
"smallvec",
|
|
1506
|
+
"windows-link",
|
|
1507
|
+
]
|
|
1508
|
+
|
|
1509
|
+
[[package]]
|
|
1510
|
+
name = "pathdiff"
|
|
1511
|
+
version = "0.2.3"
|
|
1512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
|
+
checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
|
|
1514
|
+
|
|
1515
|
+
[[package]]
|
|
1516
|
+
name = "percent-encoding"
|
|
1517
|
+
version = "2.3.2"
|
|
1518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1519
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1520
|
+
|
|
1521
|
+
[[package]]
|
|
1522
|
+
name = "petgraph"
|
|
1523
|
+
version = "0.8.3"
|
|
1524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1525
|
+
checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
|
|
1526
|
+
dependencies = [
|
|
1527
|
+
"fixedbitset",
|
|
1528
|
+
"hashbrown 0.15.5",
|
|
1529
|
+
"indexmap",
|
|
1530
|
+
"serde",
|
|
1531
|
+
]
|
|
1532
|
+
|
|
1533
|
+
[[package]]
|
|
1534
|
+
name = "phf"
|
|
1535
|
+
version = "0.14.0"
|
|
1536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1537
|
+
checksum = "010378780309880b08997fae13be7834dba947d36393bd372f2b1556deb2a2f6"
|
|
1538
|
+
dependencies = [
|
|
1539
|
+
"phf_macros",
|
|
1540
|
+
"phf_shared",
|
|
1541
|
+
"serde",
|
|
1542
|
+
]
|
|
1543
|
+
|
|
1544
|
+
[[package]]
|
|
1545
|
+
name = "phf_generator"
|
|
1546
|
+
version = "0.14.0"
|
|
1547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1548
|
+
checksum = "aeb62e0959d5a1bebc965f4d15d9e2b7cea002b6b0f5ba8cde6cc26738467100"
|
|
1549
|
+
dependencies = [
|
|
1550
|
+
"fastrand",
|
|
1551
|
+
"phf_shared",
|
|
1552
|
+
]
|
|
1553
|
+
|
|
1554
|
+
[[package]]
|
|
1555
|
+
name = "phf_macros"
|
|
1556
|
+
version = "0.14.0"
|
|
1557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1558
|
+
checksum = "5fa8d0ca26d424d27630da600c6624696e7dec8bf7b3b492b383c5dc49e5e085"
|
|
1559
|
+
dependencies = [
|
|
1560
|
+
"phf_generator",
|
|
1561
|
+
"phf_shared",
|
|
1562
|
+
"proc-macro2",
|
|
1563
|
+
"quote",
|
|
1564
|
+
"syn 2.0.119",
|
|
1565
|
+
]
|
|
1566
|
+
|
|
1567
|
+
[[package]]
|
|
1568
|
+
name = "phf_shared"
|
|
1569
|
+
version = "0.14.0"
|
|
1570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1571
|
+
checksum = "c6fd9027e2d9319be6349febd1db4e8d02aa544921200c9b777720ac34a3aa89"
|
|
1572
|
+
dependencies = [
|
|
1573
|
+
"siphasher",
|
|
1574
|
+
]
|
|
1575
|
+
|
|
1576
|
+
[[package]]
|
|
1577
|
+
name = "pin-project"
|
|
1578
|
+
version = "1.1.13"
|
|
1579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1580
|
+
checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
|
|
1581
|
+
dependencies = [
|
|
1582
|
+
"pin-project-internal",
|
|
1583
|
+
]
|
|
1584
|
+
|
|
1585
|
+
[[package]]
|
|
1586
|
+
name = "pin-project-internal"
|
|
1587
|
+
version = "1.1.13"
|
|
1588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1589
|
+
checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
|
|
1590
|
+
dependencies = [
|
|
1591
|
+
"proc-macro2",
|
|
1592
|
+
"quote",
|
|
1593
|
+
"syn 2.0.119",
|
|
1594
|
+
]
|
|
1595
|
+
|
|
1596
|
+
[[package]]
|
|
1597
|
+
name = "pin-project-lite"
|
|
1598
|
+
version = "0.2.17"
|
|
1599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1600
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1601
|
+
|
|
1602
|
+
[[package]]
|
|
1603
|
+
name = "pnp"
|
|
1604
|
+
version = "0.12.12"
|
|
1605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1606
|
+
checksum = "5a0e591607db15df65036bd424bd57782296da9963d823da5a139ed451f615b5"
|
|
1607
|
+
dependencies = [
|
|
1608
|
+
"byteorder",
|
|
1609
|
+
"concurrent_lru",
|
|
1610
|
+
"flate2",
|
|
1611
|
+
"indexmap",
|
|
1612
|
+
"nodejs-built-in-modules",
|
|
1613
|
+
"pathdiff",
|
|
1614
|
+
"radix_trie",
|
|
1615
|
+
"regress",
|
|
1616
|
+
"rustc-hash",
|
|
1617
|
+
"serde",
|
|
1618
|
+
"serde_json",
|
|
1619
|
+
"thiserror",
|
|
1620
|
+
]
|
|
1621
|
+
|
|
1622
|
+
[[package]]
|
|
1623
|
+
name = "postcard"
|
|
1624
|
+
version = "1.1.3"
|
|
1625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1626
|
+
checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
|
|
1627
|
+
dependencies = [
|
|
1628
|
+
"cobs",
|
|
1629
|
+
"embedded-io 0.4.0",
|
|
1630
|
+
"embedded-io 0.6.1",
|
|
1631
|
+
"serde",
|
|
1632
|
+
]
|
|
1633
|
+
|
|
1634
|
+
[[package]]
|
|
1635
|
+
name = "potential_utf"
|
|
1636
|
+
version = "0.1.6"
|
|
1637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1638
|
+
checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
|
|
1639
|
+
dependencies = [
|
|
1640
|
+
"zerovec",
|
|
1641
|
+
]
|
|
1642
|
+
|
|
1643
|
+
[[package]]
|
|
1644
|
+
name = "proc-macro2"
|
|
1645
|
+
version = "1.0.107"
|
|
1646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
1648
|
+
dependencies = [
|
|
1649
|
+
"unicode-ident",
|
|
1650
|
+
]
|
|
1651
|
+
|
|
1652
|
+
[[package]]
|
|
1653
|
+
name = "quote"
|
|
1654
|
+
version = "1.0.47"
|
|
1655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1656
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
1657
|
+
dependencies = [
|
|
1658
|
+
"proc-macro2",
|
|
1659
|
+
]
|
|
1660
|
+
|
|
1661
|
+
[[package]]
|
|
1662
|
+
name = "r-efi"
|
|
1663
|
+
version = "6.0.0"
|
|
1664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1665
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1666
|
+
|
|
1667
|
+
[[package]]
|
|
1668
|
+
name = "radix_trie"
|
|
1669
|
+
version = "0.3.0"
|
|
1670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1671
|
+
checksum = "3b4431027dcd37fc2a73ef740b5f233aa805897935b8bce0195e41bbf9a3289a"
|
|
1672
|
+
dependencies = [
|
|
1673
|
+
"endian-type",
|
|
1674
|
+
"nibble_vec",
|
|
1675
|
+
]
|
|
1676
|
+
|
|
1677
|
+
[[package]]
|
|
1678
|
+
name = "rayon"
|
|
1679
|
+
version = "1.12.0"
|
|
1680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1681
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
1682
|
+
dependencies = [
|
|
1683
|
+
"either",
|
|
1684
|
+
"rayon-core",
|
|
1685
|
+
]
|
|
1686
|
+
|
|
1687
|
+
[[package]]
|
|
1688
|
+
name = "rayon-core"
|
|
1689
|
+
version = "1.13.0"
|
|
1690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1691
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1692
|
+
dependencies = [
|
|
1693
|
+
"crossbeam-deque",
|
|
1694
|
+
"crossbeam-utils",
|
|
1695
|
+
]
|
|
1696
|
+
|
|
1697
|
+
[[package]]
|
|
1698
|
+
name = "redox_syscall"
|
|
1699
|
+
version = "0.5.18"
|
|
1700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1701
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1702
|
+
dependencies = [
|
|
1703
|
+
"bitflags",
|
|
1704
|
+
]
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "ref-cast"
|
|
1708
|
+
version = "1.0.27"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "7e440fb4e4b4147295338efb76001ab9e4efc0e5839df2c47fc5ac2381d365c3"
|
|
1711
|
+
dependencies = [
|
|
1712
|
+
"ref-cast-impl",
|
|
1713
|
+
]
|
|
1714
|
+
|
|
1715
|
+
[[package]]
|
|
1716
|
+
name = "ref-cast-impl"
|
|
1717
|
+
version = "1.0.27"
|
|
1718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
+
checksum = "92ecd8964f8453721699a1ed72037b0db49ce2f5a5138486ee89bed6f67cdf3a"
|
|
1720
|
+
dependencies = [
|
|
1721
|
+
"proc-macro2",
|
|
1722
|
+
"quote",
|
|
1723
|
+
"syn 3.0.4",
|
|
1724
|
+
]
|
|
1725
|
+
|
|
1726
|
+
[[package]]
|
|
1727
|
+
name = "regex"
|
|
1728
|
+
version = "1.13.1"
|
|
1729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1730
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
1731
|
+
dependencies = [
|
|
1732
|
+
"aho-corasick",
|
|
1733
|
+
"memchr",
|
|
1734
|
+
"regex-automata",
|
|
1735
|
+
"regex-syntax",
|
|
1736
|
+
]
|
|
1737
|
+
|
|
1738
|
+
[[package]]
|
|
1739
|
+
name = "regex-automata"
|
|
1740
|
+
version = "0.4.18"
|
|
1741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1742
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
1743
|
+
dependencies = [
|
|
1744
|
+
"aho-corasick",
|
|
1745
|
+
"memchr",
|
|
1746
|
+
"regex-syntax",
|
|
1747
|
+
]
|
|
1748
|
+
|
|
1749
|
+
[[package]]
|
|
1750
|
+
name = "regex-syntax"
|
|
1751
|
+
version = "0.8.11"
|
|
1752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1753
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
1754
|
+
|
|
1755
|
+
[[package]]
|
|
1756
|
+
name = "regress"
|
|
1757
|
+
version = "0.12.0"
|
|
1758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1759
|
+
checksum = "32eef8b209c3c1c15dbad02c1f30f9539f00dc7253e0cbcdaae442a50a09d7c1"
|
|
1760
|
+
dependencies = [
|
|
1761
|
+
"memchr",
|
|
1762
|
+
]
|
|
1763
|
+
|
|
1764
|
+
[[package]]
|
|
1765
|
+
name = "rolldown"
|
|
1766
|
+
version = "1.2.6"
|
|
1767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1768
|
+
checksum = "cff85a258e1db8c748b53a7abfd164df1f04b06ee63f4db52582d36737010faa"
|
|
1769
|
+
dependencies = [
|
|
1770
|
+
"anyhow",
|
|
1771
|
+
"append-only-vec",
|
|
1772
|
+
"arcstr",
|
|
1773
|
+
"bitflags",
|
|
1774
|
+
"dashmap",
|
|
1775
|
+
"futures",
|
|
1776
|
+
"indexmap",
|
|
1777
|
+
"itertools",
|
|
1778
|
+
"itoa",
|
|
1779
|
+
"json-escape-simd",
|
|
1780
|
+
"memchr",
|
|
1781
|
+
"oxc",
|
|
1782
|
+
"oxc_allocator",
|
|
1783
|
+
"oxc_ecmascript",
|
|
1784
|
+
"oxc_index",
|
|
1785
|
+
"oxc_str",
|
|
1786
|
+
"oxc_traverse",
|
|
1787
|
+
"petgraph",
|
|
1788
|
+
"rayon",
|
|
1789
|
+
"rolldown_common",
|
|
1790
|
+
"rolldown_dev_common",
|
|
1791
|
+
"rolldown_devtools",
|
|
1792
|
+
"rolldown_ecmascript",
|
|
1793
|
+
"rolldown_ecmascript_utils",
|
|
1794
|
+
"rolldown_error",
|
|
1795
|
+
"rolldown_fs",
|
|
1796
|
+
"rolldown_plugin",
|
|
1797
|
+
"rolldown_plugin_asset_module",
|
|
1798
|
+
"rolldown_plugin_chunk_import_map",
|
|
1799
|
+
"rolldown_plugin_copy_module",
|
|
1800
|
+
"rolldown_plugin_data_url",
|
|
1801
|
+
"rolldown_plugin_hmr",
|
|
1802
|
+
"rolldown_plugin_lazy_compilation",
|
|
1803
|
+
"rolldown_plugin_oxc_runtime",
|
|
1804
|
+
"rolldown_resolver",
|
|
1805
|
+
"rolldown_sourcemap",
|
|
1806
|
+
"rolldown_std_utils",
|
|
1807
|
+
"rolldown_tracing",
|
|
1808
|
+
"rolldown_utils",
|
|
1809
|
+
"rustc-hash",
|
|
1810
|
+
"serde",
|
|
1811
|
+
"serde_json",
|
|
1812
|
+
"smallvec",
|
|
1813
|
+
"string_wizard",
|
|
1814
|
+
"sugar_path",
|
|
1815
|
+
"tokio",
|
|
1816
|
+
"tracing",
|
|
1817
|
+
"url",
|
|
1818
|
+
"xxhash-rust",
|
|
1819
|
+
]
|
|
1820
|
+
|
|
1821
|
+
[[package]]
|
|
1822
|
+
name = "rolldown-ariadne"
|
|
1823
|
+
version = "0.6.0"
|
|
1824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1825
|
+
checksum = "ee296fe9ac0007f2c0eff04d55c980de537aa3d736e873d70c9c47d4c737ea44"
|
|
1826
|
+
dependencies = [
|
|
1827
|
+
"unicode-width",
|
|
1828
|
+
"yansi",
|
|
1829
|
+
]
|
|
1830
|
+
|
|
1831
|
+
[[package]]
|
|
1832
|
+
name = "rolldown-ruby-ffi"
|
|
1833
|
+
version = "0.1.0"
|
|
1834
|
+
dependencies = [
|
|
1835
|
+
"arcstr",
|
|
1836
|
+
"cbindgen",
|
|
1837
|
+
"rolldown",
|
|
1838
|
+
"rolldown_common",
|
|
1839
|
+
"rolldown_error",
|
|
1840
|
+
"rolldown_plugin",
|
|
1841
|
+
"rolldown_utils",
|
|
1842
|
+
"serde",
|
|
1843
|
+
"serde_json",
|
|
1844
|
+
"tokio",
|
|
1845
|
+
]
|
|
1846
|
+
|
|
1847
|
+
[[package]]
|
|
1848
|
+
name = "rolldown_common"
|
|
1849
|
+
version = "1.2.6"
|
|
1850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
|
+
checksum = "6d3532b5907353d9a98d94647ca865a0c6f99c2ffc0ff8df1b4cc3e9dd4e0439"
|
|
1852
|
+
dependencies = [
|
|
1853
|
+
"anyhow",
|
|
1854
|
+
"arcstr",
|
|
1855
|
+
"bitflags",
|
|
1856
|
+
"dashmap",
|
|
1857
|
+
"derive_more",
|
|
1858
|
+
"fast-glob",
|
|
1859
|
+
"itertools",
|
|
1860
|
+
"num-bigint",
|
|
1861
|
+
"oxc",
|
|
1862
|
+
"oxc_ecmascript",
|
|
1863
|
+
"oxc_index",
|
|
1864
|
+
"oxc_resolver",
|
|
1865
|
+
"oxc_sourcemap",
|
|
1866
|
+
"oxc_str",
|
|
1867
|
+
"rolldown_ecmascript",
|
|
1868
|
+
"rolldown_error",
|
|
1869
|
+
"rolldown_fs",
|
|
1870
|
+
"rolldown_sourcemap",
|
|
1871
|
+
"rolldown_std_utils",
|
|
1872
|
+
"rolldown_utils",
|
|
1873
|
+
"rustc-hash",
|
|
1874
|
+
"serde",
|
|
1875
|
+
"serde_json",
|
|
1876
|
+
"simdutf8",
|
|
1877
|
+
"smallvec",
|
|
1878
|
+
"string_wizard",
|
|
1879
|
+
"sugar_path",
|
|
1880
|
+
"tokio",
|
|
1881
|
+
]
|
|
1882
|
+
|
|
1883
|
+
[[package]]
|
|
1884
|
+
name = "rolldown_dev_common"
|
|
1885
|
+
version = "1.2.6"
|
|
1886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1887
|
+
checksum = "7270b548d791c765866de3f0c4a3a3bd443919fcb0b0d3f08008c3ac80c05b0d"
|
|
1888
|
+
dependencies = [
|
|
1889
|
+
"derive_more",
|
|
1890
|
+
"rolldown_common",
|
|
1891
|
+
"rolldown_error",
|
|
1892
|
+
"rolldown_utils",
|
|
1893
|
+
]
|
|
1894
|
+
|
|
1895
|
+
[[package]]
|
|
1896
|
+
name = "rolldown_devtools"
|
|
1897
|
+
version = "1.2.6"
|
|
1898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1899
|
+
checksum = "0dd25d2c0f97232ab2c703ee4f2c24056d758e7e42c4191db86d8ef3f6502a83"
|
|
1900
|
+
dependencies = [
|
|
1901
|
+
"blake3",
|
|
1902
|
+
"rolldown_devtools_action",
|
|
1903
|
+
"rustc-hash",
|
|
1904
|
+
"serde",
|
|
1905
|
+
"serde_json",
|
|
1906
|
+
"tracing",
|
|
1907
|
+
"tracing-subscriber",
|
|
1908
|
+
]
|
|
1909
|
+
|
|
1910
|
+
[[package]]
|
|
1911
|
+
name = "rolldown_devtools_action"
|
|
1912
|
+
version = "1.2.6"
|
|
1913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1914
|
+
checksum = "d2a482b463578300f0331d8fffc98c67855997cc12db8d0732abd9b35de67591"
|
|
1915
|
+
dependencies = [
|
|
1916
|
+
"serde",
|
|
1917
|
+
"ts-rs",
|
|
1918
|
+
]
|
|
1919
|
+
|
|
1920
|
+
[[package]]
|
|
1921
|
+
name = "rolldown_ecmascript"
|
|
1922
|
+
version = "1.2.6"
|
|
1923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1924
|
+
checksum = "e7a9eeab22bdb080ec5aba918e93ca07018fc76c450ad1f0d70d33a15373ab9b"
|
|
1925
|
+
dependencies = [
|
|
1926
|
+
"arcstr",
|
|
1927
|
+
"oxc",
|
|
1928
|
+
"oxc_sourcemap",
|
|
1929
|
+
"oxc_str",
|
|
1930
|
+
"rolldown_error",
|
|
1931
|
+
"self_cell",
|
|
1932
|
+
]
|
|
1933
|
+
|
|
1934
|
+
[[package]]
|
|
1935
|
+
name = "rolldown_ecmascript_utils"
|
|
1936
|
+
version = "1.2.6"
|
|
1937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1938
|
+
checksum = "75375b02cbaaeff70cdc2742aa914a5696af1ad554e9286ac98c5a611501433b"
|
|
1939
|
+
dependencies = [
|
|
1940
|
+
"memchr",
|
|
1941
|
+
"oxc",
|
|
1942
|
+
"rolldown_common",
|
|
1943
|
+
"rolldown_utils",
|
|
1944
|
+
]
|
|
1945
|
+
|
|
1946
|
+
[[package]]
|
|
1947
|
+
name = "rolldown_error"
|
|
1948
|
+
version = "1.2.6"
|
|
1949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1950
|
+
checksum = "f78645e53afd19e27face5b0aea483ef8ee4f3393999a8eae8e503cab65eeb3c"
|
|
1951
|
+
dependencies = [
|
|
1952
|
+
"anyhow",
|
|
1953
|
+
"arcstr",
|
|
1954
|
+
"bitflags",
|
|
1955
|
+
"derive_more",
|
|
1956
|
+
"heck 0.5.0",
|
|
1957
|
+
"oxc",
|
|
1958
|
+
"oxc_resolver",
|
|
1959
|
+
"rolldown-ariadne",
|
|
1960
|
+
"rustc-hash",
|
|
1961
|
+
"sugar_path",
|
|
1962
|
+
]
|
|
1963
|
+
|
|
1964
|
+
[[package]]
|
|
1965
|
+
name = "rolldown_fs"
|
|
1966
|
+
version = "1.2.6"
|
|
1967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1968
|
+
checksum = "fc6f3fba1b5ac7a34568b586ceb93a284d520d47092115c2e9e88bb6a740c80a"
|
|
1969
|
+
dependencies = [
|
|
1970
|
+
"oxc_resolver",
|
|
1971
|
+
"vfs",
|
|
1972
|
+
]
|
|
1973
|
+
|
|
1974
|
+
[[package]]
|
|
1975
|
+
name = "rolldown_plugin"
|
|
1976
|
+
version = "1.2.6"
|
|
1977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1978
|
+
checksum = "569d0e5672cae8a44324fea078e38a3860539cf52126f8872d5b3766b168ce01"
|
|
1979
|
+
dependencies = [
|
|
1980
|
+
"anyhow",
|
|
1981
|
+
"arcstr",
|
|
1982
|
+
"bitflags",
|
|
1983
|
+
"dashmap",
|
|
1984
|
+
"derive_more",
|
|
1985
|
+
"nodejs-built-in-modules",
|
|
1986
|
+
"oxc_index",
|
|
1987
|
+
"rolldown_common",
|
|
1988
|
+
"rolldown_devtools",
|
|
1989
|
+
"rolldown_ecmascript",
|
|
1990
|
+
"rolldown_error",
|
|
1991
|
+
"rolldown_fs",
|
|
1992
|
+
"rolldown_resolver",
|
|
1993
|
+
"rolldown_sourcemap",
|
|
1994
|
+
"rolldown_utils",
|
|
1995
|
+
"rustc-hash",
|
|
1996
|
+
"serde",
|
|
1997
|
+
"serde_json",
|
|
1998
|
+
"string_wizard",
|
|
1999
|
+
"sugar_path",
|
|
2000
|
+
"tokio",
|
|
2001
|
+
"tracing",
|
|
2002
|
+
"typedmap",
|
|
2003
|
+
]
|
|
2004
|
+
|
|
2005
|
+
[[package]]
|
|
2006
|
+
name = "rolldown_plugin_asset_module"
|
|
2007
|
+
version = "1.2.6"
|
|
2008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2009
|
+
checksum = "5db75bcd457922a5b494b25ad31e34beaddb9d7965f3dd20b2ceff23be39b1e5"
|
|
2010
|
+
dependencies = [
|
|
2011
|
+
"anyhow",
|
|
2012
|
+
"rolldown_common",
|
|
2013
|
+
"rolldown_plugin",
|
|
2014
|
+
"rolldown_plugin_utils",
|
|
2015
|
+
"rolldown_utils",
|
|
2016
|
+
"rustc-hash",
|
|
2017
|
+
]
|
|
2018
|
+
|
|
2019
|
+
[[package]]
|
|
2020
|
+
name = "rolldown_plugin_chunk_import_map"
|
|
2021
|
+
version = "1.2.6"
|
|
2022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2023
|
+
checksum = "e0420742061a1653391f6ca24cce9c2ba81116d4fa2b129f1a25f70b309548be"
|
|
2024
|
+
dependencies = [
|
|
2025
|
+
"arcstr",
|
|
2026
|
+
"rolldown_common",
|
|
2027
|
+
"rolldown_plugin",
|
|
2028
|
+
"rolldown_utils",
|
|
2029
|
+
"rustc-hash",
|
|
2030
|
+
"serde_json",
|
|
2031
|
+
"xxhash-rust",
|
|
2032
|
+
]
|
|
2033
|
+
|
|
2034
|
+
[[package]]
|
|
2035
|
+
name = "rolldown_plugin_copy_module"
|
|
2036
|
+
version = "1.2.6"
|
|
2037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2038
|
+
checksum = "b8f03ce8b3fa510f1ceb7c10851777aac54350aa9d29b35f4181a19192885a17"
|
|
2039
|
+
dependencies = [
|
|
2040
|
+
"anyhow",
|
|
2041
|
+
"arcstr",
|
|
2042
|
+
"rolldown_common",
|
|
2043
|
+
"rolldown_plugin",
|
|
2044
|
+
"rolldown_plugin_utils",
|
|
2045
|
+
"rolldown_utils",
|
|
2046
|
+
"rustc-hash",
|
|
2047
|
+
]
|
|
2048
|
+
|
|
2049
|
+
[[package]]
|
|
2050
|
+
name = "rolldown_plugin_data_url"
|
|
2051
|
+
version = "1.2.6"
|
|
2052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2053
|
+
checksum = "8502937fc18623e8728f9f689780d8fa268cc4df4cd7876c27836e61b464d09f"
|
|
2054
|
+
dependencies = [
|
|
2055
|
+
"arcstr",
|
|
2056
|
+
"base64-simd",
|
|
2057
|
+
"percent-encoding",
|
|
2058
|
+
"rolldown_common",
|
|
2059
|
+
"rolldown_plugin",
|
|
2060
|
+
"rolldown_utils",
|
|
2061
|
+
"simdutf8",
|
|
2062
|
+
]
|
|
2063
|
+
|
|
2064
|
+
[[package]]
|
|
2065
|
+
name = "rolldown_plugin_hmr"
|
|
2066
|
+
version = "1.2.6"
|
|
2067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2068
|
+
checksum = "b8fbedb39c09c0b53e7c621c59664995be895a8515687823f919bcacc26b7a23"
|
|
2069
|
+
dependencies = [
|
|
2070
|
+
"rolldown_common",
|
|
2071
|
+
"rolldown_plugin",
|
|
2072
|
+
]
|
|
2073
|
+
|
|
2074
|
+
[[package]]
|
|
2075
|
+
name = "rolldown_plugin_lazy_compilation"
|
|
2076
|
+
version = "1.2.6"
|
|
2077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2078
|
+
checksum = "72655a54531959163317dd8e9a5898f95e9e6234a14bbf951089d6daaea09696"
|
|
2079
|
+
dependencies = [
|
|
2080
|
+
"anyhow",
|
|
2081
|
+
"arcstr",
|
|
2082
|
+
"oxc",
|
|
2083
|
+
"rolldown_common",
|
|
2084
|
+
"rolldown_plugin",
|
|
2085
|
+
"rolldown_utils",
|
|
2086
|
+
"serde_json",
|
|
2087
|
+
]
|
|
2088
|
+
|
|
2089
|
+
[[package]]
|
|
2090
|
+
name = "rolldown_plugin_oxc_runtime"
|
|
2091
|
+
version = "1.2.6"
|
|
2092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2093
|
+
checksum = "a4d4000f4d24f02afafbbccf33bd4c883a0f814f272dad68a3710f6617672b6e"
|
|
2094
|
+
dependencies = [
|
|
2095
|
+
"arcstr",
|
|
2096
|
+
"phf",
|
|
2097
|
+
"rolldown_common",
|
|
2098
|
+
"rolldown_plugin",
|
|
2099
|
+
"rolldown_utils",
|
|
2100
|
+
]
|
|
2101
|
+
|
|
2102
|
+
[[package]]
|
|
2103
|
+
name = "rolldown_plugin_utils"
|
|
2104
|
+
version = "1.2.6"
|
|
2105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2106
|
+
checksum = "fd9fad449e928fe1c36d949767cca3d82659e292c17ffd4c9c4cc0238f4da4e3"
|
|
2107
|
+
dependencies = [
|
|
2108
|
+
"anyhow",
|
|
2109
|
+
"arcstr",
|
|
2110
|
+
"memchr",
|
|
2111
|
+
"oxc",
|
|
2112
|
+
"rolldown_common",
|
|
2113
|
+
"rolldown_plugin",
|
|
2114
|
+
"rolldown_std_utils",
|
|
2115
|
+
"rolldown_utils",
|
|
2116
|
+
"serde_json",
|
|
2117
|
+
"string_wizard",
|
|
2118
|
+
"tokio",
|
|
2119
|
+
]
|
|
2120
|
+
|
|
2121
|
+
[[package]]
|
|
2122
|
+
name = "rolldown_resolver"
|
|
2123
|
+
version = "1.2.6"
|
|
2124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2125
|
+
checksum = "6fb7f736a224a0b7072e050219bb3f7e7ad3dfa0f5f794ee2d6a59a178815a29"
|
|
2126
|
+
dependencies = [
|
|
2127
|
+
"anyhow",
|
|
2128
|
+
"arcstr",
|
|
2129
|
+
"dashmap",
|
|
2130
|
+
"itertools",
|
|
2131
|
+
"oxc_resolver",
|
|
2132
|
+
"rolldown_common",
|
|
2133
|
+
"rolldown_fs",
|
|
2134
|
+
"rolldown_utils",
|
|
2135
|
+
"sugar_path",
|
|
2136
|
+
]
|
|
2137
|
+
|
|
2138
|
+
[[package]]
|
|
2139
|
+
name = "rolldown_sourcemap"
|
|
2140
|
+
version = "1.2.6"
|
|
2141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2142
|
+
checksum = "1313bb7f0bc9215ace823f56b3ae16d07f54933af5cdf13e0f0c2522f5fbd885"
|
|
2143
|
+
dependencies = [
|
|
2144
|
+
"memchr",
|
|
2145
|
+
"oxc",
|
|
2146
|
+
"oxc_sourcemap",
|
|
2147
|
+
]
|
|
2148
|
+
|
|
2149
|
+
[[package]]
|
|
2150
|
+
name = "rolldown_std_utils"
|
|
2151
|
+
version = "1.2.6"
|
|
2152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2153
|
+
checksum = "59f10813baa5e2e77b0f2a6fc418da40e5db0015f10556f690cdb770010fac2b"
|
|
2154
|
+
dependencies = [
|
|
2155
|
+
"regex",
|
|
2156
|
+
"sugar_path",
|
|
2157
|
+
]
|
|
2158
|
+
|
|
2159
|
+
[[package]]
|
|
2160
|
+
name = "rolldown_tracing"
|
|
2161
|
+
version = "1.2.6"
|
|
2162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2163
|
+
checksum = "efcfbda2012b69e3f2dacb9aecb6c7785ec79e81733115e1be0d6ded55781e6c"
|
|
2164
|
+
dependencies = [
|
|
2165
|
+
"tracing",
|
|
2166
|
+
"tracing-subscriber",
|
|
2167
|
+
]
|
|
2168
|
+
|
|
2169
|
+
[[package]]
|
|
2170
|
+
name = "rolldown_utils"
|
|
2171
|
+
version = "1.2.6"
|
|
2172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2173
|
+
checksum = "02dd4a23b7600dc9a6de467b88449be6b5967249c0e8b08a1a339a3191f30afb"
|
|
2174
|
+
dependencies = [
|
|
2175
|
+
"anyhow",
|
|
2176
|
+
"arcstr",
|
|
2177
|
+
"async-scoped",
|
|
2178
|
+
"base-encode",
|
|
2179
|
+
"base64-simd",
|
|
2180
|
+
"cow-utils",
|
|
2181
|
+
"dashmap",
|
|
2182
|
+
"fast-glob",
|
|
2183
|
+
"form_urlencoded",
|
|
2184
|
+
"futures",
|
|
2185
|
+
"indexmap",
|
|
2186
|
+
"infer",
|
|
2187
|
+
"itoa",
|
|
2188
|
+
"memchr",
|
|
2189
|
+
"mime",
|
|
2190
|
+
"nom",
|
|
2191
|
+
"oxc",
|
|
2192
|
+
"oxc_index",
|
|
2193
|
+
"oxc_str",
|
|
2194
|
+
"rayon",
|
|
2195
|
+
"regex",
|
|
2196
|
+
"regress",
|
|
2197
|
+
"rolldown_error",
|
|
2198
|
+
"rolldown_std_utils",
|
|
2199
|
+
"rustc-hash",
|
|
2200
|
+
"serde_json",
|
|
2201
|
+
"simdutf8",
|
|
2202
|
+
"sugar_path",
|
|
2203
|
+
"tokio",
|
|
2204
|
+
"uuid",
|
|
2205
|
+
"xxhash-rust",
|
|
2206
|
+
]
|
|
2207
|
+
|
|
2208
|
+
[[package]]
|
|
2209
|
+
name = "ropey"
|
|
2210
|
+
version = "1.6.1"
|
|
2211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2212
|
+
checksum = "93411e420bcd1a75ddd1dc3caf18c23155eda2c090631a85af21ba19e97093b5"
|
|
2213
|
+
dependencies = [
|
|
2214
|
+
"smallvec",
|
|
2215
|
+
"str_indices",
|
|
2216
|
+
]
|
|
2217
|
+
|
|
2218
|
+
[[package]]
|
|
2219
|
+
name = "rustc-hash"
|
|
2220
|
+
version = "2.1.3"
|
|
2221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2222
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
2223
|
+
|
|
2224
|
+
[[package]]
|
|
2225
|
+
name = "rustc_version"
|
|
2226
|
+
version = "0.4.1"
|
|
2227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2228
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2229
|
+
dependencies = [
|
|
2230
|
+
"semver",
|
|
2231
|
+
]
|
|
2232
|
+
|
|
2233
|
+
[[package]]
|
|
2234
|
+
name = "rustix"
|
|
2235
|
+
version = "1.1.4"
|
|
2236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2237
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
2238
|
+
dependencies = [
|
|
2239
|
+
"bitflags",
|
|
2240
|
+
"errno",
|
|
2241
|
+
"libc",
|
|
2242
|
+
"linux-raw-sys",
|
|
2243
|
+
"windows-sys",
|
|
2244
|
+
]
|
|
2245
|
+
|
|
2246
|
+
[[package]]
|
|
2247
|
+
name = "rustversion"
|
|
2248
|
+
version = "1.0.23"
|
|
2249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2250
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
2251
|
+
|
|
2252
|
+
[[package]]
|
|
2253
|
+
name = "ryu"
|
|
2254
|
+
version = "1.0.23"
|
|
2255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2256
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
2257
|
+
|
|
2258
|
+
[[package]]
|
|
2259
|
+
name = "scopeguard"
|
|
2260
|
+
version = "1.2.0"
|
|
2261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2262
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2263
|
+
|
|
2264
|
+
[[package]]
|
|
2265
|
+
name = "self_cell"
|
|
2266
|
+
version = "1.3.0"
|
|
2267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2268
|
+
checksum = "2ab42ca02749e120097e328d91d415325bdf43b1c72c4c8badf37375fe40a813"
|
|
2269
|
+
|
|
2270
|
+
[[package]]
|
|
2271
|
+
name = "semver"
|
|
2272
|
+
version = "1.0.28"
|
|
2273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2274
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
2275
|
+
|
|
2276
|
+
[[package]]
|
|
2277
|
+
name = "seq-macro"
|
|
2278
|
+
version = "0.3.6"
|
|
2279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2280
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
2281
|
+
|
|
2282
|
+
[[package]]
|
|
2283
|
+
name = "serde"
|
|
2284
|
+
version = "1.0.229"
|
|
2285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2286
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
2287
|
+
dependencies = [
|
|
2288
|
+
"serde_core",
|
|
2289
|
+
"serde_derive",
|
|
2290
|
+
]
|
|
2291
|
+
|
|
2292
|
+
[[package]]
|
|
2293
|
+
name = "serde_core"
|
|
2294
|
+
version = "1.0.229"
|
|
2295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2296
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
2297
|
+
dependencies = [
|
|
2298
|
+
"serde_derive",
|
|
2299
|
+
]
|
|
2300
|
+
|
|
2301
|
+
[[package]]
|
|
2302
|
+
name = "serde_derive"
|
|
2303
|
+
version = "1.0.229"
|
|
2304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2305
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
2306
|
+
dependencies = [
|
|
2307
|
+
"proc-macro2",
|
|
2308
|
+
"quote",
|
|
2309
|
+
"syn 3.0.4",
|
|
2310
|
+
]
|
|
2311
|
+
|
|
2312
|
+
[[package]]
|
|
2313
|
+
name = "serde_json"
|
|
2314
|
+
version = "1.0.151"
|
|
2315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2316
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
2317
|
+
dependencies = [
|
|
2318
|
+
"indexmap",
|
|
2319
|
+
"itoa",
|
|
2320
|
+
"memchr",
|
|
2321
|
+
"serde",
|
|
2322
|
+
"serde_core",
|
|
2323
|
+
"zmij",
|
|
2324
|
+
]
|
|
2325
|
+
|
|
2326
|
+
[[package]]
|
|
2327
|
+
name = "serde_spanned"
|
|
2328
|
+
version = "0.6.9"
|
|
2329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2330
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
2331
|
+
dependencies = [
|
|
2332
|
+
"serde",
|
|
2333
|
+
]
|
|
2334
|
+
|
|
2335
|
+
[[package]]
|
|
2336
|
+
name = "sharded-slab"
|
|
2337
|
+
version = "0.1.7"
|
|
2338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2339
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
2340
|
+
dependencies = [
|
|
2341
|
+
"lazy_static",
|
|
2342
|
+
]
|
|
2343
|
+
|
|
2344
|
+
[[package]]
|
|
2345
|
+
name = "shlex"
|
|
2346
|
+
version = "2.0.1"
|
|
2347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2348
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
2349
|
+
|
|
2350
|
+
[[package]]
|
|
2351
|
+
name = "simd-json"
|
|
2352
|
+
version = "0.18.1"
|
|
2353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2354
|
+
checksum = "6ebe141eb4a23ecc4d5de93fa5b139ac65dc07c38037a2fe9a8fb7c9d36bd832"
|
|
2355
|
+
dependencies = [
|
|
2356
|
+
"halfbrown",
|
|
2357
|
+
"ref-cast",
|
|
2358
|
+
"simdutf8",
|
|
2359
|
+
"value-trait",
|
|
2360
|
+
]
|
|
2361
|
+
|
|
2362
|
+
[[package]]
|
|
2363
|
+
name = "simdutf8"
|
|
2364
|
+
version = "0.1.5"
|
|
2365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2366
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
2367
|
+
|
|
2368
|
+
[[package]]
|
|
2369
|
+
name = "siphasher"
|
|
2370
|
+
version = "1.0.3"
|
|
2371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2372
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
2373
|
+
|
|
2374
|
+
[[package]]
|
|
2375
|
+
name = "slab"
|
|
2376
|
+
version = "0.4.12"
|
|
2377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2378
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
2379
|
+
|
|
2380
|
+
[[package]]
|
|
2381
|
+
name = "smallvec"
|
|
2382
|
+
version = "1.15.2"
|
|
2383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2384
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
2385
|
+
dependencies = [
|
|
2386
|
+
"serde",
|
|
2387
|
+
]
|
|
2388
|
+
|
|
2389
|
+
[[package]]
|
|
2390
|
+
name = "smawk"
|
|
2391
|
+
version = "0.3.3"
|
|
2392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2393
|
+
checksum = "e8e2fb0f499abb4d162f2bedad68f5ef91a1682b5a03596ddb67efd37768d100"
|
|
2394
|
+
|
|
2395
|
+
[[package]]
|
|
2396
|
+
name = "stable_deref_trait"
|
|
2397
|
+
version = "1.2.1"
|
|
2398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2399
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2400
|
+
|
|
2401
|
+
[[package]]
|
|
2402
|
+
name = "static_assertions"
|
|
2403
|
+
version = "1.1.0"
|
|
2404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2405
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
2406
|
+
|
|
2407
|
+
[[package]]
|
|
2408
|
+
name = "str_indices"
|
|
2409
|
+
version = "0.4.4"
|
|
2410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2411
|
+
checksum = "d08889ec5408683408db66ad89e0e1f93dff55c73a4ccc71c427d5b277ee47e6"
|
|
2412
|
+
|
|
2413
|
+
[[package]]
|
|
2414
|
+
name = "string_wizard"
|
|
2415
|
+
version = "1.2.6"
|
|
2416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2417
|
+
checksum = "d077f326ed6d8d0b9e116b17d31c07a6d3466201299b5d8eafb184953174b4bb"
|
|
2418
|
+
dependencies = [
|
|
2419
|
+
"memchr",
|
|
2420
|
+
"oxc_index",
|
|
2421
|
+
"oxc_sourcemap",
|
|
2422
|
+
"regex",
|
|
2423
|
+
"rustc-hash",
|
|
2424
|
+
"serde",
|
|
2425
|
+
]
|
|
2426
|
+
|
|
2427
|
+
[[package]]
|
|
2428
|
+
name = "strsim"
|
|
2429
|
+
version = "0.11.1"
|
|
2430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2431
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2432
|
+
|
|
2433
|
+
[[package]]
|
|
2434
|
+
name = "sugar_path"
|
|
2435
|
+
version = "3.0.0"
|
|
2436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2437
|
+
checksum = "b75b52e25042df94d848c33b7048a6726e728fa649c561c7510784ed11c1ffd2"
|
|
2438
|
+
dependencies = [
|
|
2439
|
+
"memchr",
|
|
2440
|
+
"smallvec",
|
|
2441
|
+
]
|
|
2442
|
+
|
|
2443
|
+
[[package]]
|
|
2444
|
+
name = "syn"
|
|
2445
|
+
version = "2.0.119"
|
|
2446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2447
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
2448
|
+
dependencies = [
|
|
2449
|
+
"proc-macro2",
|
|
2450
|
+
"quote",
|
|
2451
|
+
"unicode-ident",
|
|
2452
|
+
]
|
|
2453
|
+
|
|
2454
|
+
[[package]]
|
|
2455
|
+
name = "syn"
|
|
2456
|
+
version = "3.0.4"
|
|
2457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2458
|
+
checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
|
|
2459
|
+
dependencies = [
|
|
2460
|
+
"proc-macro2",
|
|
2461
|
+
"quote",
|
|
2462
|
+
"unicode-ident",
|
|
2463
|
+
]
|
|
2464
|
+
|
|
2465
|
+
[[package]]
|
|
2466
|
+
name = "synstructure"
|
|
2467
|
+
version = "0.13.2"
|
|
2468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2469
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2470
|
+
dependencies = [
|
|
2471
|
+
"proc-macro2",
|
|
2472
|
+
"quote",
|
|
2473
|
+
"syn 2.0.119",
|
|
2474
|
+
]
|
|
2475
|
+
|
|
2476
|
+
[[package]]
|
|
2477
|
+
name = "tempfile"
|
|
2478
|
+
version = "3.27.0"
|
|
2479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2480
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
2481
|
+
dependencies = [
|
|
2482
|
+
"fastrand",
|
|
2483
|
+
"getrandom",
|
|
2484
|
+
"once_cell",
|
|
2485
|
+
"rustix",
|
|
2486
|
+
"windows-sys",
|
|
2487
|
+
]
|
|
2488
|
+
|
|
2489
|
+
[[package]]
|
|
2490
|
+
name = "termcolor"
|
|
2491
|
+
version = "1.4.1"
|
|
2492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2493
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
2494
|
+
dependencies = [
|
|
2495
|
+
"winapi-util",
|
|
2496
|
+
]
|
|
2497
|
+
|
|
2498
|
+
[[package]]
|
|
2499
|
+
name = "textwrap"
|
|
2500
|
+
version = "0.16.2"
|
|
2501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2502
|
+
checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
|
|
2503
|
+
dependencies = [
|
|
2504
|
+
"smawk",
|
|
2505
|
+
"unicode-linebreak",
|
|
2506
|
+
"unicode-width",
|
|
2507
|
+
]
|
|
2508
|
+
|
|
2509
|
+
[[package]]
|
|
2510
|
+
name = "thiserror"
|
|
2511
|
+
version = "2.0.20"
|
|
2512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2513
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
2514
|
+
dependencies = [
|
|
2515
|
+
"thiserror-impl",
|
|
2516
|
+
]
|
|
2517
|
+
|
|
2518
|
+
[[package]]
|
|
2519
|
+
name = "thiserror-impl"
|
|
2520
|
+
version = "2.0.20"
|
|
2521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2522
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
2523
|
+
dependencies = [
|
|
2524
|
+
"proc-macro2",
|
|
2525
|
+
"quote",
|
|
2526
|
+
"syn 3.0.4",
|
|
2527
|
+
]
|
|
2528
|
+
|
|
2529
|
+
[[package]]
|
|
2530
|
+
name = "thread_local"
|
|
2531
|
+
version = "1.1.10"
|
|
2532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2533
|
+
checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
|
|
2534
|
+
dependencies = [
|
|
2535
|
+
"cfg-if",
|
|
2536
|
+
]
|
|
2537
|
+
|
|
2538
|
+
[[package]]
|
|
2539
|
+
name = "tinystr"
|
|
2540
|
+
version = "0.8.4"
|
|
2541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2542
|
+
checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
|
|
2543
|
+
dependencies = [
|
|
2544
|
+
"displaydoc",
|
|
2545
|
+
"zerovec",
|
|
2546
|
+
]
|
|
2547
|
+
|
|
2548
|
+
[[package]]
|
|
2549
|
+
name = "tokio"
|
|
2550
|
+
version = "1.53.1"
|
|
2551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
|
+
checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
|
|
2553
|
+
dependencies = [
|
|
2554
|
+
"pin-project-lite",
|
|
2555
|
+
"tokio-macros",
|
|
2556
|
+
]
|
|
2557
|
+
|
|
2558
|
+
[[package]]
|
|
2559
|
+
name = "tokio-macros"
|
|
2560
|
+
version = "2.7.2"
|
|
2561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2562
|
+
checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
|
|
2563
|
+
dependencies = [
|
|
2564
|
+
"proc-macro2",
|
|
2565
|
+
"quote",
|
|
2566
|
+
"syn 3.0.4",
|
|
2567
|
+
]
|
|
2568
|
+
|
|
2569
|
+
[[package]]
|
|
2570
|
+
name = "toml"
|
|
2571
|
+
version = "0.8.23"
|
|
2572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2573
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
2574
|
+
dependencies = [
|
|
2575
|
+
"serde",
|
|
2576
|
+
"serde_spanned",
|
|
2577
|
+
"toml_datetime",
|
|
2578
|
+
"toml_edit",
|
|
2579
|
+
]
|
|
2580
|
+
|
|
2581
|
+
[[package]]
|
|
2582
|
+
name = "toml_datetime"
|
|
2583
|
+
version = "0.6.11"
|
|
2584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2585
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
2586
|
+
dependencies = [
|
|
2587
|
+
"serde",
|
|
2588
|
+
]
|
|
2589
|
+
|
|
2590
|
+
[[package]]
|
|
2591
|
+
name = "toml_edit"
|
|
2592
|
+
version = "0.22.27"
|
|
2593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2594
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
2595
|
+
dependencies = [
|
|
2596
|
+
"indexmap",
|
|
2597
|
+
"serde",
|
|
2598
|
+
"serde_spanned",
|
|
2599
|
+
"toml_datetime",
|
|
2600
|
+
"toml_write",
|
|
2601
|
+
"winnow",
|
|
2602
|
+
]
|
|
2603
|
+
|
|
2604
|
+
[[package]]
|
|
2605
|
+
name = "toml_write"
|
|
2606
|
+
version = "0.1.2"
|
|
2607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2608
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
2609
|
+
|
|
2610
|
+
[[package]]
|
|
2611
|
+
name = "tracing"
|
|
2612
|
+
version = "0.1.44"
|
|
2613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2614
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
2615
|
+
dependencies = [
|
|
2616
|
+
"pin-project-lite",
|
|
2617
|
+
"tracing-attributes",
|
|
2618
|
+
"tracing-core",
|
|
2619
|
+
]
|
|
2620
|
+
|
|
2621
|
+
[[package]]
|
|
2622
|
+
name = "tracing-attributes"
|
|
2623
|
+
version = "0.1.31"
|
|
2624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2625
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
2626
|
+
dependencies = [
|
|
2627
|
+
"proc-macro2",
|
|
2628
|
+
"quote",
|
|
2629
|
+
"syn 2.0.119",
|
|
2630
|
+
]
|
|
2631
|
+
|
|
2632
|
+
[[package]]
|
|
2633
|
+
name = "tracing-core"
|
|
2634
|
+
version = "0.1.36"
|
|
2635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2636
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
2637
|
+
dependencies = [
|
|
2638
|
+
"once_cell",
|
|
2639
|
+
"valuable",
|
|
2640
|
+
]
|
|
2641
|
+
|
|
2642
|
+
[[package]]
|
|
2643
|
+
name = "tracing-serde"
|
|
2644
|
+
version = "0.2.0"
|
|
2645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2646
|
+
checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
|
|
2647
|
+
dependencies = [
|
|
2648
|
+
"serde",
|
|
2649
|
+
"tracing-core",
|
|
2650
|
+
]
|
|
2651
|
+
|
|
2652
|
+
[[package]]
|
|
2653
|
+
name = "tracing-subscriber"
|
|
2654
|
+
version = "0.3.23"
|
|
2655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2656
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
2657
|
+
dependencies = [
|
|
2658
|
+
"nu-ansi-term",
|
|
2659
|
+
"serde",
|
|
2660
|
+
"serde_json",
|
|
2661
|
+
"sharded-slab",
|
|
2662
|
+
"thread_local",
|
|
2663
|
+
"tracing-core",
|
|
2664
|
+
"tracing-serde",
|
|
2665
|
+
]
|
|
2666
|
+
|
|
2667
|
+
[[package]]
|
|
2668
|
+
name = "ts-rs"
|
|
2669
|
+
version = "12.0.1"
|
|
2670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2671
|
+
checksum = "756050066659291d47a554a9f558125db17428b073c5ffce1daf5dcb0f7231d8"
|
|
2672
|
+
dependencies = [
|
|
2673
|
+
"thiserror",
|
|
2674
|
+
"ts-rs-macros",
|
|
2675
|
+
]
|
|
2676
|
+
|
|
2677
|
+
[[package]]
|
|
2678
|
+
name = "ts-rs-macros"
|
|
2679
|
+
version = "12.0.1"
|
|
2680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2681
|
+
checksum = "38d90eea51bc7988ef9e674bf80a85ba6804739e535e9cab48e4bb34a8b652aa"
|
|
2682
|
+
dependencies = [
|
|
2683
|
+
"proc-macro2",
|
|
2684
|
+
"quote",
|
|
2685
|
+
"syn 2.0.119",
|
|
2686
|
+
"termcolor",
|
|
2687
|
+
]
|
|
2688
|
+
|
|
2689
|
+
[[package]]
|
|
2690
|
+
name = "typedmap"
|
|
2691
|
+
version = "0.6.0"
|
|
2692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2693
|
+
checksum = "63278e72ed4f207eb3216c944cbafb35bdb656d2eab97ef73c0c165a1cd3e319"
|
|
2694
|
+
|
|
2695
|
+
[[package]]
|
|
2696
|
+
name = "unicode-id-start"
|
|
2697
|
+
version = "1.4.0"
|
|
2698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2699
|
+
checksum = "81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007"
|
|
2700
|
+
|
|
2701
|
+
[[package]]
|
|
2702
|
+
name = "unicode-ident"
|
|
2703
|
+
version = "1.0.24"
|
|
2704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2705
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
2706
|
+
|
|
2707
|
+
[[package]]
|
|
2708
|
+
name = "unicode-linebreak"
|
|
2709
|
+
version = "0.1.5"
|
|
2710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2711
|
+
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
|
|
2712
|
+
|
|
2713
|
+
[[package]]
|
|
2714
|
+
name = "unicode-segmentation"
|
|
2715
|
+
version = "1.13.3"
|
|
2716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2717
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
2718
|
+
|
|
2719
|
+
[[package]]
|
|
2720
|
+
name = "unicode-width"
|
|
2721
|
+
version = "0.2.2"
|
|
2722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2723
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
2724
|
+
|
|
2725
|
+
[[package]]
|
|
2726
|
+
name = "unicode-xid"
|
|
2727
|
+
version = "0.2.6"
|
|
2728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2729
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
2730
|
+
|
|
2731
|
+
[[package]]
|
|
2732
|
+
name = "url"
|
|
2733
|
+
version = "2.5.8"
|
|
2734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2735
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2736
|
+
dependencies = [
|
|
2737
|
+
"form_urlencoded",
|
|
2738
|
+
"idna",
|
|
2739
|
+
"percent-encoding",
|
|
2740
|
+
"serde",
|
|
2741
|
+
]
|
|
2742
|
+
|
|
2743
|
+
[[package]]
|
|
2744
|
+
name = "utf8_iter"
|
|
2745
|
+
version = "1.0.4"
|
|
2746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2747
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2748
|
+
|
|
2749
|
+
[[package]]
|
|
2750
|
+
name = "utf8parse"
|
|
2751
|
+
version = "0.2.2"
|
|
2752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2753
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
2754
|
+
|
|
2755
|
+
[[package]]
|
|
2756
|
+
name = "uuid"
|
|
2757
|
+
version = "1.26.0"
|
|
2758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2759
|
+
checksum = "b5772d71c9be8a8a6ac2117d949c5b224c1b72241bb611d9a3012edcf8af7812"
|
|
2760
|
+
dependencies = [
|
|
2761
|
+
"getrandom",
|
|
2762
|
+
"js-sys",
|
|
2763
|
+
"wasm-bindgen",
|
|
2764
|
+
]
|
|
2765
|
+
|
|
2766
|
+
[[package]]
|
|
2767
|
+
name = "valuable"
|
|
2768
|
+
version = "0.1.1"
|
|
2769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2770
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
2771
|
+
|
|
2772
|
+
[[package]]
|
|
2773
|
+
name = "value-trait"
|
|
2774
|
+
version = "0.12.2"
|
|
2775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2776
|
+
checksum = "f3f4b4a98dfe54bc9ed3641af7ffcb837240269627dbd5cb047d13daa39736cc"
|
|
2777
|
+
dependencies = [
|
|
2778
|
+
"float-cmp",
|
|
2779
|
+
"halfbrown",
|
|
2780
|
+
"itoa",
|
|
2781
|
+
"ryu",
|
|
2782
|
+
]
|
|
2783
|
+
|
|
2784
|
+
[[package]]
|
|
2785
|
+
name = "vfs"
|
|
2786
|
+
version = "0.13.0"
|
|
2787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2788
|
+
checksum = "69d33cbe2ac48f2a446f04c33aef4906078ffd224888df5ae60b7ed401ded771"
|
|
2789
|
+
dependencies = [
|
|
2790
|
+
"filetime",
|
|
2791
|
+
]
|
|
2792
|
+
|
|
2793
|
+
[[package]]
|
|
2794
|
+
name = "vsimd"
|
|
2795
|
+
version = "0.8.0"
|
|
2796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2797
|
+
checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
|
|
2798
|
+
|
|
2799
|
+
[[package]]
|
|
2800
|
+
name = "wasm-bindgen"
|
|
2801
|
+
version = "0.2.127"
|
|
2802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2803
|
+
checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
|
|
2804
|
+
dependencies = [
|
|
2805
|
+
"cfg-if",
|
|
2806
|
+
"once_cell",
|
|
2807
|
+
"rustversion",
|
|
2808
|
+
"wasm-bindgen-macro",
|
|
2809
|
+
"wasm-bindgen-shared",
|
|
2810
|
+
]
|
|
2811
|
+
|
|
2812
|
+
[[package]]
|
|
2813
|
+
name = "wasm-bindgen-macro"
|
|
2814
|
+
version = "0.2.127"
|
|
2815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2816
|
+
checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
|
|
2817
|
+
dependencies = [
|
|
2818
|
+
"quote",
|
|
2819
|
+
"wasm-bindgen-macro-support",
|
|
2820
|
+
]
|
|
2821
|
+
|
|
2822
|
+
[[package]]
|
|
2823
|
+
name = "wasm-bindgen-macro-support"
|
|
2824
|
+
version = "0.2.127"
|
|
2825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2826
|
+
checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
|
|
2827
|
+
dependencies = [
|
|
2828
|
+
"bumpalo",
|
|
2829
|
+
"proc-macro2",
|
|
2830
|
+
"quote",
|
|
2831
|
+
"syn 2.0.119",
|
|
2832
|
+
"wasm-bindgen-shared",
|
|
2833
|
+
]
|
|
2834
|
+
|
|
2835
|
+
[[package]]
|
|
2836
|
+
name = "wasm-bindgen-shared"
|
|
2837
|
+
version = "0.2.127"
|
|
2838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2839
|
+
checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
|
|
2840
|
+
dependencies = [
|
|
2841
|
+
"unicode-ident",
|
|
2842
|
+
]
|
|
2843
|
+
|
|
2844
|
+
[[package]]
|
|
2845
|
+
name = "winapi-util"
|
|
2846
|
+
version = "0.1.11"
|
|
2847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2848
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
2849
|
+
dependencies = [
|
|
2850
|
+
"windows-sys",
|
|
2851
|
+
]
|
|
2852
|
+
|
|
2853
|
+
[[package]]
|
|
2854
|
+
name = "windows"
|
|
2855
|
+
version = "0.62.2"
|
|
2856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2857
|
+
checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
|
|
2858
|
+
dependencies = [
|
|
2859
|
+
"windows-collections",
|
|
2860
|
+
"windows-core",
|
|
2861
|
+
"windows-future",
|
|
2862
|
+
"windows-numerics",
|
|
2863
|
+
]
|
|
2864
|
+
|
|
2865
|
+
[[package]]
|
|
2866
|
+
name = "windows-collections"
|
|
2867
|
+
version = "0.3.2"
|
|
2868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2869
|
+
checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
|
|
2870
|
+
dependencies = [
|
|
2871
|
+
"windows-core",
|
|
2872
|
+
]
|
|
2873
|
+
|
|
2874
|
+
[[package]]
|
|
2875
|
+
name = "windows-core"
|
|
2876
|
+
version = "0.62.2"
|
|
2877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2878
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
2879
|
+
dependencies = [
|
|
2880
|
+
"windows-implement",
|
|
2881
|
+
"windows-interface",
|
|
2882
|
+
"windows-link",
|
|
2883
|
+
"windows-result",
|
|
2884
|
+
"windows-strings",
|
|
2885
|
+
]
|
|
2886
|
+
|
|
2887
|
+
[[package]]
|
|
2888
|
+
name = "windows-future"
|
|
2889
|
+
version = "0.3.2"
|
|
2890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2891
|
+
checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
|
|
2892
|
+
dependencies = [
|
|
2893
|
+
"windows-core",
|
|
2894
|
+
"windows-link",
|
|
2895
|
+
"windows-threading",
|
|
2896
|
+
]
|
|
2897
|
+
|
|
2898
|
+
[[package]]
|
|
2899
|
+
name = "windows-implement"
|
|
2900
|
+
version = "0.60.2"
|
|
2901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2902
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
2903
|
+
dependencies = [
|
|
2904
|
+
"proc-macro2",
|
|
2905
|
+
"quote",
|
|
2906
|
+
"syn 2.0.119",
|
|
2907
|
+
]
|
|
2908
|
+
|
|
2909
|
+
[[package]]
|
|
2910
|
+
name = "windows-interface"
|
|
2911
|
+
version = "0.59.3"
|
|
2912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2913
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
2914
|
+
dependencies = [
|
|
2915
|
+
"proc-macro2",
|
|
2916
|
+
"quote",
|
|
2917
|
+
"syn 2.0.119",
|
|
2918
|
+
]
|
|
2919
|
+
|
|
2920
|
+
[[package]]
|
|
2921
|
+
name = "windows-link"
|
|
2922
|
+
version = "0.2.1"
|
|
2923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2924
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2925
|
+
|
|
2926
|
+
[[package]]
|
|
2927
|
+
name = "windows-numerics"
|
|
2928
|
+
version = "0.3.1"
|
|
2929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2930
|
+
checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
|
|
2931
|
+
dependencies = [
|
|
2932
|
+
"windows-core",
|
|
2933
|
+
"windows-link",
|
|
2934
|
+
]
|
|
2935
|
+
|
|
2936
|
+
[[package]]
|
|
2937
|
+
name = "windows-result"
|
|
2938
|
+
version = "0.4.1"
|
|
2939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2940
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
2941
|
+
dependencies = [
|
|
2942
|
+
"windows-link",
|
|
2943
|
+
]
|
|
2944
|
+
|
|
2945
|
+
[[package]]
|
|
2946
|
+
name = "windows-strings"
|
|
2947
|
+
version = "0.5.1"
|
|
2948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2949
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
2950
|
+
dependencies = [
|
|
2951
|
+
"windows-link",
|
|
2952
|
+
]
|
|
2953
|
+
|
|
2954
|
+
[[package]]
|
|
2955
|
+
name = "windows-sys"
|
|
2956
|
+
version = "0.61.2"
|
|
2957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2958
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2959
|
+
dependencies = [
|
|
2960
|
+
"windows-link",
|
|
2961
|
+
]
|
|
2962
|
+
|
|
2963
|
+
[[package]]
|
|
2964
|
+
name = "windows-threading"
|
|
2965
|
+
version = "0.2.1"
|
|
2966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2967
|
+
checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
|
|
2968
|
+
dependencies = [
|
|
2969
|
+
"windows-link",
|
|
2970
|
+
]
|
|
2971
|
+
|
|
2972
|
+
[[package]]
|
|
2973
|
+
name = "winnow"
|
|
2974
|
+
version = "0.7.15"
|
|
2975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2976
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
2977
|
+
dependencies = [
|
|
2978
|
+
"memchr",
|
|
2979
|
+
]
|
|
2980
|
+
|
|
2981
|
+
[[package]]
|
|
2982
|
+
name = "writeable"
|
|
2983
|
+
version = "0.6.4"
|
|
2984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2985
|
+
checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
|
|
2986
|
+
|
|
2987
|
+
[[package]]
|
|
2988
|
+
name = "xxhash-rust"
|
|
2989
|
+
version = "0.8.18"
|
|
2990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2991
|
+
checksum = "aee1b19627c7c60102ab80d3a9cbe18de90bfe03bfa6c3715447681f0e8c8af6"
|
|
2992
|
+
|
|
2993
|
+
[[package]]
|
|
2994
|
+
name = "yansi"
|
|
2995
|
+
version = "1.0.1"
|
|
2996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2997
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
2998
|
+
|
|
2999
|
+
[[package]]
|
|
3000
|
+
name = "yoke"
|
|
3001
|
+
version = "0.8.3"
|
|
3002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3003
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
3004
|
+
dependencies = [
|
|
3005
|
+
"stable_deref_trait",
|
|
3006
|
+
"yoke-derive",
|
|
3007
|
+
"zerofrom",
|
|
3008
|
+
]
|
|
3009
|
+
|
|
3010
|
+
[[package]]
|
|
3011
|
+
name = "yoke-derive"
|
|
3012
|
+
version = "0.8.2"
|
|
3013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3014
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
3015
|
+
dependencies = [
|
|
3016
|
+
"proc-macro2",
|
|
3017
|
+
"quote",
|
|
3018
|
+
"syn 2.0.119",
|
|
3019
|
+
"synstructure",
|
|
3020
|
+
]
|
|
3021
|
+
|
|
3022
|
+
[[package]]
|
|
3023
|
+
name = "zerofrom"
|
|
3024
|
+
version = "0.1.8"
|
|
3025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3026
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
3027
|
+
dependencies = [
|
|
3028
|
+
"zerofrom-derive",
|
|
3029
|
+
]
|
|
3030
|
+
|
|
3031
|
+
[[package]]
|
|
3032
|
+
name = "zerofrom-derive"
|
|
3033
|
+
version = "0.1.7"
|
|
3034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3035
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
3036
|
+
dependencies = [
|
|
3037
|
+
"proc-macro2",
|
|
3038
|
+
"quote",
|
|
3039
|
+
"syn 2.0.119",
|
|
3040
|
+
"synstructure",
|
|
3041
|
+
]
|
|
3042
|
+
|
|
3043
|
+
[[package]]
|
|
3044
|
+
name = "zerotrie"
|
|
3045
|
+
version = "0.2.5"
|
|
3046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3047
|
+
checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
|
|
3048
|
+
dependencies = [
|
|
3049
|
+
"displaydoc",
|
|
3050
|
+
"yoke",
|
|
3051
|
+
"zerofrom",
|
|
3052
|
+
]
|
|
3053
|
+
|
|
3054
|
+
[[package]]
|
|
3055
|
+
name = "zerovec"
|
|
3056
|
+
version = "0.11.8"
|
|
3057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3058
|
+
checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8"
|
|
3059
|
+
dependencies = [
|
|
3060
|
+
"yoke",
|
|
3061
|
+
"zerofrom",
|
|
3062
|
+
"zerovec-derive",
|
|
3063
|
+
]
|
|
3064
|
+
|
|
3065
|
+
[[package]]
|
|
3066
|
+
name = "zerovec-derive"
|
|
3067
|
+
version = "0.11.6"
|
|
3068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3069
|
+
checksum = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da"
|
|
3070
|
+
dependencies = [
|
|
3071
|
+
"proc-macro2",
|
|
3072
|
+
"quote",
|
|
3073
|
+
"syn 3.0.4",
|
|
3074
|
+
]
|
|
3075
|
+
|
|
3076
|
+
[[package]]
|
|
3077
|
+
name = "zlib-rs"
|
|
3078
|
+
version = "0.6.7"
|
|
3079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3080
|
+
checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12"
|
|
3081
|
+
|
|
3082
|
+
[[package]]
|
|
3083
|
+
name = "zmij"
|
|
3084
|
+
version = "1.0.23"
|
|
3085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3086
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|