cmakefmt 0.8.0__tar.gz
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.
- cmakefmt-0.8.0/Cargo.lock +1761 -0
- cmakefmt-0.8.0/Cargo.toml +92 -0
- cmakefmt-0.8.0/LICENSE +7 -0
- cmakefmt-0.8.0/LICENSES/Apache-2.0.txt +201 -0
- cmakefmt-0.8.0/LICENSES/MIT.txt +21 -0
- cmakefmt-0.8.0/PKG-INFO +20 -0
- cmakefmt-0.8.0/README.md +358 -0
- cmakefmt-0.8.0/build.rs +46 -0
- cmakefmt-0.8.0/pyproject.toml +35 -0
- cmakefmt-0.8.0/python/cmakefmt/__init__.py +79 -0
- cmakefmt-0.8.0/src/README.md +35 -0
- cmakefmt-0.8.0/src/config/file.rs +1396 -0
- cmakefmt-0.8.0/src/config/legacy.rs +1866 -0
- cmakefmt-0.8.0/src/config/mod.rs +709 -0
- cmakefmt-0.8.0/src/error.rs +115 -0
- cmakefmt-0.8.0/src/files.rs +100 -0
- cmakefmt-0.8.0/src/formatter/comment.rs +174 -0
- cmakefmt-0.8.0/src/formatter/mod.rs +489 -0
- cmakefmt-0.8.0/src/formatter/node.rs +894 -0
- cmakefmt-0.8.0/src/lib.rs +100 -0
- cmakefmt-0.8.0/src/lsp/mod.rs +587 -0
- cmakefmt-0.8.0/src/main.rs +3924 -0
- cmakefmt-0.8.0/src/parser/ast.rs +96 -0
- cmakefmt-0.8.0/src/parser/cmake.pest +156 -0
- cmakefmt-0.8.0/src/parser/mod.rs +612 -0
- cmakefmt-0.8.0/src/python.rs +131 -0
- cmakefmt-0.8.0/src/spec/builtins.toml +2086 -0
- cmakefmt-0.8.0/src/spec/mod.rs +534 -0
- cmakefmt-0.8.0/src/spec/registry.rs +1052 -0
- cmakefmt-0.8.0/src/wasm.rs +52 -0
|
@@ -0,0 +1,1761 @@
|
|
|
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.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "anes"
|
|
16
|
+
version = "0.1.6"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstream"
|
|
22
|
+
version = "1.0.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"anstyle",
|
|
27
|
+
"anstyle-parse",
|
|
28
|
+
"anstyle-query",
|
|
29
|
+
"anstyle-wincon",
|
|
30
|
+
"colorchoice",
|
|
31
|
+
"is_terminal_polyfill",
|
|
32
|
+
"utf8parse",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstyle"
|
|
37
|
+
version = "1.0.14"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstyle-parse"
|
|
43
|
+
version = "1.0.0"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"utf8parse",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle-query"
|
|
52
|
+
version = "1.1.5"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"windows-sys 0.61.2",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle-wincon"
|
|
61
|
+
version = "3.0.11"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"anstyle",
|
|
66
|
+
"once_cell_polyfill",
|
|
67
|
+
"windows-sys 0.61.2",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "anyhow"
|
|
72
|
+
version = "1.0.102"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "approx"
|
|
78
|
+
version = "0.5.1"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
81
|
+
dependencies = [
|
|
82
|
+
"num-traits",
|
|
83
|
+
]
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "arrayvec"
|
|
87
|
+
version = "0.5.2"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "autocfg"
|
|
93
|
+
version = "1.5.0"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "bitflags"
|
|
99
|
+
version = "1.3.2"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "bitflags"
|
|
105
|
+
version = "2.11.0"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "block-buffer"
|
|
111
|
+
version = "0.10.4"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"generic-array",
|
|
116
|
+
]
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "bstr"
|
|
120
|
+
version = "1.12.1"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
123
|
+
dependencies = [
|
|
124
|
+
"memchr",
|
|
125
|
+
"serde",
|
|
126
|
+
]
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "bumpalo"
|
|
130
|
+
version = "3.20.2"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "cast"
|
|
136
|
+
version = "0.3.0"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "cc"
|
|
142
|
+
version = "1.2.60"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
|
|
145
|
+
dependencies = [
|
|
146
|
+
"find-msvc-tools",
|
|
147
|
+
"shlex",
|
|
148
|
+
]
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "cfg-if"
|
|
152
|
+
version = "1.0.4"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "cfg_aliases"
|
|
158
|
+
version = "0.2.1"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "ciborium"
|
|
164
|
+
version = "0.2.2"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
167
|
+
dependencies = [
|
|
168
|
+
"ciborium-io",
|
|
169
|
+
"ciborium-ll",
|
|
170
|
+
"serde",
|
|
171
|
+
]
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "ciborium-io"
|
|
175
|
+
version = "0.2.2"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "ciborium-ll"
|
|
181
|
+
version = "0.2.2"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
184
|
+
dependencies = [
|
|
185
|
+
"ciborium-io",
|
|
186
|
+
"half",
|
|
187
|
+
]
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "clap"
|
|
191
|
+
version = "4.6.0"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
|
|
194
|
+
dependencies = [
|
|
195
|
+
"clap_builder",
|
|
196
|
+
"clap_derive",
|
|
197
|
+
]
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "clap_builder"
|
|
201
|
+
version = "4.6.0"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
204
|
+
dependencies = [
|
|
205
|
+
"anstream",
|
|
206
|
+
"anstyle",
|
|
207
|
+
"clap_lex",
|
|
208
|
+
"strsim",
|
|
209
|
+
]
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "clap_complete"
|
|
213
|
+
version = "4.6.1"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "406e68b4de5c59cfb8f750a7cbd4d31ae153788b8352167c1e5f4fc26e8c91e9"
|
|
216
|
+
dependencies = [
|
|
217
|
+
"clap",
|
|
218
|
+
]
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "clap_derive"
|
|
222
|
+
version = "4.6.0"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
|
|
225
|
+
dependencies = [
|
|
226
|
+
"heck",
|
|
227
|
+
"proc-macro2",
|
|
228
|
+
"quote",
|
|
229
|
+
"syn",
|
|
230
|
+
]
|
|
231
|
+
|
|
232
|
+
[[package]]
|
|
233
|
+
name = "clap_lex"
|
|
234
|
+
version = "1.1.0"
|
|
235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "clap_mangen"
|
|
240
|
+
version = "0.3.0"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "d82842b45bf9f6a3be090dd860095ac30728042c08e0d6261ca7259b5d850f07"
|
|
243
|
+
dependencies = [
|
|
244
|
+
"clap",
|
|
245
|
+
"roff",
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "cmakefmt-rust"
|
|
250
|
+
version = "0.8.0"
|
|
251
|
+
dependencies = [
|
|
252
|
+
"clap",
|
|
253
|
+
"clap_complete",
|
|
254
|
+
"clap_mangen",
|
|
255
|
+
"codspeed-criterion-compat",
|
|
256
|
+
"ignore",
|
|
257
|
+
"indexmap",
|
|
258
|
+
"indicatif",
|
|
259
|
+
"insta",
|
|
260
|
+
"lsp-server",
|
|
261
|
+
"lsp-types",
|
|
262
|
+
"pest",
|
|
263
|
+
"pest_derive",
|
|
264
|
+
"pretty",
|
|
265
|
+
"pyo3",
|
|
266
|
+
"rayon",
|
|
267
|
+
"regex",
|
|
268
|
+
"schemars",
|
|
269
|
+
"serde",
|
|
270
|
+
"serde_json",
|
|
271
|
+
"serde_yaml_ng",
|
|
272
|
+
"similar 3.1.0",
|
|
273
|
+
"tempfile",
|
|
274
|
+
"thiserror",
|
|
275
|
+
"toml",
|
|
276
|
+
"walkdir",
|
|
277
|
+
"wasm-bindgen",
|
|
278
|
+
]
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "codspeed"
|
|
282
|
+
version = "4.4.1"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "b684e94583e85a5ca7e1a6454a89d76a5121240f2fb67eb564129d9bafdb9db0"
|
|
285
|
+
dependencies = [
|
|
286
|
+
"anyhow",
|
|
287
|
+
"cc",
|
|
288
|
+
"colored",
|
|
289
|
+
"getrandom 0.2.17",
|
|
290
|
+
"glob",
|
|
291
|
+
"libc",
|
|
292
|
+
"nix",
|
|
293
|
+
"serde",
|
|
294
|
+
"serde_json",
|
|
295
|
+
"statrs",
|
|
296
|
+
]
|
|
297
|
+
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "codspeed-criterion-compat"
|
|
300
|
+
version = "4.4.1"
|
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
+
checksum = "2e65444156eb73ad7f57618188f8d4a281726d133ef55b96d1dcff89528609ab"
|
|
303
|
+
dependencies = [
|
|
304
|
+
"clap",
|
|
305
|
+
"codspeed",
|
|
306
|
+
"codspeed-criterion-compat-walltime",
|
|
307
|
+
"colored",
|
|
308
|
+
"regex",
|
|
309
|
+
]
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "codspeed-criterion-compat-walltime"
|
|
313
|
+
version = "4.4.1"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "96389aaa4bbb872ea4924dc0335b2bb181bcf28d6eedbe8fea29afcc5bde36a6"
|
|
316
|
+
dependencies = [
|
|
317
|
+
"anes",
|
|
318
|
+
"cast",
|
|
319
|
+
"ciborium",
|
|
320
|
+
"clap",
|
|
321
|
+
"codspeed",
|
|
322
|
+
"criterion-plot",
|
|
323
|
+
"is-terminal",
|
|
324
|
+
"itertools",
|
|
325
|
+
"num-traits",
|
|
326
|
+
"once_cell",
|
|
327
|
+
"oorandom",
|
|
328
|
+
"plotters",
|
|
329
|
+
"rayon",
|
|
330
|
+
"regex",
|
|
331
|
+
"serde",
|
|
332
|
+
"serde_derive",
|
|
333
|
+
"serde_json",
|
|
334
|
+
"tinytemplate",
|
|
335
|
+
"walkdir",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "colorchoice"
|
|
340
|
+
version = "1.0.5"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "colored"
|
|
346
|
+
version = "2.2.0"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"lazy_static",
|
|
351
|
+
"windows-sys 0.59.0",
|
|
352
|
+
]
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "console"
|
|
356
|
+
version = "0.16.3"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"encode_unicode",
|
|
361
|
+
"libc",
|
|
362
|
+
"unicode-width",
|
|
363
|
+
"windows-sys 0.61.2",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "cpufeatures"
|
|
368
|
+
version = "0.2.17"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
371
|
+
dependencies = [
|
|
372
|
+
"libc",
|
|
373
|
+
]
|
|
374
|
+
|
|
375
|
+
[[package]]
|
|
376
|
+
name = "criterion-plot"
|
|
377
|
+
version = "0.5.0"
|
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
380
|
+
dependencies = [
|
|
381
|
+
"cast",
|
|
382
|
+
"itertools",
|
|
383
|
+
]
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "crossbeam-channel"
|
|
387
|
+
version = "0.5.15"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"crossbeam-utils",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "crossbeam-deque"
|
|
396
|
+
version = "0.8.6"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
399
|
+
dependencies = [
|
|
400
|
+
"crossbeam-epoch",
|
|
401
|
+
"crossbeam-utils",
|
|
402
|
+
]
|
|
403
|
+
|
|
404
|
+
[[package]]
|
|
405
|
+
name = "crossbeam-epoch"
|
|
406
|
+
version = "0.9.18"
|
|
407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
409
|
+
dependencies = [
|
|
410
|
+
"crossbeam-utils",
|
|
411
|
+
]
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "crossbeam-utils"
|
|
415
|
+
version = "0.8.21"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "crunchy"
|
|
421
|
+
version = "0.2.4"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "crypto-common"
|
|
427
|
+
version = "0.1.7"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"generic-array",
|
|
432
|
+
"typenum",
|
|
433
|
+
]
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "digest"
|
|
437
|
+
version = "0.10.7"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
440
|
+
dependencies = [
|
|
441
|
+
"block-buffer",
|
|
442
|
+
"crypto-common",
|
|
443
|
+
]
|
|
444
|
+
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "dyn-clone"
|
|
447
|
+
version = "1.0.20"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
450
|
+
|
|
451
|
+
[[package]]
|
|
452
|
+
name = "either"
|
|
453
|
+
version = "1.15.0"
|
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "encode_unicode"
|
|
459
|
+
version = "1.0.0"
|
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
462
|
+
|
|
463
|
+
[[package]]
|
|
464
|
+
name = "equivalent"
|
|
465
|
+
version = "1.0.2"
|
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
468
|
+
|
|
469
|
+
[[package]]
|
|
470
|
+
name = "errno"
|
|
471
|
+
version = "0.3.14"
|
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
474
|
+
dependencies = [
|
|
475
|
+
"libc",
|
|
476
|
+
"windows-sys 0.61.2",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "fastrand"
|
|
481
|
+
version = "2.4.1"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "find-msvc-tools"
|
|
487
|
+
version = "0.1.9"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "fluent-uri"
|
|
493
|
+
version = "0.1.4"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "17c704e9dbe1ddd863da1e6ff3567795087b1eb201ce80d8fa81162e1516500d"
|
|
496
|
+
dependencies = [
|
|
497
|
+
"bitflags 1.3.2",
|
|
498
|
+
]
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "foldhash"
|
|
502
|
+
version = "0.1.5"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "generic-array"
|
|
508
|
+
version = "0.14.7"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
511
|
+
dependencies = [
|
|
512
|
+
"typenum",
|
|
513
|
+
"version_check",
|
|
514
|
+
]
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "getrandom"
|
|
518
|
+
version = "0.2.17"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
521
|
+
dependencies = [
|
|
522
|
+
"cfg-if",
|
|
523
|
+
"libc",
|
|
524
|
+
"wasi",
|
|
525
|
+
]
|
|
526
|
+
|
|
527
|
+
[[package]]
|
|
528
|
+
name = "getrandom"
|
|
529
|
+
version = "0.4.2"
|
|
530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
532
|
+
dependencies = [
|
|
533
|
+
"cfg-if",
|
|
534
|
+
"libc",
|
|
535
|
+
"r-efi",
|
|
536
|
+
"wasip2",
|
|
537
|
+
"wasip3",
|
|
538
|
+
]
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "glob"
|
|
542
|
+
version = "0.3.3"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "globset"
|
|
548
|
+
version = "0.4.18"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
|
|
551
|
+
dependencies = [
|
|
552
|
+
"aho-corasick",
|
|
553
|
+
"bstr",
|
|
554
|
+
"log",
|
|
555
|
+
"regex-automata",
|
|
556
|
+
"regex-syntax",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "half"
|
|
561
|
+
version = "2.7.1"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"cfg-if",
|
|
566
|
+
"crunchy",
|
|
567
|
+
"zerocopy",
|
|
568
|
+
]
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "hashbrown"
|
|
572
|
+
version = "0.15.5"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"foldhash",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "hashbrown"
|
|
581
|
+
version = "0.17.0"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "heck"
|
|
587
|
+
version = "0.5.0"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "hermit-abi"
|
|
593
|
+
version = "0.5.2"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "id-arena"
|
|
599
|
+
version = "2.3.0"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "ignore"
|
|
605
|
+
version = "0.4.25"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"crossbeam-deque",
|
|
610
|
+
"globset",
|
|
611
|
+
"log",
|
|
612
|
+
"memchr",
|
|
613
|
+
"regex-automata",
|
|
614
|
+
"same-file",
|
|
615
|
+
"walkdir",
|
|
616
|
+
"winapi-util",
|
|
617
|
+
]
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "indexmap"
|
|
621
|
+
version = "2.14.0"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
624
|
+
dependencies = [
|
|
625
|
+
"equivalent",
|
|
626
|
+
"hashbrown 0.17.0",
|
|
627
|
+
"serde",
|
|
628
|
+
"serde_core",
|
|
629
|
+
]
|
|
630
|
+
|
|
631
|
+
[[package]]
|
|
632
|
+
name = "indicatif"
|
|
633
|
+
version = "0.18.4"
|
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
+
checksum = "25470f23803092da7d239834776d653104d551bc4d7eacaf31e6837854b8e9eb"
|
|
636
|
+
dependencies = [
|
|
637
|
+
"console",
|
|
638
|
+
"portable-atomic",
|
|
639
|
+
"unicode-width",
|
|
640
|
+
"unit-prefix",
|
|
641
|
+
"web-time",
|
|
642
|
+
]
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "insta"
|
|
646
|
+
version = "1.47.2"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "7b4a6248eb93a4401ed2f37dfe8ea592d3cf05b7cf4f8efa867b6895af7e094e"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"console",
|
|
651
|
+
"once_cell",
|
|
652
|
+
"similar 2.7.0",
|
|
653
|
+
"tempfile",
|
|
654
|
+
]
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "is-terminal"
|
|
658
|
+
version = "0.4.17"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
661
|
+
dependencies = [
|
|
662
|
+
"hermit-abi",
|
|
663
|
+
"libc",
|
|
664
|
+
"windows-sys 0.61.2",
|
|
665
|
+
]
|
|
666
|
+
|
|
667
|
+
[[package]]
|
|
668
|
+
name = "is_terminal_polyfill"
|
|
669
|
+
version = "1.70.2"
|
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
672
|
+
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "itertools"
|
|
675
|
+
version = "0.10.5"
|
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
678
|
+
dependencies = [
|
|
679
|
+
"either",
|
|
680
|
+
]
|
|
681
|
+
|
|
682
|
+
[[package]]
|
|
683
|
+
name = "itoa"
|
|
684
|
+
version = "1.0.18"
|
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
687
|
+
|
|
688
|
+
[[package]]
|
|
689
|
+
name = "js-sys"
|
|
690
|
+
version = "0.3.95"
|
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
+
checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
|
|
693
|
+
dependencies = [
|
|
694
|
+
"once_cell",
|
|
695
|
+
"wasm-bindgen",
|
|
696
|
+
]
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "lazy_static"
|
|
700
|
+
version = "1.5.0"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "leb128fmt"
|
|
706
|
+
version = "0.1.0"
|
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
709
|
+
|
|
710
|
+
[[package]]
|
|
711
|
+
name = "libc"
|
|
712
|
+
version = "0.2.184"
|
|
713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
+
checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
|
|
715
|
+
|
|
716
|
+
[[package]]
|
|
717
|
+
name = "linux-raw-sys"
|
|
718
|
+
version = "0.12.1"
|
|
719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
721
|
+
|
|
722
|
+
[[package]]
|
|
723
|
+
name = "log"
|
|
724
|
+
version = "0.4.29"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "lsp-server"
|
|
730
|
+
version = "0.7.9"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "7d6ada348dbc2703cbe7637b2dda05cff84d3da2819c24abcb305dd613e0ba2e"
|
|
733
|
+
dependencies = [
|
|
734
|
+
"crossbeam-channel",
|
|
735
|
+
"log",
|
|
736
|
+
"serde",
|
|
737
|
+
"serde_derive",
|
|
738
|
+
"serde_json",
|
|
739
|
+
]
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "lsp-types"
|
|
743
|
+
version = "0.97.0"
|
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
+
checksum = "53353550a17c04ac46c585feb189c2db82154fc84b79c7a66c96c2c644f66071"
|
|
746
|
+
dependencies = [
|
|
747
|
+
"bitflags 1.3.2",
|
|
748
|
+
"fluent-uri",
|
|
749
|
+
"serde",
|
|
750
|
+
"serde_json",
|
|
751
|
+
"serde_repr",
|
|
752
|
+
]
|
|
753
|
+
|
|
754
|
+
[[package]]
|
|
755
|
+
name = "memchr"
|
|
756
|
+
version = "2.8.0"
|
|
757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
759
|
+
|
|
760
|
+
[[package]]
|
|
761
|
+
name = "nix"
|
|
762
|
+
version = "0.31.2"
|
|
763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
+
checksum = "5d6d0705320c1e6ba1d912b5e37cf18071b6c2e9b7fa8215a1e8a7651966f5d3"
|
|
765
|
+
dependencies = [
|
|
766
|
+
"bitflags 2.11.0",
|
|
767
|
+
"cfg-if",
|
|
768
|
+
"cfg_aliases",
|
|
769
|
+
"libc",
|
|
770
|
+
]
|
|
771
|
+
|
|
772
|
+
[[package]]
|
|
773
|
+
name = "num-traits"
|
|
774
|
+
version = "0.2.19"
|
|
775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
777
|
+
dependencies = [
|
|
778
|
+
"autocfg",
|
|
779
|
+
]
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "once_cell"
|
|
783
|
+
version = "1.21.4"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "once_cell_polyfill"
|
|
789
|
+
version = "1.70.2"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
792
|
+
|
|
793
|
+
[[package]]
|
|
794
|
+
name = "oorandom"
|
|
795
|
+
version = "11.1.5"
|
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
798
|
+
|
|
799
|
+
[[package]]
|
|
800
|
+
name = "pest"
|
|
801
|
+
version = "2.8.6"
|
|
802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
+
checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
|
|
804
|
+
dependencies = [
|
|
805
|
+
"memchr",
|
|
806
|
+
"ucd-trie",
|
|
807
|
+
]
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "pest_derive"
|
|
811
|
+
version = "2.8.6"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
|
|
814
|
+
dependencies = [
|
|
815
|
+
"pest",
|
|
816
|
+
"pest_generator",
|
|
817
|
+
]
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "pest_generator"
|
|
821
|
+
version = "2.8.6"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
|
|
824
|
+
dependencies = [
|
|
825
|
+
"pest",
|
|
826
|
+
"pest_meta",
|
|
827
|
+
"proc-macro2",
|
|
828
|
+
"quote",
|
|
829
|
+
"syn",
|
|
830
|
+
]
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "pest_meta"
|
|
834
|
+
version = "2.8.6"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
|
|
837
|
+
dependencies = [
|
|
838
|
+
"pest",
|
|
839
|
+
"sha2",
|
|
840
|
+
]
|
|
841
|
+
|
|
842
|
+
[[package]]
|
|
843
|
+
name = "plotters"
|
|
844
|
+
version = "0.3.7"
|
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
847
|
+
dependencies = [
|
|
848
|
+
"num-traits",
|
|
849
|
+
"plotters-backend",
|
|
850
|
+
"plotters-svg",
|
|
851
|
+
"wasm-bindgen",
|
|
852
|
+
"web-sys",
|
|
853
|
+
]
|
|
854
|
+
|
|
855
|
+
[[package]]
|
|
856
|
+
name = "plotters-backend"
|
|
857
|
+
version = "0.3.7"
|
|
858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
860
|
+
|
|
861
|
+
[[package]]
|
|
862
|
+
name = "plotters-svg"
|
|
863
|
+
version = "0.3.7"
|
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
866
|
+
dependencies = [
|
|
867
|
+
"plotters-backend",
|
|
868
|
+
]
|
|
869
|
+
|
|
870
|
+
[[package]]
|
|
871
|
+
name = "portable-atomic"
|
|
872
|
+
version = "1.13.1"
|
|
873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
875
|
+
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "pretty"
|
|
878
|
+
version = "0.12.5"
|
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
+
checksum = "0d22152487193190344590e4f30e219cf3fe140d9e7a3fdb683d82aa2c5f4156"
|
|
881
|
+
dependencies = [
|
|
882
|
+
"arrayvec",
|
|
883
|
+
"typed-arena",
|
|
884
|
+
"unicode-width",
|
|
885
|
+
]
|
|
886
|
+
|
|
887
|
+
[[package]]
|
|
888
|
+
name = "prettyplease"
|
|
889
|
+
version = "0.2.37"
|
|
890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
891
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
892
|
+
dependencies = [
|
|
893
|
+
"proc-macro2",
|
|
894
|
+
"syn",
|
|
895
|
+
]
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "proc-macro2"
|
|
899
|
+
version = "1.0.106"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
902
|
+
dependencies = [
|
|
903
|
+
"unicode-ident",
|
|
904
|
+
]
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "pyo3"
|
|
908
|
+
version = "0.28.3"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
|
|
911
|
+
dependencies = [
|
|
912
|
+
"libc",
|
|
913
|
+
"once_cell",
|
|
914
|
+
"portable-atomic",
|
|
915
|
+
"pyo3-build-config",
|
|
916
|
+
"pyo3-ffi",
|
|
917
|
+
"pyo3-macros",
|
|
918
|
+
]
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "pyo3-build-config"
|
|
922
|
+
version = "0.28.3"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"target-lexicon",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "pyo3-ffi"
|
|
931
|
+
version = "0.28.3"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"libc",
|
|
936
|
+
"pyo3-build-config",
|
|
937
|
+
]
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "pyo3-macros"
|
|
941
|
+
version = "0.28.3"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
|
|
944
|
+
dependencies = [
|
|
945
|
+
"proc-macro2",
|
|
946
|
+
"pyo3-macros-backend",
|
|
947
|
+
"quote",
|
|
948
|
+
"syn",
|
|
949
|
+
]
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "pyo3-macros-backend"
|
|
953
|
+
version = "0.28.3"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
|
|
956
|
+
dependencies = [
|
|
957
|
+
"heck",
|
|
958
|
+
"proc-macro2",
|
|
959
|
+
"pyo3-build-config",
|
|
960
|
+
"quote",
|
|
961
|
+
"syn",
|
|
962
|
+
]
|
|
963
|
+
|
|
964
|
+
[[package]]
|
|
965
|
+
name = "quote"
|
|
966
|
+
version = "1.0.45"
|
|
967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
968
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
969
|
+
dependencies = [
|
|
970
|
+
"proc-macro2",
|
|
971
|
+
]
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "r-efi"
|
|
975
|
+
version = "6.0.0"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
978
|
+
|
|
979
|
+
[[package]]
|
|
980
|
+
name = "rayon"
|
|
981
|
+
version = "1.11.0"
|
|
982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
983
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
984
|
+
dependencies = [
|
|
985
|
+
"either",
|
|
986
|
+
"rayon-core",
|
|
987
|
+
]
|
|
988
|
+
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "rayon-core"
|
|
991
|
+
version = "1.13.0"
|
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
994
|
+
dependencies = [
|
|
995
|
+
"crossbeam-deque",
|
|
996
|
+
"crossbeam-utils",
|
|
997
|
+
]
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "ref-cast"
|
|
1001
|
+
version = "1.0.25"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
1004
|
+
dependencies = [
|
|
1005
|
+
"ref-cast-impl",
|
|
1006
|
+
]
|
|
1007
|
+
|
|
1008
|
+
[[package]]
|
|
1009
|
+
name = "ref-cast-impl"
|
|
1010
|
+
version = "1.0.25"
|
|
1011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
1013
|
+
dependencies = [
|
|
1014
|
+
"proc-macro2",
|
|
1015
|
+
"quote",
|
|
1016
|
+
"syn",
|
|
1017
|
+
]
|
|
1018
|
+
|
|
1019
|
+
[[package]]
|
|
1020
|
+
name = "regex"
|
|
1021
|
+
version = "1.12.3"
|
|
1022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1023
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
1024
|
+
dependencies = [
|
|
1025
|
+
"aho-corasick",
|
|
1026
|
+
"memchr",
|
|
1027
|
+
"regex-automata",
|
|
1028
|
+
"regex-syntax",
|
|
1029
|
+
]
|
|
1030
|
+
|
|
1031
|
+
[[package]]
|
|
1032
|
+
name = "regex-automata"
|
|
1033
|
+
version = "0.4.14"
|
|
1034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1035
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1036
|
+
dependencies = [
|
|
1037
|
+
"aho-corasick",
|
|
1038
|
+
"memchr",
|
|
1039
|
+
"regex-syntax",
|
|
1040
|
+
]
|
|
1041
|
+
|
|
1042
|
+
[[package]]
|
|
1043
|
+
name = "regex-syntax"
|
|
1044
|
+
version = "0.8.10"
|
|
1045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1046
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1047
|
+
|
|
1048
|
+
[[package]]
|
|
1049
|
+
name = "roff"
|
|
1050
|
+
version = "1.1.1"
|
|
1051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1052
|
+
checksum = "323c417e1d9665a65b263ec744ba09030cfb277e9daa0b018a4ab62e57bc8189"
|
|
1053
|
+
|
|
1054
|
+
[[package]]
|
|
1055
|
+
name = "rustix"
|
|
1056
|
+
version = "1.1.4"
|
|
1057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1059
|
+
dependencies = [
|
|
1060
|
+
"bitflags 2.11.0",
|
|
1061
|
+
"errno",
|
|
1062
|
+
"libc",
|
|
1063
|
+
"linux-raw-sys",
|
|
1064
|
+
"windows-sys 0.61.2",
|
|
1065
|
+
]
|
|
1066
|
+
|
|
1067
|
+
[[package]]
|
|
1068
|
+
name = "rustversion"
|
|
1069
|
+
version = "1.0.22"
|
|
1070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "ryu"
|
|
1075
|
+
version = "1.0.23"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "same-file"
|
|
1081
|
+
version = "1.0.6"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1084
|
+
dependencies = [
|
|
1085
|
+
"winapi-util",
|
|
1086
|
+
]
|
|
1087
|
+
|
|
1088
|
+
[[package]]
|
|
1089
|
+
name = "schemars"
|
|
1090
|
+
version = "1.2.1"
|
|
1091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1092
|
+
checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
|
|
1093
|
+
dependencies = [
|
|
1094
|
+
"dyn-clone",
|
|
1095
|
+
"ref-cast",
|
|
1096
|
+
"schemars_derive",
|
|
1097
|
+
"serde",
|
|
1098
|
+
"serde_json",
|
|
1099
|
+
]
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "schemars_derive"
|
|
1103
|
+
version = "1.2.1"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"proc-macro2",
|
|
1108
|
+
"quote",
|
|
1109
|
+
"serde_derive_internals",
|
|
1110
|
+
"syn",
|
|
1111
|
+
]
|
|
1112
|
+
|
|
1113
|
+
[[package]]
|
|
1114
|
+
name = "semver"
|
|
1115
|
+
version = "1.0.28"
|
|
1116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1118
|
+
|
|
1119
|
+
[[package]]
|
|
1120
|
+
name = "serde"
|
|
1121
|
+
version = "1.0.228"
|
|
1122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1124
|
+
dependencies = [
|
|
1125
|
+
"serde_core",
|
|
1126
|
+
"serde_derive",
|
|
1127
|
+
]
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "serde_core"
|
|
1131
|
+
version = "1.0.228"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1134
|
+
dependencies = [
|
|
1135
|
+
"serde_derive",
|
|
1136
|
+
]
|
|
1137
|
+
|
|
1138
|
+
[[package]]
|
|
1139
|
+
name = "serde_derive"
|
|
1140
|
+
version = "1.0.228"
|
|
1141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1143
|
+
dependencies = [
|
|
1144
|
+
"proc-macro2",
|
|
1145
|
+
"quote",
|
|
1146
|
+
"syn",
|
|
1147
|
+
]
|
|
1148
|
+
|
|
1149
|
+
[[package]]
|
|
1150
|
+
name = "serde_derive_internals"
|
|
1151
|
+
version = "0.29.1"
|
|
1152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1153
|
+
checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
|
|
1154
|
+
dependencies = [
|
|
1155
|
+
"proc-macro2",
|
|
1156
|
+
"quote",
|
|
1157
|
+
"syn",
|
|
1158
|
+
]
|
|
1159
|
+
|
|
1160
|
+
[[package]]
|
|
1161
|
+
name = "serde_json"
|
|
1162
|
+
version = "1.0.149"
|
|
1163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1164
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1165
|
+
dependencies = [
|
|
1166
|
+
"itoa",
|
|
1167
|
+
"memchr",
|
|
1168
|
+
"serde",
|
|
1169
|
+
"serde_core",
|
|
1170
|
+
"zmij",
|
|
1171
|
+
]
|
|
1172
|
+
|
|
1173
|
+
[[package]]
|
|
1174
|
+
name = "serde_repr"
|
|
1175
|
+
version = "0.1.20"
|
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
+
checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
|
|
1178
|
+
dependencies = [
|
|
1179
|
+
"proc-macro2",
|
|
1180
|
+
"quote",
|
|
1181
|
+
"syn",
|
|
1182
|
+
]
|
|
1183
|
+
|
|
1184
|
+
[[package]]
|
|
1185
|
+
name = "serde_spanned"
|
|
1186
|
+
version = "1.1.1"
|
|
1187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1188
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
1189
|
+
dependencies = [
|
|
1190
|
+
"serde_core",
|
|
1191
|
+
]
|
|
1192
|
+
|
|
1193
|
+
[[package]]
|
|
1194
|
+
name = "serde_yaml_ng"
|
|
1195
|
+
version = "0.10.0"
|
|
1196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
+
checksum = "7b4db627b98b36d4203a7b458cf3573730f2bb591b28871d916dfa9efabfd41f"
|
|
1198
|
+
dependencies = [
|
|
1199
|
+
"indexmap",
|
|
1200
|
+
"itoa",
|
|
1201
|
+
"ryu",
|
|
1202
|
+
"serde",
|
|
1203
|
+
"unsafe-libyaml",
|
|
1204
|
+
]
|
|
1205
|
+
|
|
1206
|
+
[[package]]
|
|
1207
|
+
name = "sha2"
|
|
1208
|
+
version = "0.10.9"
|
|
1209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1211
|
+
dependencies = [
|
|
1212
|
+
"cfg-if",
|
|
1213
|
+
"cpufeatures",
|
|
1214
|
+
"digest",
|
|
1215
|
+
]
|
|
1216
|
+
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "shlex"
|
|
1219
|
+
version = "1.3.0"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1222
|
+
|
|
1223
|
+
[[package]]
|
|
1224
|
+
name = "similar"
|
|
1225
|
+
version = "2.7.0"
|
|
1226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1227
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
1228
|
+
|
|
1229
|
+
[[package]]
|
|
1230
|
+
name = "similar"
|
|
1231
|
+
version = "3.1.0"
|
|
1232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1233
|
+
checksum = "04d93e861ede2e497b47833469b8ec9d5c07fa4c78ce7a00f6eb7dd8168b4b3f"
|
|
1234
|
+
dependencies = [
|
|
1235
|
+
"bstr",
|
|
1236
|
+
]
|
|
1237
|
+
|
|
1238
|
+
[[package]]
|
|
1239
|
+
name = "statrs"
|
|
1240
|
+
version = "0.18.0"
|
|
1241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1242
|
+
checksum = "2a3fe7c28c6512e766b0874335db33c94ad7b8f9054228ae1c2abd47ce7d335e"
|
|
1243
|
+
dependencies = [
|
|
1244
|
+
"approx",
|
|
1245
|
+
"num-traits",
|
|
1246
|
+
]
|
|
1247
|
+
|
|
1248
|
+
[[package]]
|
|
1249
|
+
name = "strsim"
|
|
1250
|
+
version = "0.11.1"
|
|
1251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1253
|
+
|
|
1254
|
+
[[package]]
|
|
1255
|
+
name = "syn"
|
|
1256
|
+
version = "2.0.117"
|
|
1257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1258
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1259
|
+
dependencies = [
|
|
1260
|
+
"proc-macro2",
|
|
1261
|
+
"quote",
|
|
1262
|
+
"unicode-ident",
|
|
1263
|
+
]
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "target-lexicon"
|
|
1267
|
+
version = "0.13.5"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1270
|
+
|
|
1271
|
+
[[package]]
|
|
1272
|
+
name = "tempfile"
|
|
1273
|
+
version = "3.27.0"
|
|
1274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1275
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
1276
|
+
dependencies = [
|
|
1277
|
+
"fastrand",
|
|
1278
|
+
"getrandom 0.4.2",
|
|
1279
|
+
"once_cell",
|
|
1280
|
+
"rustix",
|
|
1281
|
+
"windows-sys 0.61.2",
|
|
1282
|
+
]
|
|
1283
|
+
|
|
1284
|
+
[[package]]
|
|
1285
|
+
name = "thiserror"
|
|
1286
|
+
version = "2.0.18"
|
|
1287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1288
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1289
|
+
dependencies = [
|
|
1290
|
+
"thiserror-impl",
|
|
1291
|
+
]
|
|
1292
|
+
|
|
1293
|
+
[[package]]
|
|
1294
|
+
name = "thiserror-impl"
|
|
1295
|
+
version = "2.0.18"
|
|
1296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1297
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1298
|
+
dependencies = [
|
|
1299
|
+
"proc-macro2",
|
|
1300
|
+
"quote",
|
|
1301
|
+
"syn",
|
|
1302
|
+
]
|
|
1303
|
+
|
|
1304
|
+
[[package]]
|
|
1305
|
+
name = "tinytemplate"
|
|
1306
|
+
version = "1.2.1"
|
|
1307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
1309
|
+
dependencies = [
|
|
1310
|
+
"serde",
|
|
1311
|
+
"serde_json",
|
|
1312
|
+
]
|
|
1313
|
+
|
|
1314
|
+
[[package]]
|
|
1315
|
+
name = "toml"
|
|
1316
|
+
version = "1.1.2+spec-1.1.0"
|
|
1317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1318
|
+
checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
|
|
1319
|
+
dependencies = [
|
|
1320
|
+
"indexmap",
|
|
1321
|
+
"serde_core",
|
|
1322
|
+
"serde_spanned",
|
|
1323
|
+
"toml_datetime",
|
|
1324
|
+
"toml_parser",
|
|
1325
|
+
"toml_writer",
|
|
1326
|
+
"winnow",
|
|
1327
|
+
]
|
|
1328
|
+
|
|
1329
|
+
[[package]]
|
|
1330
|
+
name = "toml_datetime"
|
|
1331
|
+
version = "1.1.1+spec-1.1.0"
|
|
1332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1333
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
1334
|
+
dependencies = [
|
|
1335
|
+
"serde_core",
|
|
1336
|
+
]
|
|
1337
|
+
|
|
1338
|
+
[[package]]
|
|
1339
|
+
name = "toml_parser"
|
|
1340
|
+
version = "1.1.2+spec-1.1.0"
|
|
1341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
1343
|
+
dependencies = [
|
|
1344
|
+
"winnow",
|
|
1345
|
+
]
|
|
1346
|
+
|
|
1347
|
+
[[package]]
|
|
1348
|
+
name = "toml_writer"
|
|
1349
|
+
version = "1.1.1+spec-1.1.0"
|
|
1350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1351
|
+
checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
|
|
1352
|
+
|
|
1353
|
+
[[package]]
|
|
1354
|
+
name = "typed-arena"
|
|
1355
|
+
version = "2.0.2"
|
|
1356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
+
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
|
1358
|
+
|
|
1359
|
+
[[package]]
|
|
1360
|
+
name = "typenum"
|
|
1361
|
+
version = "1.19.0"
|
|
1362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1363
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
1364
|
+
|
|
1365
|
+
[[package]]
|
|
1366
|
+
name = "ucd-trie"
|
|
1367
|
+
version = "0.1.7"
|
|
1368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1369
|
+
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
|
1370
|
+
|
|
1371
|
+
[[package]]
|
|
1372
|
+
name = "unicode-ident"
|
|
1373
|
+
version = "1.0.24"
|
|
1374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1375
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1376
|
+
|
|
1377
|
+
[[package]]
|
|
1378
|
+
name = "unicode-width"
|
|
1379
|
+
version = "0.2.2"
|
|
1380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1381
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1382
|
+
|
|
1383
|
+
[[package]]
|
|
1384
|
+
name = "unicode-xid"
|
|
1385
|
+
version = "0.2.6"
|
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1388
|
+
|
|
1389
|
+
[[package]]
|
|
1390
|
+
name = "unit-prefix"
|
|
1391
|
+
version = "0.5.2"
|
|
1392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1393
|
+
checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
|
|
1394
|
+
|
|
1395
|
+
[[package]]
|
|
1396
|
+
name = "unsafe-libyaml"
|
|
1397
|
+
version = "0.2.11"
|
|
1398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
1400
|
+
|
|
1401
|
+
[[package]]
|
|
1402
|
+
name = "utf8parse"
|
|
1403
|
+
version = "0.2.2"
|
|
1404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1406
|
+
|
|
1407
|
+
[[package]]
|
|
1408
|
+
name = "version_check"
|
|
1409
|
+
version = "0.9.5"
|
|
1410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1411
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1412
|
+
|
|
1413
|
+
[[package]]
|
|
1414
|
+
name = "walkdir"
|
|
1415
|
+
version = "2.5.0"
|
|
1416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1417
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1418
|
+
dependencies = [
|
|
1419
|
+
"same-file",
|
|
1420
|
+
"winapi-util",
|
|
1421
|
+
]
|
|
1422
|
+
|
|
1423
|
+
[[package]]
|
|
1424
|
+
name = "wasi"
|
|
1425
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1427
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1428
|
+
|
|
1429
|
+
[[package]]
|
|
1430
|
+
name = "wasip2"
|
|
1431
|
+
version = "1.0.2+wasi-0.2.9"
|
|
1432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1433
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
1434
|
+
dependencies = [
|
|
1435
|
+
"wit-bindgen",
|
|
1436
|
+
]
|
|
1437
|
+
|
|
1438
|
+
[[package]]
|
|
1439
|
+
name = "wasip3"
|
|
1440
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
1441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1442
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
1443
|
+
dependencies = [
|
|
1444
|
+
"wit-bindgen",
|
|
1445
|
+
]
|
|
1446
|
+
|
|
1447
|
+
[[package]]
|
|
1448
|
+
name = "wasm-bindgen"
|
|
1449
|
+
version = "0.2.118"
|
|
1450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
+
checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
|
|
1452
|
+
dependencies = [
|
|
1453
|
+
"cfg-if",
|
|
1454
|
+
"once_cell",
|
|
1455
|
+
"rustversion",
|
|
1456
|
+
"wasm-bindgen-macro",
|
|
1457
|
+
"wasm-bindgen-shared",
|
|
1458
|
+
]
|
|
1459
|
+
|
|
1460
|
+
[[package]]
|
|
1461
|
+
name = "wasm-bindgen-macro"
|
|
1462
|
+
version = "0.2.118"
|
|
1463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1464
|
+
checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
|
|
1465
|
+
dependencies = [
|
|
1466
|
+
"quote",
|
|
1467
|
+
"wasm-bindgen-macro-support",
|
|
1468
|
+
]
|
|
1469
|
+
|
|
1470
|
+
[[package]]
|
|
1471
|
+
name = "wasm-bindgen-macro-support"
|
|
1472
|
+
version = "0.2.118"
|
|
1473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
|
+
checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
|
|
1475
|
+
dependencies = [
|
|
1476
|
+
"bumpalo",
|
|
1477
|
+
"proc-macro2",
|
|
1478
|
+
"quote",
|
|
1479
|
+
"syn",
|
|
1480
|
+
"wasm-bindgen-shared",
|
|
1481
|
+
]
|
|
1482
|
+
|
|
1483
|
+
[[package]]
|
|
1484
|
+
name = "wasm-bindgen-shared"
|
|
1485
|
+
version = "0.2.118"
|
|
1486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1487
|
+
checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
|
|
1488
|
+
dependencies = [
|
|
1489
|
+
"unicode-ident",
|
|
1490
|
+
]
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "wasm-encoder"
|
|
1494
|
+
version = "0.244.0"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
1497
|
+
dependencies = [
|
|
1498
|
+
"leb128fmt",
|
|
1499
|
+
"wasmparser",
|
|
1500
|
+
]
|
|
1501
|
+
|
|
1502
|
+
[[package]]
|
|
1503
|
+
name = "wasm-metadata"
|
|
1504
|
+
version = "0.244.0"
|
|
1505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1506
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
1507
|
+
dependencies = [
|
|
1508
|
+
"anyhow",
|
|
1509
|
+
"indexmap",
|
|
1510
|
+
"wasm-encoder",
|
|
1511
|
+
"wasmparser",
|
|
1512
|
+
]
|
|
1513
|
+
|
|
1514
|
+
[[package]]
|
|
1515
|
+
name = "wasmparser"
|
|
1516
|
+
version = "0.244.0"
|
|
1517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1518
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
1519
|
+
dependencies = [
|
|
1520
|
+
"bitflags 2.11.0",
|
|
1521
|
+
"hashbrown 0.15.5",
|
|
1522
|
+
"indexmap",
|
|
1523
|
+
"semver",
|
|
1524
|
+
]
|
|
1525
|
+
|
|
1526
|
+
[[package]]
|
|
1527
|
+
name = "web-sys"
|
|
1528
|
+
version = "0.3.95"
|
|
1529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1530
|
+
checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
|
|
1531
|
+
dependencies = [
|
|
1532
|
+
"js-sys",
|
|
1533
|
+
"wasm-bindgen",
|
|
1534
|
+
]
|
|
1535
|
+
|
|
1536
|
+
[[package]]
|
|
1537
|
+
name = "web-time"
|
|
1538
|
+
version = "1.1.0"
|
|
1539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1540
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
1541
|
+
dependencies = [
|
|
1542
|
+
"js-sys",
|
|
1543
|
+
"wasm-bindgen",
|
|
1544
|
+
]
|
|
1545
|
+
|
|
1546
|
+
[[package]]
|
|
1547
|
+
name = "winapi-util"
|
|
1548
|
+
version = "0.1.11"
|
|
1549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1550
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1551
|
+
dependencies = [
|
|
1552
|
+
"windows-sys 0.61.2",
|
|
1553
|
+
]
|
|
1554
|
+
|
|
1555
|
+
[[package]]
|
|
1556
|
+
name = "windows-link"
|
|
1557
|
+
version = "0.2.1"
|
|
1558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1559
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1560
|
+
|
|
1561
|
+
[[package]]
|
|
1562
|
+
name = "windows-sys"
|
|
1563
|
+
version = "0.59.0"
|
|
1564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1565
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1566
|
+
dependencies = [
|
|
1567
|
+
"windows-targets",
|
|
1568
|
+
]
|
|
1569
|
+
|
|
1570
|
+
[[package]]
|
|
1571
|
+
name = "windows-sys"
|
|
1572
|
+
version = "0.61.2"
|
|
1573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1574
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1575
|
+
dependencies = [
|
|
1576
|
+
"windows-link",
|
|
1577
|
+
]
|
|
1578
|
+
|
|
1579
|
+
[[package]]
|
|
1580
|
+
name = "windows-targets"
|
|
1581
|
+
version = "0.52.6"
|
|
1582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1583
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1584
|
+
dependencies = [
|
|
1585
|
+
"windows_aarch64_gnullvm",
|
|
1586
|
+
"windows_aarch64_msvc",
|
|
1587
|
+
"windows_i686_gnu",
|
|
1588
|
+
"windows_i686_gnullvm",
|
|
1589
|
+
"windows_i686_msvc",
|
|
1590
|
+
"windows_x86_64_gnu",
|
|
1591
|
+
"windows_x86_64_gnullvm",
|
|
1592
|
+
"windows_x86_64_msvc",
|
|
1593
|
+
]
|
|
1594
|
+
|
|
1595
|
+
[[package]]
|
|
1596
|
+
name = "windows_aarch64_gnullvm"
|
|
1597
|
+
version = "0.52.6"
|
|
1598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1600
|
+
|
|
1601
|
+
[[package]]
|
|
1602
|
+
name = "windows_aarch64_msvc"
|
|
1603
|
+
version = "0.52.6"
|
|
1604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1605
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1606
|
+
|
|
1607
|
+
[[package]]
|
|
1608
|
+
name = "windows_i686_gnu"
|
|
1609
|
+
version = "0.52.6"
|
|
1610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1611
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1612
|
+
|
|
1613
|
+
[[package]]
|
|
1614
|
+
name = "windows_i686_gnullvm"
|
|
1615
|
+
version = "0.52.6"
|
|
1616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1617
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1618
|
+
|
|
1619
|
+
[[package]]
|
|
1620
|
+
name = "windows_i686_msvc"
|
|
1621
|
+
version = "0.52.6"
|
|
1622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1623
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1624
|
+
|
|
1625
|
+
[[package]]
|
|
1626
|
+
name = "windows_x86_64_gnu"
|
|
1627
|
+
version = "0.52.6"
|
|
1628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1630
|
+
|
|
1631
|
+
[[package]]
|
|
1632
|
+
name = "windows_x86_64_gnullvm"
|
|
1633
|
+
version = "0.52.6"
|
|
1634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1636
|
+
|
|
1637
|
+
[[package]]
|
|
1638
|
+
name = "windows_x86_64_msvc"
|
|
1639
|
+
version = "0.52.6"
|
|
1640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1641
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1642
|
+
|
|
1643
|
+
[[package]]
|
|
1644
|
+
name = "winnow"
|
|
1645
|
+
version = "1.0.1"
|
|
1646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
+
checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
|
|
1648
|
+
|
|
1649
|
+
[[package]]
|
|
1650
|
+
name = "wit-bindgen"
|
|
1651
|
+
version = "0.51.0"
|
|
1652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1653
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1654
|
+
dependencies = [
|
|
1655
|
+
"wit-bindgen-rust-macro",
|
|
1656
|
+
]
|
|
1657
|
+
|
|
1658
|
+
[[package]]
|
|
1659
|
+
name = "wit-bindgen-core"
|
|
1660
|
+
version = "0.51.0"
|
|
1661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1662
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
1663
|
+
dependencies = [
|
|
1664
|
+
"anyhow",
|
|
1665
|
+
"heck",
|
|
1666
|
+
"wit-parser",
|
|
1667
|
+
]
|
|
1668
|
+
|
|
1669
|
+
[[package]]
|
|
1670
|
+
name = "wit-bindgen-rust"
|
|
1671
|
+
version = "0.51.0"
|
|
1672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1673
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
1674
|
+
dependencies = [
|
|
1675
|
+
"anyhow",
|
|
1676
|
+
"heck",
|
|
1677
|
+
"indexmap",
|
|
1678
|
+
"prettyplease",
|
|
1679
|
+
"syn",
|
|
1680
|
+
"wasm-metadata",
|
|
1681
|
+
"wit-bindgen-core",
|
|
1682
|
+
"wit-component",
|
|
1683
|
+
]
|
|
1684
|
+
|
|
1685
|
+
[[package]]
|
|
1686
|
+
name = "wit-bindgen-rust-macro"
|
|
1687
|
+
version = "0.51.0"
|
|
1688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1689
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
1690
|
+
dependencies = [
|
|
1691
|
+
"anyhow",
|
|
1692
|
+
"prettyplease",
|
|
1693
|
+
"proc-macro2",
|
|
1694
|
+
"quote",
|
|
1695
|
+
"syn",
|
|
1696
|
+
"wit-bindgen-core",
|
|
1697
|
+
"wit-bindgen-rust",
|
|
1698
|
+
]
|
|
1699
|
+
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "wit-component"
|
|
1702
|
+
version = "0.244.0"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
1705
|
+
dependencies = [
|
|
1706
|
+
"anyhow",
|
|
1707
|
+
"bitflags 2.11.0",
|
|
1708
|
+
"indexmap",
|
|
1709
|
+
"log",
|
|
1710
|
+
"serde",
|
|
1711
|
+
"serde_derive",
|
|
1712
|
+
"serde_json",
|
|
1713
|
+
"wasm-encoder",
|
|
1714
|
+
"wasm-metadata",
|
|
1715
|
+
"wasmparser",
|
|
1716
|
+
"wit-parser",
|
|
1717
|
+
]
|
|
1718
|
+
|
|
1719
|
+
[[package]]
|
|
1720
|
+
name = "wit-parser"
|
|
1721
|
+
version = "0.244.0"
|
|
1722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1723
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
1724
|
+
dependencies = [
|
|
1725
|
+
"anyhow",
|
|
1726
|
+
"id-arena",
|
|
1727
|
+
"indexmap",
|
|
1728
|
+
"log",
|
|
1729
|
+
"semver",
|
|
1730
|
+
"serde",
|
|
1731
|
+
"serde_derive",
|
|
1732
|
+
"serde_json",
|
|
1733
|
+
"unicode-xid",
|
|
1734
|
+
"wasmparser",
|
|
1735
|
+
]
|
|
1736
|
+
|
|
1737
|
+
[[package]]
|
|
1738
|
+
name = "zerocopy"
|
|
1739
|
+
version = "0.8.48"
|
|
1740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1741
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
1742
|
+
dependencies = [
|
|
1743
|
+
"zerocopy-derive",
|
|
1744
|
+
]
|
|
1745
|
+
|
|
1746
|
+
[[package]]
|
|
1747
|
+
name = "zerocopy-derive"
|
|
1748
|
+
version = "0.8.48"
|
|
1749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1750
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
1751
|
+
dependencies = [
|
|
1752
|
+
"proc-macro2",
|
|
1753
|
+
"quote",
|
|
1754
|
+
"syn",
|
|
1755
|
+
]
|
|
1756
|
+
|
|
1757
|
+
[[package]]
|
|
1758
|
+
name = "zmij"
|
|
1759
|
+
version = "1.0.21"
|
|
1760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|