andromeda_cms 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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +30 -0
- data/CONTRIBUTING.md +47 -0
- data/Cargo.lock +1182 -0
- data/Cargo.toml +12 -0
- data/LICENSE.txt +21 -0
- data/README.md +276 -0
- data/ext/andromeda_cms/Cargo.toml +18 -0
- data/ext/andromeda_cms/extconf.rb +6 -0
- data/ext/andromeda_cms/src/errors.rs +55 -0
- data/ext/andromeda_cms/src/lib.rs +143 -0
- data/ext/andromeda_cms/src/nodes.rs +400 -0
- data/lib/andromeda/assets.rb +128 -0
- data/lib/andromeda/check.rb +71 -0
- data/lib/andromeda/components/errors.rb +97 -0
- data/lib/andromeda/components/import_scanner.rb +72 -0
- data/lib/andromeda/components/static_expression.rb +79 -0
- data/lib/andromeda/components.rb +348 -0
- data/lib/andromeda/configuration.rb +91 -0
- data/lib/andromeda/entry.rb +294 -0
- data/lib/andromeda/errors.rb +173 -0
- data/lib/andromeda/fix.rb +71 -0
- data/lib/andromeda/frontmatter.rb +327 -0
- data/lib/andromeda/helpers.rb +84 -0
- data/lib/andromeda/id.rb +58 -0
- data/lib/andromeda/loader.rb +96 -0
- data/lib/andromeda/parser.rb +75 -0
- data/lib/andromeda/pipeline.rb +296 -0
- data/lib/andromeda/railtie.rb +47 -0
- data/lib/andromeda/registry.rb +127 -0
- data/lib/andromeda/relation.rb +125 -0
- data/lib/andromeda/renderer/code_highlighter.rb +53 -0
- data/lib/andromeda/renderer/errors.rb +52 -0
- data/lib/andromeda/renderer/literal_expression.rb +201 -0
- data/lib/andromeda/renderer.rb +411 -0
- data/lib/andromeda/schema.rb +383 -0
- data/lib/andromeda/slugger.rb +68 -0
- data/lib/andromeda/store.rb +286 -0
- data/lib/andromeda/tasks/andromeda.rake +56 -0
- data/lib/andromeda/version.rb +5 -0
- data/lib/andromeda_cms.rb +41 -0
- data/lib/generators/andromeda/collection/USAGE +25 -0
- data/lib/generators/andromeda/collection/collection_generator.rb +239 -0
- data/lib/generators/andromeda/component/USAGE +15 -0
- data/lib/generators/andromeda/component/component_generator.rb +75 -0
- data/lib/generators/andromeda/import_astro/USAGE +21 -0
- data/lib/generators/andromeda/import_astro/astro_schema_json.rb +80 -0
- data/lib/generators/andromeda/import_astro/balanced_scanner.rb +168 -0
- data/lib/generators/andromeda/import_astro/content_config_converter.rb +232 -0
- data/lib/generators/andromeda/import_astro/import_astro_generator.rb +313 -0
- data/lib/generators/andromeda/import_astro/mdx_content_scanner.rb +91 -0
- data/lib/generators/andromeda/import_astro/mdx_import_rewriter.rb +91 -0
- data/lib/generators/andromeda/install/USAGE +11 -0
- data/lib/generators/andromeda/install/install_generator.rb +77 -0
- data/lib/generators/andromeda/install/templates/initializer.rb +30 -0
- metadata +161 -0
data/Cargo.lock
ADDED
|
@@ -0,0 +1,1182 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.5"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "allocator-api2"
|
|
16
|
+
version = "0.2.21"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "andromeda_cms"
|
|
22
|
+
version = "0.1.0"
|
|
23
|
+
dependencies = [
|
|
24
|
+
"magnus",
|
|
25
|
+
"satteri-arena",
|
|
26
|
+
"satteri-ast",
|
|
27
|
+
"satteri-pulldown-cmark",
|
|
28
|
+
"serde_json",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "ar_archive_writer"
|
|
33
|
+
version = "0.5.3"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "73cd58deff2140a0a8eae87e417bd01db68a33e148aa93d1e8cd837e55e312b6"
|
|
36
|
+
dependencies = [
|
|
37
|
+
"object",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "autocfg"
|
|
42
|
+
version = "1.5.1"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
45
|
+
|
|
46
|
+
[[package]]
|
|
47
|
+
name = "bindgen"
|
|
48
|
+
version = "0.72.1"
|
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
50
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
51
|
+
dependencies = [
|
|
52
|
+
"bitflags",
|
|
53
|
+
"cexpr",
|
|
54
|
+
"clang-sys",
|
|
55
|
+
"itertools",
|
|
56
|
+
"proc-macro2",
|
|
57
|
+
"quote",
|
|
58
|
+
"regex",
|
|
59
|
+
"rustc-hash",
|
|
60
|
+
"shlex 1.3.0",
|
|
61
|
+
"syn 2.0.119",
|
|
62
|
+
]
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "bitflags"
|
|
66
|
+
version = "2.13.2"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "castaway"
|
|
72
|
+
version = "0.2.4"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
75
|
+
dependencies = [
|
|
76
|
+
"rustversion",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "cc"
|
|
81
|
+
version = "1.4.7"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "54413ede23c2daf518f35156dfde027feb2374004d63bd497f983c8db9c0e313"
|
|
84
|
+
dependencies = [
|
|
85
|
+
"find-msvc-tools",
|
|
86
|
+
"shlex 2.0.1",
|
|
87
|
+
]
|
|
88
|
+
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "cexpr"
|
|
91
|
+
version = "0.6.0"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
94
|
+
dependencies = [
|
|
95
|
+
"nom",
|
|
96
|
+
]
|
|
97
|
+
|
|
98
|
+
[[package]]
|
|
99
|
+
name = "cfg-if"
|
|
100
|
+
version = "1.0.5"
|
|
101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
+
checksum = "4e7648175b45a9a48536d676f68d918270699102aa8dab5496df06904c914600"
|
|
103
|
+
|
|
104
|
+
[[package]]
|
|
105
|
+
name = "clang-sys"
|
|
106
|
+
version = "1.9.1"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "157a8ba7b480713b56f4c09fd13fc3e0a22a5dfab8097ba61cbc5feef950788a"
|
|
109
|
+
dependencies = [
|
|
110
|
+
"glob",
|
|
111
|
+
"libc",
|
|
112
|
+
"libloading",
|
|
113
|
+
]
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "compact_str"
|
|
117
|
+
version = "0.9.1"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab"
|
|
120
|
+
dependencies = [
|
|
121
|
+
"castaway",
|
|
122
|
+
"cfg-if",
|
|
123
|
+
"itoa",
|
|
124
|
+
"rustversion",
|
|
125
|
+
"ryu",
|
|
126
|
+
"static_assertions",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "cow-utils"
|
|
131
|
+
version = "0.1.3"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "displaydoc"
|
|
137
|
+
version = "0.2.7"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
|
|
140
|
+
dependencies = [
|
|
141
|
+
"proc-macro2",
|
|
142
|
+
"quote",
|
|
143
|
+
"syn 3.0.6",
|
|
144
|
+
]
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "dragonbox_ecma"
|
|
148
|
+
version = "0.1.12"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "fd8e701084c37e7ef62d3f9e453b618130cbc0ef3573847785952a3ac3f746bf"
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "either"
|
|
154
|
+
version = "1.18.0"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "equivalent"
|
|
160
|
+
version = "1.0.2"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "fastrand"
|
|
166
|
+
version = "2.5.0"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "find-msvc-tools"
|
|
172
|
+
version = "0.1.13"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "ef25905e51abafe4dcea6c15fec58c57b601cdbd0ee53d22ea1d3016c587d39b"
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "glob"
|
|
178
|
+
version = "0.3.4"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
|
|
181
|
+
|
|
182
|
+
[[package]]
|
|
183
|
+
name = "hashbrown"
|
|
184
|
+
version = "0.16.1"
|
|
185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
187
|
+
dependencies = [
|
|
188
|
+
"allocator-api2",
|
|
189
|
+
]
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "hashbrown"
|
|
193
|
+
version = "0.17.1"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "icu_collections"
|
|
199
|
+
version = "2.3.0"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
|
|
202
|
+
dependencies = [
|
|
203
|
+
"displaydoc",
|
|
204
|
+
"potential_utf",
|
|
205
|
+
"utf8_iter",
|
|
206
|
+
"yoke",
|
|
207
|
+
"zerofrom",
|
|
208
|
+
"zerovec",
|
|
209
|
+
]
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "icu_locale_core"
|
|
213
|
+
version = "2.3.0"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
|
|
216
|
+
dependencies = [
|
|
217
|
+
"displaydoc",
|
|
218
|
+
"litemap",
|
|
219
|
+
"serde",
|
|
220
|
+
"tinystr",
|
|
221
|
+
"writeable",
|
|
222
|
+
"zerovec",
|
|
223
|
+
]
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "icu_locale_fallback"
|
|
227
|
+
version = "2.3.0"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "251af8e57c9400e3eb58242fe5b8b1152b2a64fdf4cf632f923c38ccee6f2fa9"
|
|
230
|
+
dependencies = [
|
|
231
|
+
"icu_locale_core",
|
|
232
|
+
"icu_locale_fallback_data",
|
|
233
|
+
"icu_provider",
|
|
234
|
+
"potential_utf",
|
|
235
|
+
"tinystr",
|
|
236
|
+
"zerovec",
|
|
237
|
+
]
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "icu_locale_fallback_data"
|
|
241
|
+
version = "2.3.0"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "decf2a22ec8fa68f1a0c1129a3f8583f8f8bc24e8b9ccbe98ead99f62a4dc3a8"
|
|
244
|
+
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "icu_provider"
|
|
247
|
+
version = "2.3.1"
|
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
+
checksum = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73"
|
|
250
|
+
dependencies = [
|
|
251
|
+
"displaydoc",
|
|
252
|
+
"icu_locale_core",
|
|
253
|
+
"serde",
|
|
254
|
+
"stable_deref_trait",
|
|
255
|
+
"writeable",
|
|
256
|
+
"yoke",
|
|
257
|
+
"zerofrom",
|
|
258
|
+
"zerotrie",
|
|
259
|
+
"zerovec",
|
|
260
|
+
]
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "icu_segmenter"
|
|
264
|
+
version = "2.3.0"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "82d07aafccd67af15d02512a6adf5896fbc5ed00f2e99b471d2efa14016db3db"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"icu_collections",
|
|
269
|
+
"icu_locale_fallback",
|
|
270
|
+
"icu_provider",
|
|
271
|
+
"icu_segmenter_data",
|
|
272
|
+
"potential_utf",
|
|
273
|
+
"smallvec",
|
|
274
|
+
"utf8_iter",
|
|
275
|
+
"zerovec",
|
|
276
|
+
]
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "icu_segmenter_data"
|
|
280
|
+
version = "2.3.0"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "ae293c039020f9ec10710af98d29ce6aa2051486638b49c9a6409f3b4a9e98ad"
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "indexmap"
|
|
286
|
+
version = "2.14.2"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "cc4e190f5d26ca7051642629da2c52fc03bde85a03197c99408dcd291734c855"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"equivalent",
|
|
291
|
+
"hashbrown 0.17.1",
|
|
292
|
+
]
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "itertools"
|
|
296
|
+
version = "0.13.0"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"either",
|
|
301
|
+
]
|
|
302
|
+
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "itoa"
|
|
305
|
+
version = "1.0.18"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "lazy_static"
|
|
311
|
+
version = "1.5.0"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "libc"
|
|
317
|
+
version = "0.2.189"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
320
|
+
|
|
321
|
+
[[package]]
|
|
322
|
+
name = "libloading"
|
|
323
|
+
version = "0.8.9"
|
|
324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
326
|
+
dependencies = [
|
|
327
|
+
"cfg-if",
|
|
328
|
+
"windows-link",
|
|
329
|
+
]
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "litemap"
|
|
333
|
+
version = "0.8.3"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "magnus"
|
|
339
|
+
version = "0.8.2"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
342
|
+
dependencies = [
|
|
343
|
+
"magnus-macros",
|
|
344
|
+
"rb-sys",
|
|
345
|
+
"rb-sys-env",
|
|
346
|
+
"seq-macro",
|
|
347
|
+
]
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "magnus-macros"
|
|
351
|
+
version = "0.8.0"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"proc-macro2",
|
|
356
|
+
"quote",
|
|
357
|
+
"syn 2.0.119",
|
|
358
|
+
]
|
|
359
|
+
|
|
360
|
+
[[package]]
|
|
361
|
+
name = "memchr"
|
|
362
|
+
version = "2.8.3"
|
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "minimal-lexical"
|
|
368
|
+
version = "0.2.1"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "nom"
|
|
374
|
+
version = "7.1.3"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
377
|
+
dependencies = [
|
|
378
|
+
"memchr",
|
|
379
|
+
"minimal-lexical",
|
|
380
|
+
]
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "nonmax"
|
|
384
|
+
version = "0.5.5"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "num-bigint"
|
|
390
|
+
version = "0.4.8"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"num-integer",
|
|
395
|
+
"num-traits",
|
|
396
|
+
]
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "num-integer"
|
|
400
|
+
version = "0.1.47"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
|
|
403
|
+
dependencies = [
|
|
404
|
+
"num-traits",
|
|
405
|
+
]
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "num-traits"
|
|
409
|
+
version = "0.2.19"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
412
|
+
dependencies = [
|
|
413
|
+
"autocfg",
|
|
414
|
+
]
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "object"
|
|
418
|
+
version = "0.39.1"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "2e5a6c098c7a3b6547378093f5cc30bc54fd361ce711e05293a5cc589562739b"
|
|
421
|
+
dependencies = [
|
|
422
|
+
"memchr",
|
|
423
|
+
]
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "owo-colors"
|
|
427
|
+
version = "4.4.0"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "13c45bb4a6ae1280ec0803b1ef9d3455eb50f01efbbe1447ab020f1d54fba9d8"
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "oxc-miette"
|
|
433
|
+
version = "2.7.1"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "4356a61f2ed4c9b3610245215fbf48970eb277126919f87db9d0efa93a74245c"
|
|
436
|
+
dependencies = [
|
|
437
|
+
"cfg-if",
|
|
438
|
+
"owo-colors",
|
|
439
|
+
"oxc-miette-derive",
|
|
440
|
+
"textwrap",
|
|
441
|
+
"thiserror",
|
|
442
|
+
"unicode-segmentation",
|
|
443
|
+
"unicode-width",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "oxc-miette-derive"
|
|
448
|
+
version = "2.7.1"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "b237422b014f8f8fff75bb9379e697d13f8d57551a22c88bebb39f073c1bf696"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"proc-macro2",
|
|
453
|
+
"quote",
|
|
454
|
+
"syn 2.0.119",
|
|
455
|
+
]
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "oxc_allocator"
|
|
459
|
+
version = "0.121.0"
|
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
+
checksum = "c17ece0d1edc5e92822be95428460bc6b12f0dce8f95a9efabf751189a75f9f2"
|
|
462
|
+
dependencies = [
|
|
463
|
+
"allocator-api2",
|
|
464
|
+
"hashbrown 0.16.1",
|
|
465
|
+
"oxc_data_structures",
|
|
466
|
+
"rustc-hash",
|
|
467
|
+
]
|
|
468
|
+
|
|
469
|
+
[[package]]
|
|
470
|
+
name = "oxc_ast"
|
|
471
|
+
version = "0.121.0"
|
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
|
+
checksum = "06ec0e9560cce8917197c7b13be7288707177f48a6f0ca116d0b53689e18bbc3"
|
|
474
|
+
dependencies = [
|
|
475
|
+
"bitflags",
|
|
476
|
+
"oxc_allocator",
|
|
477
|
+
"oxc_ast_macros",
|
|
478
|
+
"oxc_data_structures",
|
|
479
|
+
"oxc_diagnostics",
|
|
480
|
+
"oxc_estree",
|
|
481
|
+
"oxc_regular_expression",
|
|
482
|
+
"oxc_span",
|
|
483
|
+
"oxc_syntax",
|
|
484
|
+
]
|
|
485
|
+
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "oxc_ast_macros"
|
|
488
|
+
version = "0.121.0"
|
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
+
checksum = "f266c05258e76cb84d7eee538e4fc75e2687f4220e1b2f141c490b35025a6443"
|
|
491
|
+
dependencies = [
|
|
492
|
+
"phf",
|
|
493
|
+
"proc-macro2",
|
|
494
|
+
"quote",
|
|
495
|
+
"syn 2.0.119",
|
|
496
|
+
]
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "oxc_ast_visit"
|
|
500
|
+
version = "0.121.0"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "3477ca0b6dd5bebcb1d3bf4c825b65999975d6ca91d6f535bf067e979fad113a"
|
|
503
|
+
dependencies = [
|
|
504
|
+
"oxc_allocator",
|
|
505
|
+
"oxc_ast",
|
|
506
|
+
"oxc_span",
|
|
507
|
+
"oxc_syntax",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "oxc_data_structures"
|
|
512
|
+
version = "0.121.0"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "d8701946f2acbd655610a331cf56f0aa58349ef792e6bf2fb65c56785b87fe8e"
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "oxc_diagnostics"
|
|
518
|
+
version = "0.121.0"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "b04ea16e6016eceb281fb61bbac5f860f075864e93ae15ec18b6c2d0b152e435"
|
|
521
|
+
dependencies = [
|
|
522
|
+
"cow-utils",
|
|
523
|
+
"oxc-miette",
|
|
524
|
+
"percent-encoding",
|
|
525
|
+
]
|
|
526
|
+
|
|
527
|
+
[[package]]
|
|
528
|
+
name = "oxc_ecmascript"
|
|
529
|
+
version = "0.121.0"
|
|
530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
+
checksum = "f4b107cae9b8bce541a45463623e1c4b1bb073e81d966483720f0e831facdcb1"
|
|
532
|
+
dependencies = [
|
|
533
|
+
"cow-utils",
|
|
534
|
+
"num-bigint",
|
|
535
|
+
"num-traits",
|
|
536
|
+
"oxc_allocator",
|
|
537
|
+
"oxc_ast",
|
|
538
|
+
"oxc_regular_expression",
|
|
539
|
+
"oxc_span",
|
|
540
|
+
"oxc_syntax",
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "oxc_estree"
|
|
545
|
+
version = "0.121.0"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "57b79c9e9684eab83293d67dcbbfd2b1a1f062d27a8188411eb700c6e17983fa"
|
|
548
|
+
|
|
549
|
+
[[package]]
|
|
550
|
+
name = "oxc_index"
|
|
551
|
+
version = "4.1.0"
|
|
552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
+
checksum = "eb3e6120999627ec9703025eab7c9f410ebb7e95557632a8902ca48210416c2b"
|
|
554
|
+
dependencies = [
|
|
555
|
+
"nonmax",
|
|
556
|
+
"serde",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "oxc_parser"
|
|
561
|
+
version = "0.121.0"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "487f41bdacb3ef9afd8c5b0cb5beceec3ac4ecd0c348804aa1907606d370c731"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"bitflags",
|
|
566
|
+
"cow-utils",
|
|
567
|
+
"memchr",
|
|
568
|
+
"num-bigint",
|
|
569
|
+
"num-traits",
|
|
570
|
+
"oxc_allocator",
|
|
571
|
+
"oxc_ast",
|
|
572
|
+
"oxc_data_structures",
|
|
573
|
+
"oxc_diagnostics",
|
|
574
|
+
"oxc_ecmascript",
|
|
575
|
+
"oxc_regular_expression",
|
|
576
|
+
"oxc_span",
|
|
577
|
+
"oxc_syntax",
|
|
578
|
+
"rustc-hash",
|
|
579
|
+
"seq-macro",
|
|
580
|
+
]
|
|
581
|
+
|
|
582
|
+
[[package]]
|
|
583
|
+
name = "oxc_regular_expression"
|
|
584
|
+
version = "0.121.0"
|
|
585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
+
checksum = "d495c085efbde1d65636497f9d3e3e58151db614a97e313e2e7a837d81865419"
|
|
587
|
+
dependencies = [
|
|
588
|
+
"bitflags",
|
|
589
|
+
"oxc_allocator",
|
|
590
|
+
"oxc_ast_macros",
|
|
591
|
+
"oxc_diagnostics",
|
|
592
|
+
"oxc_span",
|
|
593
|
+
"phf",
|
|
594
|
+
"rustc-hash",
|
|
595
|
+
"unicode-id-start",
|
|
596
|
+
]
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "oxc_span"
|
|
600
|
+
version = "0.121.0"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "3edcf2bc8bc73cd8d252650737ef48a482484a91709b7f7a5c5ce49305f247e8"
|
|
603
|
+
dependencies = [
|
|
604
|
+
"compact_str",
|
|
605
|
+
"oxc-miette",
|
|
606
|
+
"oxc_allocator",
|
|
607
|
+
"oxc_ast_macros",
|
|
608
|
+
"oxc_estree",
|
|
609
|
+
"oxc_str",
|
|
610
|
+
]
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "oxc_str"
|
|
614
|
+
version = "0.121.0"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "a0c60f1570f04257d5678a16391f6d18dc805325e7f876b8e176a3a36fe897be"
|
|
617
|
+
dependencies = [
|
|
618
|
+
"compact_str",
|
|
619
|
+
"hashbrown 0.16.1",
|
|
620
|
+
"oxc_allocator",
|
|
621
|
+
"oxc_estree",
|
|
622
|
+
]
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "oxc_syntax"
|
|
626
|
+
version = "0.121.0"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "5a10c19c89298c0b126d12c5f545786405efbad9012d956ebb3190b64b29905a"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"bitflags",
|
|
631
|
+
"cow-utils",
|
|
632
|
+
"dragonbox_ecma",
|
|
633
|
+
"nonmax",
|
|
634
|
+
"oxc_allocator",
|
|
635
|
+
"oxc_ast_macros",
|
|
636
|
+
"oxc_estree",
|
|
637
|
+
"oxc_index",
|
|
638
|
+
"oxc_span",
|
|
639
|
+
"phf",
|
|
640
|
+
"unicode-id-start",
|
|
641
|
+
]
|
|
642
|
+
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "percent-encoding"
|
|
645
|
+
version = "2.3.2"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
648
|
+
|
|
649
|
+
[[package]]
|
|
650
|
+
name = "phf"
|
|
651
|
+
version = "0.13.1"
|
|
652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
+
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
654
|
+
dependencies = [
|
|
655
|
+
"phf_macros",
|
|
656
|
+
"phf_shared",
|
|
657
|
+
"serde",
|
|
658
|
+
]
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "phf_generator"
|
|
662
|
+
version = "0.13.1"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
|
|
665
|
+
dependencies = [
|
|
666
|
+
"fastrand",
|
|
667
|
+
"phf_shared",
|
|
668
|
+
]
|
|
669
|
+
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "phf_macros"
|
|
672
|
+
version = "0.13.1"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
|
|
675
|
+
dependencies = [
|
|
676
|
+
"phf_generator",
|
|
677
|
+
"phf_shared",
|
|
678
|
+
"proc-macro2",
|
|
679
|
+
"quote",
|
|
680
|
+
"syn 2.0.119",
|
|
681
|
+
]
|
|
682
|
+
|
|
683
|
+
[[package]]
|
|
684
|
+
name = "phf_shared"
|
|
685
|
+
version = "0.13.1"
|
|
686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
+
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
688
|
+
dependencies = [
|
|
689
|
+
"siphasher",
|
|
690
|
+
]
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "potential_utf"
|
|
694
|
+
version = "0.1.6"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
|
|
697
|
+
dependencies = [
|
|
698
|
+
"serde_core",
|
|
699
|
+
"writeable",
|
|
700
|
+
"zerovec",
|
|
701
|
+
]
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "proc-macro2"
|
|
705
|
+
version = "1.0.107"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
708
|
+
dependencies = [
|
|
709
|
+
"unicode-ident",
|
|
710
|
+
]
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "psm"
|
|
714
|
+
version = "0.1.32"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "4dcd034599e63b970727f70d79e02d62390a4a84f7c6b827c27c46d5ac3fa622"
|
|
717
|
+
dependencies = [
|
|
718
|
+
"ar_archive_writer",
|
|
719
|
+
"cc",
|
|
720
|
+
]
|
|
721
|
+
|
|
722
|
+
[[package]]
|
|
723
|
+
name = "quote"
|
|
724
|
+
version = "1.0.47"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
727
|
+
dependencies = [
|
|
728
|
+
"proc-macro2",
|
|
729
|
+
]
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "rb-sys"
|
|
733
|
+
version = "0.9.130"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "02faf625bb10ba893e3ae620f19c9fb1b5f8fcae0fe4eb86bb3f2230fad75edb"
|
|
736
|
+
dependencies = [
|
|
737
|
+
"rb-sys-build",
|
|
738
|
+
]
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "rb-sys-build"
|
|
742
|
+
version = "0.9.130"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "05be6f9c86fe5482808162826f6c047d093b3670582296c770de1d94f8066694"
|
|
745
|
+
dependencies = [
|
|
746
|
+
"bindgen",
|
|
747
|
+
"lazy_static",
|
|
748
|
+
"proc-macro2",
|
|
749
|
+
"quote",
|
|
750
|
+
"regex",
|
|
751
|
+
"shell-words",
|
|
752
|
+
"syn 2.0.119",
|
|
753
|
+
]
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "rb-sys-env"
|
|
757
|
+
version = "0.2.3"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
760
|
+
|
|
761
|
+
[[package]]
|
|
762
|
+
name = "regex"
|
|
763
|
+
version = "1.13.1"
|
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
766
|
+
dependencies = [
|
|
767
|
+
"aho-corasick",
|
|
768
|
+
"memchr",
|
|
769
|
+
"regex-automata",
|
|
770
|
+
"regex-syntax",
|
|
771
|
+
]
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "regex-automata"
|
|
775
|
+
version = "0.4.18"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
778
|
+
dependencies = [
|
|
779
|
+
"aho-corasick",
|
|
780
|
+
"memchr",
|
|
781
|
+
"regex-syntax",
|
|
782
|
+
]
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "regex-syntax"
|
|
786
|
+
version = "0.8.11"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "rustc-hash"
|
|
792
|
+
version = "2.1.3"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "rustversion"
|
|
798
|
+
version = "1.0.23"
|
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "ryu"
|
|
804
|
+
version = "1.0.23"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "satteri-arena"
|
|
810
|
+
version = "0.3.1"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "7bca9f633e57593d92bee58e50ea8dca66b7ae8070f41545bdec4ef425bea715"
|
|
813
|
+
dependencies = [
|
|
814
|
+
"memchr",
|
|
815
|
+
"rustc-hash",
|
|
816
|
+
]
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "satteri-ast"
|
|
820
|
+
version = "0.5.3"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "e18ee64b49df1b3c85d246a80c0381084de34b8dc833e7152ccad40f5f93b15e"
|
|
823
|
+
dependencies = [
|
|
824
|
+
"rustc-hash",
|
|
825
|
+
"satteri-arena",
|
|
826
|
+
"satteri-property-info",
|
|
827
|
+
"serde",
|
|
828
|
+
"serde_json",
|
|
829
|
+
"stacker",
|
|
830
|
+
]
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "satteri-property-info"
|
|
834
|
+
version = "0.2.0"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "7ca0fd30645b8de487fe437f04adce585e5414f19248c11c87a8fbd78663f3a0"
|
|
837
|
+
|
|
838
|
+
[[package]]
|
|
839
|
+
name = "satteri-pulldown-cmark"
|
|
840
|
+
version = "0.6.3"
|
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
+
checksum = "fcd3c0c0af2c48cf770383ba4bb3f45fa37fe3162bee7febd955c562d5af27e1"
|
|
843
|
+
dependencies = [
|
|
844
|
+
"bitflags",
|
|
845
|
+
"memchr",
|
|
846
|
+
"oxc_allocator",
|
|
847
|
+
"oxc_ast",
|
|
848
|
+
"oxc_ast_visit",
|
|
849
|
+
"oxc_parser",
|
|
850
|
+
"oxc_span",
|
|
851
|
+
"rustc-hash",
|
|
852
|
+
"satteri-arena",
|
|
853
|
+
"satteri-ast",
|
|
854
|
+
"unicase",
|
|
855
|
+
"unicode-id-start",
|
|
856
|
+
]
|
|
857
|
+
|
|
858
|
+
[[package]]
|
|
859
|
+
name = "seq-macro"
|
|
860
|
+
version = "0.3.6"
|
|
861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
862
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
863
|
+
|
|
864
|
+
[[package]]
|
|
865
|
+
name = "serde"
|
|
866
|
+
version = "1.0.229"
|
|
867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
868
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
869
|
+
dependencies = [
|
|
870
|
+
"serde_core",
|
|
871
|
+
"serde_derive",
|
|
872
|
+
]
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "serde_core"
|
|
876
|
+
version = "1.0.229"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
879
|
+
dependencies = [
|
|
880
|
+
"serde_derive",
|
|
881
|
+
]
|
|
882
|
+
|
|
883
|
+
[[package]]
|
|
884
|
+
name = "serde_derive"
|
|
885
|
+
version = "1.0.229"
|
|
886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
888
|
+
dependencies = [
|
|
889
|
+
"proc-macro2",
|
|
890
|
+
"quote",
|
|
891
|
+
"syn 3.0.6",
|
|
892
|
+
]
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "serde_json"
|
|
896
|
+
version = "1.0.151"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
899
|
+
dependencies = [
|
|
900
|
+
"indexmap",
|
|
901
|
+
"itoa",
|
|
902
|
+
"memchr",
|
|
903
|
+
"serde",
|
|
904
|
+
"serde_core",
|
|
905
|
+
"zmij",
|
|
906
|
+
]
|
|
907
|
+
|
|
908
|
+
[[package]]
|
|
909
|
+
name = "shell-words"
|
|
910
|
+
version = "1.1.1"
|
|
911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
913
|
+
|
|
914
|
+
[[package]]
|
|
915
|
+
name = "shlex"
|
|
916
|
+
version = "1.3.0"
|
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "shlex"
|
|
922
|
+
version = "2.0.1"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
925
|
+
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "siphasher"
|
|
928
|
+
version = "1.0.3"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
931
|
+
|
|
932
|
+
[[package]]
|
|
933
|
+
name = "smallvec"
|
|
934
|
+
version = "1.16.1"
|
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
+
checksum = "ba467056f1b547ed52077911161fc86985becbc60e8e1857c8a144dab0def891"
|
|
937
|
+
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "smawk"
|
|
940
|
+
version = "0.3.3"
|
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
+
checksum = "e8e2fb0f499abb4d162f2bedad68f5ef91a1682b5a03596ddb67efd37768d100"
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "stable_deref_trait"
|
|
946
|
+
version = "1.2.1"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "stacker"
|
|
952
|
+
version = "0.1.25"
|
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
+
checksum = "707f49d46706bacf8a2b00d51dace3f9de527c13eec3778f570c411f89e69967"
|
|
955
|
+
dependencies = [
|
|
956
|
+
"cc",
|
|
957
|
+
"cfg-if",
|
|
958
|
+
"libc",
|
|
959
|
+
"psm",
|
|
960
|
+
"windows-sys",
|
|
961
|
+
]
|
|
962
|
+
|
|
963
|
+
[[package]]
|
|
964
|
+
name = "static_assertions"
|
|
965
|
+
version = "1.1.0"
|
|
966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
968
|
+
|
|
969
|
+
[[package]]
|
|
970
|
+
name = "syn"
|
|
971
|
+
version = "2.0.119"
|
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
974
|
+
dependencies = [
|
|
975
|
+
"proc-macro2",
|
|
976
|
+
"quote",
|
|
977
|
+
"unicode-ident",
|
|
978
|
+
]
|
|
979
|
+
|
|
980
|
+
[[package]]
|
|
981
|
+
name = "syn"
|
|
982
|
+
version = "3.0.6"
|
|
983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
+
checksum = "8593e8e72159ed2257d083c7a454a85cbf854f37a0966d8d483aff8c8a3ebcee"
|
|
985
|
+
dependencies = [
|
|
986
|
+
"proc-macro2",
|
|
987
|
+
"quote",
|
|
988
|
+
"unicode-ident",
|
|
989
|
+
]
|
|
990
|
+
|
|
991
|
+
[[package]]
|
|
992
|
+
name = "synstructure"
|
|
993
|
+
version = "0.14.0"
|
|
994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
995
|
+
checksum = "901704edd0dfe137f1987838ee4f259e4e063c31371bdb423f7ae38ec6f77f02"
|
|
996
|
+
dependencies = [
|
|
997
|
+
"proc-macro2",
|
|
998
|
+
"quote",
|
|
999
|
+
"syn 3.0.6",
|
|
1000
|
+
]
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "textwrap"
|
|
1004
|
+
version = "0.16.4"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "6ecfad6c3abc80a577f2b91c1e412ee57e7a060d430b553c1b0c940974ebcd49"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"icu_segmenter",
|
|
1009
|
+
"smawk",
|
|
1010
|
+
"unicode-width",
|
|
1011
|
+
]
|
|
1012
|
+
|
|
1013
|
+
[[package]]
|
|
1014
|
+
name = "thiserror"
|
|
1015
|
+
version = "2.0.20"
|
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
1018
|
+
dependencies = [
|
|
1019
|
+
"thiserror-impl",
|
|
1020
|
+
]
|
|
1021
|
+
|
|
1022
|
+
[[package]]
|
|
1023
|
+
name = "thiserror-impl"
|
|
1024
|
+
version = "2.0.20"
|
|
1025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
1027
|
+
dependencies = [
|
|
1028
|
+
"proc-macro2",
|
|
1029
|
+
"quote",
|
|
1030
|
+
"syn 3.0.6",
|
|
1031
|
+
]
|
|
1032
|
+
|
|
1033
|
+
[[package]]
|
|
1034
|
+
name = "tinystr"
|
|
1035
|
+
version = "0.8.4"
|
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
+
checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
|
|
1038
|
+
dependencies = [
|
|
1039
|
+
"displaydoc",
|
|
1040
|
+
"serde_core",
|
|
1041
|
+
"zerovec",
|
|
1042
|
+
]
|
|
1043
|
+
|
|
1044
|
+
[[package]]
|
|
1045
|
+
name = "unicase"
|
|
1046
|
+
version = "2.9.0"
|
|
1047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1048
|
+
checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
1049
|
+
|
|
1050
|
+
[[package]]
|
|
1051
|
+
name = "unicode-id-start"
|
|
1052
|
+
version = "1.5.0"
|
|
1053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1054
|
+
checksum = "0825d2e09dcae814a4273c1e1435979d414ede25b2ee235b1545da6682483765"
|
|
1055
|
+
|
|
1056
|
+
[[package]]
|
|
1057
|
+
name = "unicode-ident"
|
|
1058
|
+
version = "1.0.26"
|
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
+
checksum = "d245f478577f809a851594d02313b640fb437e0bb33866753cff937863096954"
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "unicode-segmentation"
|
|
1064
|
+
version = "1.13.3"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
1067
|
+
|
|
1068
|
+
[[package]]
|
|
1069
|
+
name = "unicode-width"
|
|
1070
|
+
version = "0.2.2"
|
|
1071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1073
|
+
|
|
1074
|
+
[[package]]
|
|
1075
|
+
name = "utf8_iter"
|
|
1076
|
+
version = "1.0.4"
|
|
1077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1078
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1079
|
+
|
|
1080
|
+
[[package]]
|
|
1081
|
+
name = "windows-link"
|
|
1082
|
+
version = "0.2.1"
|
|
1083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1084
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "windows-sys"
|
|
1088
|
+
version = "0.61.2"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1091
|
+
dependencies = [
|
|
1092
|
+
"windows-link",
|
|
1093
|
+
]
|
|
1094
|
+
|
|
1095
|
+
[[package]]
|
|
1096
|
+
name = "writeable"
|
|
1097
|
+
version = "0.6.4"
|
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
+
checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "yoke"
|
|
1103
|
+
version = "0.8.3"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"stable_deref_trait",
|
|
1108
|
+
"yoke-derive",
|
|
1109
|
+
"zerofrom",
|
|
1110
|
+
]
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "yoke-derive"
|
|
1114
|
+
version = "0.8.3"
|
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
+
checksum = "33811428bee40dbceb6d545e95754741d17a6aef9a4849f0fd62e2ba4f412a78"
|
|
1117
|
+
dependencies = [
|
|
1118
|
+
"proc-macro2",
|
|
1119
|
+
"quote",
|
|
1120
|
+
"syn 3.0.6",
|
|
1121
|
+
"synstructure",
|
|
1122
|
+
]
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "zerofrom"
|
|
1126
|
+
version = "0.1.8"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
1129
|
+
dependencies = [
|
|
1130
|
+
"zerofrom-derive",
|
|
1131
|
+
]
|
|
1132
|
+
|
|
1133
|
+
[[package]]
|
|
1134
|
+
name = "zerofrom-derive"
|
|
1135
|
+
version = "0.1.8"
|
|
1136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1137
|
+
checksum = "f75b4683f6c7f45248d4d64056a24298c6281e0993356d7d1b4a1a962ef10d4a"
|
|
1138
|
+
dependencies = [
|
|
1139
|
+
"proc-macro2",
|
|
1140
|
+
"quote",
|
|
1141
|
+
"syn 3.0.6",
|
|
1142
|
+
"synstructure",
|
|
1143
|
+
]
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "zerotrie"
|
|
1147
|
+
version = "0.2.5"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
|
|
1150
|
+
dependencies = [
|
|
1151
|
+
"displaydoc",
|
|
1152
|
+
"zerovec",
|
|
1153
|
+
]
|
|
1154
|
+
|
|
1155
|
+
[[package]]
|
|
1156
|
+
name = "zerovec"
|
|
1157
|
+
version = "0.11.8"
|
|
1158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1159
|
+
checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8"
|
|
1160
|
+
dependencies = [
|
|
1161
|
+
"serde",
|
|
1162
|
+
"yoke",
|
|
1163
|
+
"zerofrom",
|
|
1164
|
+
"zerovec-derive",
|
|
1165
|
+
]
|
|
1166
|
+
|
|
1167
|
+
[[package]]
|
|
1168
|
+
name = "zerovec-derive"
|
|
1169
|
+
version = "0.11.6"
|
|
1170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
+
checksum = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da"
|
|
1172
|
+
dependencies = [
|
|
1173
|
+
"proc-macro2",
|
|
1174
|
+
"quote",
|
|
1175
|
+
"syn 3.0.6",
|
|
1176
|
+
]
|
|
1177
|
+
|
|
1178
|
+
[[package]]
|
|
1179
|
+
name = "zmij"
|
|
1180
|
+
version = "1.0.23"
|
|
1181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|