flarelint 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cargo.lock +1082 -0
- package/Cargo.toml +32 -0
- package/LICENSE-APACHE +176 -0
- package/LICENSE-MIT +21 -0
- package/README.md +165 -0
- package/bin/flarelint.js +78 -0
- package/package.json +52 -0
- package/scripts/postinstall.mjs +83 -0
- package/src/config.rs +197 -0
- package/src/diagnostics.rs +146 -0
- package/src/formatter.rs +129 -0
- package/src/lib.rs +9 -0
- package/src/main.rs +178 -0
- package/src/parser.rs +215 -0
- package/src/rules/do_storage.rs +400 -0
- package/src/rules/mod.rs +120 -0
- package/src/rules/node_compat.rs +501 -0
- package/src/rules/routes.rs +268 -0
- package/src/rules/waituntil.rs +400 -0
package/Cargo.lock
ADDED
|
@@ -0,0 +1,1082 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "allocator-api2"
|
|
7
|
+
version = "0.2.21"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "anstream"
|
|
13
|
+
version = "1.0.0"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"anstyle",
|
|
18
|
+
"anstyle-parse",
|
|
19
|
+
"anstyle-query",
|
|
20
|
+
"anstyle-wincon",
|
|
21
|
+
"colorchoice",
|
|
22
|
+
"is_terminal_polyfill",
|
|
23
|
+
"utf8parse",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anstyle"
|
|
28
|
+
version = "1.0.14"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "anstyle-parse"
|
|
34
|
+
version = "1.0.0"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"utf8parse",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstyle-query"
|
|
43
|
+
version = "1.1.5"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"windows-sys 0.61.2",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle-wincon"
|
|
52
|
+
version = "3.0.11"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"anstyle",
|
|
57
|
+
"once_cell_polyfill",
|
|
58
|
+
"windows-sys 0.61.2",
|
|
59
|
+
]
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "anyhow"
|
|
63
|
+
version = "1.0.104"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "assert-unchecked"
|
|
69
|
+
version = "0.1.2"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "7330592adf847ee2e3513587b4db2db410a0d751378654e7e993d9adcbe5c795"
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "autocfg"
|
|
75
|
+
version = "1.5.1"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "bitflags"
|
|
81
|
+
version = "2.13.1"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "bumpalo"
|
|
87
|
+
version = "3.20.3"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"allocator-api2",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "castaway"
|
|
96
|
+
version = "0.2.4"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"rustversion",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "cfg-if"
|
|
105
|
+
version = "1.0.4"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "clap"
|
|
111
|
+
version = "4.6.6"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"clap_builder",
|
|
116
|
+
"clap_derive",
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "clap_builder"
|
|
121
|
+
version = "4.6.6"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
|
|
124
|
+
dependencies = [
|
|
125
|
+
"anstream",
|
|
126
|
+
"anstyle",
|
|
127
|
+
"clap_lex",
|
|
128
|
+
"strsim",
|
|
129
|
+
]
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "clap_complete"
|
|
133
|
+
version = "4.6.9"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "3be2ad0423bdbbb0e25bc89add796f3559706d4a95e1bc98e4d9662a957b6a19"
|
|
136
|
+
dependencies = [
|
|
137
|
+
"clap",
|
|
138
|
+
]
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "clap_derive"
|
|
142
|
+
version = "4.6.4"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
|
|
145
|
+
dependencies = [
|
|
146
|
+
"heck",
|
|
147
|
+
"proc-macro2",
|
|
148
|
+
"quote",
|
|
149
|
+
"syn 3.0.4",
|
|
150
|
+
]
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "clap_lex"
|
|
154
|
+
version = "1.1.0"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "colorchoice"
|
|
160
|
+
version = "1.0.5"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "colored"
|
|
166
|
+
version = "2.2.0"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
|
|
169
|
+
dependencies = [
|
|
170
|
+
"lazy_static",
|
|
171
|
+
"windows-sys 0.59.0",
|
|
172
|
+
]
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "comfy-table"
|
|
176
|
+
version = "7.2.2"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"crossterm",
|
|
181
|
+
"unicode-segmentation",
|
|
182
|
+
"unicode-width",
|
|
183
|
+
]
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "compact_str"
|
|
187
|
+
version = "0.8.2"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "7fd622ebbb56a5b2ccb651b32b911cdeb2a9b4b11776b2473bf26a26a286244e"
|
|
190
|
+
dependencies = [
|
|
191
|
+
"castaway",
|
|
192
|
+
"cfg-if",
|
|
193
|
+
"itoa",
|
|
194
|
+
"rustversion",
|
|
195
|
+
"ryu",
|
|
196
|
+
"static_assertions",
|
|
197
|
+
]
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "cow-utils"
|
|
201
|
+
version = "0.1.3"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "crossterm"
|
|
207
|
+
version = "0.29.0"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
|
|
210
|
+
dependencies = [
|
|
211
|
+
"bitflags",
|
|
212
|
+
"crossterm_winapi",
|
|
213
|
+
"document-features",
|
|
214
|
+
"parking_lot",
|
|
215
|
+
"rustix",
|
|
216
|
+
"winapi",
|
|
217
|
+
]
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "crossterm_winapi"
|
|
221
|
+
version = "0.9.1"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
224
|
+
dependencies = [
|
|
225
|
+
"winapi",
|
|
226
|
+
]
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "document-features"
|
|
230
|
+
version = "0.2.12"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
233
|
+
dependencies = [
|
|
234
|
+
"litrs",
|
|
235
|
+
]
|
|
236
|
+
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "errno"
|
|
239
|
+
version = "0.3.14"
|
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
242
|
+
dependencies = [
|
|
243
|
+
"libc",
|
|
244
|
+
"windows-sys 0.61.2",
|
|
245
|
+
]
|
|
246
|
+
|
|
247
|
+
[[package]]
|
|
248
|
+
name = "fastrand"
|
|
249
|
+
version = "2.5.0"
|
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "flarelint"
|
|
255
|
+
version = "0.1.0"
|
|
256
|
+
dependencies = [
|
|
257
|
+
"anyhow",
|
|
258
|
+
"clap",
|
|
259
|
+
"clap_complete",
|
|
260
|
+
"colored",
|
|
261
|
+
"comfy-table",
|
|
262
|
+
"oxc_allocator",
|
|
263
|
+
"oxc_ast",
|
|
264
|
+
"oxc_parser",
|
|
265
|
+
"oxc_span",
|
|
266
|
+
"serde",
|
|
267
|
+
"serde_json",
|
|
268
|
+
"tempfile",
|
|
269
|
+
"thiserror 2.0.20",
|
|
270
|
+
"walkdir",
|
|
271
|
+
]
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "getrandom"
|
|
275
|
+
version = "0.4.3"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
278
|
+
dependencies = [
|
|
279
|
+
"cfg-if",
|
|
280
|
+
"libc",
|
|
281
|
+
"r-efi",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "hashbrown"
|
|
286
|
+
version = "0.15.5"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"allocator-api2",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "heck"
|
|
295
|
+
version = "0.5.0"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "is_terminal_polyfill"
|
|
301
|
+
version = "1.70.2"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
304
|
+
|
|
305
|
+
[[package]]
|
|
306
|
+
name = "itoa"
|
|
307
|
+
version = "1.0.18"
|
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "lazy_static"
|
|
313
|
+
version = "1.5.0"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "libc"
|
|
319
|
+
version = "0.2.189"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "linux-raw-sys"
|
|
325
|
+
version = "0.12.1"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "litrs"
|
|
331
|
+
version = "1.0.0"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "lock_api"
|
|
337
|
+
version = "0.4.14"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
340
|
+
dependencies = [
|
|
341
|
+
"scopeguard",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "memchr"
|
|
346
|
+
version = "2.8.3"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
349
|
+
|
|
350
|
+
[[package]]
|
|
351
|
+
name = "nonmax"
|
|
352
|
+
version = "0.5.5"
|
|
353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
+
checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "num-bigint"
|
|
358
|
+
version = "0.4.8"
|
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
+
checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
|
|
361
|
+
dependencies = [
|
|
362
|
+
"num-integer",
|
|
363
|
+
"num-traits",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "num-integer"
|
|
368
|
+
version = "0.1.47"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
|
|
371
|
+
dependencies = [
|
|
372
|
+
"num-traits",
|
|
373
|
+
]
|
|
374
|
+
|
|
375
|
+
[[package]]
|
|
376
|
+
name = "num-traits"
|
|
377
|
+
version = "0.2.19"
|
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
380
|
+
dependencies = [
|
|
381
|
+
"autocfg",
|
|
382
|
+
]
|
|
383
|
+
|
|
384
|
+
[[package]]
|
|
385
|
+
name = "once_cell"
|
|
386
|
+
version = "1.21.4"
|
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
389
|
+
|
|
390
|
+
[[package]]
|
|
391
|
+
name = "once_cell_polyfill"
|
|
392
|
+
version = "1.70.2"
|
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "owo-colors"
|
|
398
|
+
version = "4.3.0"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d"
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "oxc-miette"
|
|
404
|
+
version = "1.0.2"
|
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
+
checksum = "e03e63fd113c068b82d07c9c614b0b146c08a3ac0a4dface3ea1d1a9d14d549e"
|
|
407
|
+
dependencies = [
|
|
408
|
+
"cfg-if",
|
|
409
|
+
"owo-colors",
|
|
410
|
+
"oxc-miette-derive",
|
|
411
|
+
"textwrap",
|
|
412
|
+
"thiserror 1.0.69",
|
|
413
|
+
"unicode-width",
|
|
414
|
+
]
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "oxc-miette-derive"
|
|
418
|
+
version = "1.0.2"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "e21f680e8c5f1900297d394627d495351b9e37761f7bbf90116bd5eeb6e80967"
|
|
421
|
+
dependencies = [
|
|
422
|
+
"proc-macro2",
|
|
423
|
+
"quote",
|
|
424
|
+
"syn 2.0.119",
|
|
425
|
+
]
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "oxc_allocator"
|
|
429
|
+
version = "0.48.2"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "17374a91329f2e362bc8be31cb3e171ef226777d0ea668e17a39620443693027"
|
|
432
|
+
dependencies = [
|
|
433
|
+
"allocator-api2",
|
|
434
|
+
"bumpalo",
|
|
435
|
+
"hashbrown",
|
|
436
|
+
"rustc-hash",
|
|
437
|
+
"simdutf8",
|
|
438
|
+
]
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "oxc_ast"
|
|
442
|
+
version = "0.48.2"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "21b38cfe954ee987354af015020f5cb2723df6fed6cd688eff24388437c7eb7e"
|
|
445
|
+
dependencies = [
|
|
446
|
+
"bitflags",
|
|
447
|
+
"cow-utils",
|
|
448
|
+
"num-bigint",
|
|
449
|
+
"num-traits",
|
|
450
|
+
"oxc_allocator",
|
|
451
|
+
"oxc_ast_macros",
|
|
452
|
+
"oxc_estree",
|
|
453
|
+
"oxc_regular_expression",
|
|
454
|
+
"oxc_span",
|
|
455
|
+
"oxc_syntax",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "oxc_ast_macros"
|
|
460
|
+
version = "0.48.2"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "85f9e03eff90b041078edcc8aff09457eb4126fa5d62a383fdb082d3ae286274"
|
|
463
|
+
dependencies = [
|
|
464
|
+
"proc-macro2",
|
|
465
|
+
"quote",
|
|
466
|
+
"syn 2.0.119",
|
|
467
|
+
]
|
|
468
|
+
|
|
469
|
+
[[package]]
|
|
470
|
+
name = "oxc_diagnostics"
|
|
471
|
+
version = "0.48.2"
|
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
|
+
checksum = "a24c41929c1910d83fb6f4c508190a8b2d1bad02e81c8cb3a9d3f474ca0ad2c1"
|
|
474
|
+
dependencies = [
|
|
475
|
+
"cow-utils",
|
|
476
|
+
"oxc-miette",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "oxc_ecmascript"
|
|
481
|
+
version = "0.48.2"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "30fba86c97b571671f941b818e6831ba821aac398b9f6f3b4e3367ca264b8324"
|
|
484
|
+
dependencies = [
|
|
485
|
+
"num-bigint",
|
|
486
|
+
"num-traits",
|
|
487
|
+
"oxc_ast",
|
|
488
|
+
"oxc_span",
|
|
489
|
+
"oxc_syntax",
|
|
490
|
+
]
|
|
491
|
+
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "oxc_estree"
|
|
494
|
+
version = "0.48.2"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "e587034bb5f108dd987e5419a4ad35a173550bd9439fc2b610d34e4ce41e8b23"
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "oxc_index"
|
|
500
|
+
version = "2.0.0"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "5eca5d9726cd0a6e433debe003b7bc88b2ecad0bb6109f0cef7c55e692139a34"
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "oxc_parser"
|
|
506
|
+
version = "0.48.2"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "8dc385aca3586877f8c918aed1141b885dedcfc1019d6ea5be4105f8e2a7965e"
|
|
509
|
+
dependencies = [
|
|
510
|
+
"assert-unchecked",
|
|
511
|
+
"bitflags",
|
|
512
|
+
"cow-utils",
|
|
513
|
+
"memchr",
|
|
514
|
+
"num-bigint",
|
|
515
|
+
"num-traits",
|
|
516
|
+
"oxc_allocator",
|
|
517
|
+
"oxc_ast",
|
|
518
|
+
"oxc_diagnostics",
|
|
519
|
+
"oxc_ecmascript",
|
|
520
|
+
"oxc_regular_expression",
|
|
521
|
+
"oxc_span",
|
|
522
|
+
"oxc_syntax",
|
|
523
|
+
"rustc-hash",
|
|
524
|
+
"seq-macro",
|
|
525
|
+
]
|
|
526
|
+
|
|
527
|
+
[[package]]
|
|
528
|
+
name = "oxc_regular_expression"
|
|
529
|
+
version = "0.48.2"
|
|
530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
+
checksum = "f8d172402f6d542ab2837d35126cc42ad6989b9c2289b06bc5c8c89dceb60c48"
|
|
532
|
+
dependencies = [
|
|
533
|
+
"oxc_allocator",
|
|
534
|
+
"oxc_ast_macros",
|
|
535
|
+
"oxc_diagnostics",
|
|
536
|
+
"oxc_estree",
|
|
537
|
+
"oxc_span",
|
|
538
|
+
"phf",
|
|
539
|
+
"rustc-hash",
|
|
540
|
+
"unicode-id-start",
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "oxc_span"
|
|
545
|
+
version = "0.48.2"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "75881376dfdbb6a23f12a66794904f0d215629f208edcf7e156c0770e89e2101"
|
|
548
|
+
dependencies = [
|
|
549
|
+
"compact_str",
|
|
550
|
+
"oxc-miette",
|
|
551
|
+
"oxc_allocator",
|
|
552
|
+
"oxc_ast_macros",
|
|
553
|
+
"oxc_estree",
|
|
554
|
+
]
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "oxc_syntax"
|
|
558
|
+
version = "0.48.2"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "c6d88037a5de07f66299ab523a65545cc48d550658cea8cadcea09b60596dd49"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"assert-unchecked",
|
|
563
|
+
"bitflags",
|
|
564
|
+
"cow-utils",
|
|
565
|
+
"nonmax",
|
|
566
|
+
"oxc_allocator",
|
|
567
|
+
"oxc_ast_macros",
|
|
568
|
+
"oxc_estree",
|
|
569
|
+
"oxc_index",
|
|
570
|
+
"oxc_span",
|
|
571
|
+
"phf",
|
|
572
|
+
"rustc-hash",
|
|
573
|
+
"ryu-js",
|
|
574
|
+
"unicode-id-start",
|
|
575
|
+
]
|
|
576
|
+
|
|
577
|
+
[[package]]
|
|
578
|
+
name = "parking_lot"
|
|
579
|
+
version = "0.12.5"
|
|
580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
581
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
582
|
+
dependencies = [
|
|
583
|
+
"lock_api",
|
|
584
|
+
"parking_lot_core",
|
|
585
|
+
]
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "parking_lot_core"
|
|
589
|
+
version = "0.9.12"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
592
|
+
dependencies = [
|
|
593
|
+
"cfg-if",
|
|
594
|
+
"libc",
|
|
595
|
+
"redox_syscall",
|
|
596
|
+
"smallvec",
|
|
597
|
+
"windows-link",
|
|
598
|
+
]
|
|
599
|
+
|
|
600
|
+
[[package]]
|
|
601
|
+
name = "phf"
|
|
602
|
+
version = "0.11.3"
|
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
605
|
+
dependencies = [
|
|
606
|
+
"phf_macros",
|
|
607
|
+
"phf_shared",
|
|
608
|
+
]
|
|
609
|
+
|
|
610
|
+
[[package]]
|
|
611
|
+
name = "phf_generator"
|
|
612
|
+
version = "0.11.3"
|
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
615
|
+
dependencies = [
|
|
616
|
+
"phf_shared",
|
|
617
|
+
"rand",
|
|
618
|
+
]
|
|
619
|
+
|
|
620
|
+
[[package]]
|
|
621
|
+
name = "phf_macros"
|
|
622
|
+
version = "0.11.3"
|
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
+
checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
|
|
625
|
+
dependencies = [
|
|
626
|
+
"phf_generator",
|
|
627
|
+
"phf_shared",
|
|
628
|
+
"proc-macro2",
|
|
629
|
+
"quote",
|
|
630
|
+
"syn 2.0.119",
|
|
631
|
+
]
|
|
632
|
+
|
|
633
|
+
[[package]]
|
|
634
|
+
name = "phf_shared"
|
|
635
|
+
version = "0.11.3"
|
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
637
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
638
|
+
dependencies = [
|
|
639
|
+
"siphasher",
|
|
640
|
+
]
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "proc-macro2"
|
|
644
|
+
version = "1.0.107"
|
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
647
|
+
dependencies = [
|
|
648
|
+
"unicode-ident",
|
|
649
|
+
]
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "quote"
|
|
653
|
+
version = "1.0.47"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
656
|
+
dependencies = [
|
|
657
|
+
"proc-macro2",
|
|
658
|
+
]
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "r-efi"
|
|
662
|
+
version = "6.0.0"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "rand"
|
|
668
|
+
version = "0.8.7"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
|
|
671
|
+
dependencies = [
|
|
672
|
+
"rand_core",
|
|
673
|
+
]
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "rand_core"
|
|
677
|
+
version = "0.6.4"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
680
|
+
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "redox_syscall"
|
|
683
|
+
version = "0.5.18"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
686
|
+
dependencies = [
|
|
687
|
+
"bitflags",
|
|
688
|
+
]
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "rustc-hash"
|
|
692
|
+
version = "2.1.3"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "rustix"
|
|
698
|
+
version = "1.1.4"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
701
|
+
dependencies = [
|
|
702
|
+
"bitflags",
|
|
703
|
+
"errno",
|
|
704
|
+
"libc",
|
|
705
|
+
"linux-raw-sys",
|
|
706
|
+
"windows-sys 0.61.2",
|
|
707
|
+
]
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "rustversion"
|
|
711
|
+
version = "1.0.23"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "ryu"
|
|
717
|
+
version = "1.0.23"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "ryu-js"
|
|
723
|
+
version = "1.0.3"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "04d056b875a9d2e6cb9a61d127afee9ac5999b9f87bcb32079d1318e505be714"
|
|
726
|
+
|
|
727
|
+
[[package]]
|
|
728
|
+
name = "same-file"
|
|
729
|
+
version = "1.0.6"
|
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
732
|
+
dependencies = [
|
|
733
|
+
"winapi-util",
|
|
734
|
+
]
|
|
735
|
+
|
|
736
|
+
[[package]]
|
|
737
|
+
name = "scopeguard"
|
|
738
|
+
version = "1.2.0"
|
|
739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
741
|
+
|
|
742
|
+
[[package]]
|
|
743
|
+
name = "seq-macro"
|
|
744
|
+
version = "0.3.6"
|
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
747
|
+
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "serde"
|
|
750
|
+
version = "1.0.229"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
753
|
+
dependencies = [
|
|
754
|
+
"serde_core",
|
|
755
|
+
"serde_derive",
|
|
756
|
+
]
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "serde_core"
|
|
760
|
+
version = "1.0.229"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
763
|
+
dependencies = [
|
|
764
|
+
"serde_derive",
|
|
765
|
+
]
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "serde_derive"
|
|
769
|
+
version = "1.0.229"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
772
|
+
dependencies = [
|
|
773
|
+
"proc-macro2",
|
|
774
|
+
"quote",
|
|
775
|
+
"syn 3.0.4",
|
|
776
|
+
]
|
|
777
|
+
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "serde_json"
|
|
780
|
+
version = "1.0.151"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
783
|
+
dependencies = [
|
|
784
|
+
"itoa",
|
|
785
|
+
"memchr",
|
|
786
|
+
"serde",
|
|
787
|
+
"serde_core",
|
|
788
|
+
"zmij",
|
|
789
|
+
]
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "simdutf8"
|
|
793
|
+
version = "0.1.5"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
796
|
+
|
|
797
|
+
[[package]]
|
|
798
|
+
name = "siphasher"
|
|
799
|
+
version = "1.0.3"
|
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
802
|
+
|
|
803
|
+
[[package]]
|
|
804
|
+
name = "smallvec"
|
|
805
|
+
version = "1.15.2"
|
|
806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "smawk"
|
|
811
|
+
version = "0.3.3"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "e8e2fb0f499abb4d162f2bedad68f5ef91a1682b5a03596ddb67efd37768d100"
|
|
814
|
+
|
|
815
|
+
[[package]]
|
|
816
|
+
name = "static_assertions"
|
|
817
|
+
version = "1.1.0"
|
|
818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "strsim"
|
|
823
|
+
version = "0.11.1"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
826
|
+
|
|
827
|
+
[[package]]
|
|
828
|
+
name = "syn"
|
|
829
|
+
version = "2.0.119"
|
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
832
|
+
dependencies = [
|
|
833
|
+
"proc-macro2",
|
|
834
|
+
"quote",
|
|
835
|
+
"unicode-ident",
|
|
836
|
+
]
|
|
837
|
+
|
|
838
|
+
[[package]]
|
|
839
|
+
name = "syn"
|
|
840
|
+
version = "3.0.4"
|
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
+
checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
|
|
843
|
+
dependencies = [
|
|
844
|
+
"proc-macro2",
|
|
845
|
+
"quote",
|
|
846
|
+
"unicode-ident",
|
|
847
|
+
]
|
|
848
|
+
|
|
849
|
+
[[package]]
|
|
850
|
+
name = "tempfile"
|
|
851
|
+
version = "3.27.0"
|
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
854
|
+
dependencies = [
|
|
855
|
+
"fastrand",
|
|
856
|
+
"getrandom",
|
|
857
|
+
"once_cell",
|
|
858
|
+
"rustix",
|
|
859
|
+
"windows-sys 0.61.2",
|
|
860
|
+
]
|
|
861
|
+
|
|
862
|
+
[[package]]
|
|
863
|
+
name = "textwrap"
|
|
864
|
+
version = "0.16.2"
|
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
+
checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
|
|
867
|
+
dependencies = [
|
|
868
|
+
"smawk",
|
|
869
|
+
"unicode-linebreak",
|
|
870
|
+
"unicode-width",
|
|
871
|
+
]
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "thiserror"
|
|
875
|
+
version = "1.0.69"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
878
|
+
dependencies = [
|
|
879
|
+
"thiserror-impl 1.0.69",
|
|
880
|
+
]
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "thiserror"
|
|
884
|
+
version = "2.0.20"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
887
|
+
dependencies = [
|
|
888
|
+
"thiserror-impl 2.0.20",
|
|
889
|
+
]
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "thiserror-impl"
|
|
893
|
+
version = "1.0.69"
|
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
896
|
+
dependencies = [
|
|
897
|
+
"proc-macro2",
|
|
898
|
+
"quote",
|
|
899
|
+
"syn 2.0.119",
|
|
900
|
+
]
|
|
901
|
+
|
|
902
|
+
[[package]]
|
|
903
|
+
name = "thiserror-impl"
|
|
904
|
+
version = "2.0.20"
|
|
905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
906
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
907
|
+
dependencies = [
|
|
908
|
+
"proc-macro2",
|
|
909
|
+
"quote",
|
|
910
|
+
"syn 3.0.4",
|
|
911
|
+
]
|
|
912
|
+
|
|
913
|
+
[[package]]
|
|
914
|
+
name = "unicode-id-start"
|
|
915
|
+
version = "1.4.0"
|
|
916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
917
|
+
checksum = "81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007"
|
|
918
|
+
|
|
919
|
+
[[package]]
|
|
920
|
+
name = "unicode-ident"
|
|
921
|
+
version = "1.0.24"
|
|
922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
924
|
+
|
|
925
|
+
[[package]]
|
|
926
|
+
name = "unicode-linebreak"
|
|
927
|
+
version = "0.1.5"
|
|
928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
929
|
+
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "unicode-segmentation"
|
|
933
|
+
version = "1.13.3"
|
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
936
|
+
|
|
937
|
+
[[package]]
|
|
938
|
+
name = "unicode-width"
|
|
939
|
+
version = "0.2.2"
|
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
942
|
+
|
|
943
|
+
[[package]]
|
|
944
|
+
name = "utf8parse"
|
|
945
|
+
version = "0.2.2"
|
|
946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
948
|
+
|
|
949
|
+
[[package]]
|
|
950
|
+
name = "walkdir"
|
|
951
|
+
version = "2.5.0"
|
|
952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
954
|
+
dependencies = [
|
|
955
|
+
"same-file",
|
|
956
|
+
"winapi-util",
|
|
957
|
+
]
|
|
958
|
+
|
|
959
|
+
[[package]]
|
|
960
|
+
name = "winapi"
|
|
961
|
+
version = "0.3.9"
|
|
962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
964
|
+
dependencies = [
|
|
965
|
+
"winapi-i686-pc-windows-gnu",
|
|
966
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
967
|
+
]
|
|
968
|
+
|
|
969
|
+
[[package]]
|
|
970
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
971
|
+
version = "0.4.0"
|
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
974
|
+
|
|
975
|
+
[[package]]
|
|
976
|
+
name = "winapi-util"
|
|
977
|
+
version = "0.1.11"
|
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
979
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
980
|
+
dependencies = [
|
|
981
|
+
"windows-sys 0.61.2",
|
|
982
|
+
]
|
|
983
|
+
|
|
984
|
+
[[package]]
|
|
985
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
986
|
+
version = "0.4.0"
|
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
989
|
+
|
|
990
|
+
[[package]]
|
|
991
|
+
name = "windows-link"
|
|
992
|
+
version = "0.2.1"
|
|
993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
994
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
995
|
+
|
|
996
|
+
[[package]]
|
|
997
|
+
name = "windows-sys"
|
|
998
|
+
version = "0.59.0"
|
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1001
|
+
dependencies = [
|
|
1002
|
+
"windows-targets",
|
|
1003
|
+
]
|
|
1004
|
+
|
|
1005
|
+
[[package]]
|
|
1006
|
+
name = "windows-sys"
|
|
1007
|
+
version = "0.61.2"
|
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1010
|
+
dependencies = [
|
|
1011
|
+
"windows-link",
|
|
1012
|
+
]
|
|
1013
|
+
|
|
1014
|
+
[[package]]
|
|
1015
|
+
name = "windows-targets"
|
|
1016
|
+
version = "0.52.6"
|
|
1017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1018
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1019
|
+
dependencies = [
|
|
1020
|
+
"windows_aarch64_gnullvm",
|
|
1021
|
+
"windows_aarch64_msvc",
|
|
1022
|
+
"windows_i686_gnu",
|
|
1023
|
+
"windows_i686_gnullvm",
|
|
1024
|
+
"windows_i686_msvc",
|
|
1025
|
+
"windows_x86_64_gnu",
|
|
1026
|
+
"windows_x86_64_gnullvm",
|
|
1027
|
+
"windows_x86_64_msvc",
|
|
1028
|
+
]
|
|
1029
|
+
|
|
1030
|
+
[[package]]
|
|
1031
|
+
name = "windows_aarch64_gnullvm"
|
|
1032
|
+
version = "0.52.6"
|
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1035
|
+
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "windows_aarch64_msvc"
|
|
1038
|
+
version = "0.52.6"
|
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1041
|
+
|
|
1042
|
+
[[package]]
|
|
1043
|
+
name = "windows_i686_gnu"
|
|
1044
|
+
version = "0.52.6"
|
|
1045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1046
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1047
|
+
|
|
1048
|
+
[[package]]
|
|
1049
|
+
name = "windows_i686_gnullvm"
|
|
1050
|
+
version = "0.52.6"
|
|
1051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1052
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1053
|
+
|
|
1054
|
+
[[package]]
|
|
1055
|
+
name = "windows_i686_msvc"
|
|
1056
|
+
version = "0.52.6"
|
|
1057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1059
|
+
|
|
1060
|
+
[[package]]
|
|
1061
|
+
name = "windows_x86_64_gnu"
|
|
1062
|
+
version = "0.52.6"
|
|
1063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1064
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1065
|
+
|
|
1066
|
+
[[package]]
|
|
1067
|
+
name = "windows_x86_64_gnullvm"
|
|
1068
|
+
version = "0.52.6"
|
|
1069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1070
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1071
|
+
|
|
1072
|
+
[[package]]
|
|
1073
|
+
name = "windows_x86_64_msvc"
|
|
1074
|
+
version = "0.52.6"
|
|
1075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "zmij"
|
|
1080
|
+
version = "1.0.23"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|