markdown-script 0.4.2__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.
Files changed (86) hide show
  1. markdown_script-0.4.2/Cargo.lock +1617 -0
  2. markdown_script-0.4.2/Cargo.toml +86 -0
  3. markdown_script-0.4.2/LICENSE +21 -0
  4. markdown_script-0.4.2/PKG-INFO +149 -0
  5. markdown_script-0.4.2/README.md +123 -0
  6. markdown_script-0.4.2/crates/mds-core/Cargo.toml +25 -0
  7. markdown_script-0.4.2/crates/mds-core/README.md +383 -0
  8. markdown_script-0.4.2/crates/mds-core/src/arity.rs +52 -0
  9. markdown_script-0.4.2/crates/mds-core/src/ast.rs +401 -0
  10. markdown_script-0.4.2/crates/mds-core/src/builtins.rs +1150 -0
  11. markdown_script-0.4.2/crates/mds-core/src/error.rs +1163 -0
  12. markdown_script-0.4.2/crates/mds-core/src/error_tests.rs +792 -0
  13. markdown_script-0.4.2/crates/mds-core/src/evaluator.rs +2535 -0
  14. markdown_script-0.4.2/crates/mds-core/src/formatter.rs +992 -0
  15. markdown_script-0.4.2/crates/mds-core/src/fs.rs +1615 -0
  16. markdown_script-0.4.2/crates/mds-core/src/lexer.rs +861 -0
  17. markdown_script-0.4.2/crates/mds-core/src/lib.rs +1886 -0
  18. markdown_script-0.4.2/crates/mds-core/src/limits.rs +135 -0
  19. markdown_script-0.4.2/crates/mds-core/src/lint/config.rs +358 -0
  20. markdown_script-0.4.2/crates/mds-core/src/lint/diagnostic.rs +2557 -0
  21. markdown_script-0.4.2/crates/mds-core/src/lint/facts.rs +924 -0
  22. markdown_script-0.4.2/crates/mds-core/src/lint/fix.rs +2658 -0
  23. markdown_script-0.4.2/crates/mds-core/src/lint/mod.rs +169 -0
  24. markdown_script-0.4.2/crates/mds-core/src/lint/rules/duplicate_export.rs +226 -0
  25. markdown_script-0.4.2/crates/mds-core/src/lint/rules/duplicate_import.rs +258 -0
  26. markdown_script-0.4.2/crates/mds-core/src/lint/rules/empty_block.rs +738 -0
  27. markdown_script-0.4.2/crates/mds-core/src/lint/rules/legacy_interpolation.rs +502 -0
  28. markdown_script-0.4.2/crates/mds-core/src/lint/rules/mod.rs +52 -0
  29. markdown_script-0.4.2/crates/mds-core/src/lint/rules/redundant_else.rs +216 -0
  30. markdown_script-0.4.2/crates/mds-core/src/lint/rules/shadow_variable.rs +194 -0
  31. markdown_script-0.4.2/crates/mds-core/src/lint/rules/structural_eq.rs +351 -0
  32. markdown_script-0.4.2/crates/mds-core/src/lint/rules/unreachable_branch.rs +770 -0
  33. markdown_script-0.4.2/crates/mds-core/src/lint/rules/unused_function.rs +273 -0
  34. markdown_script-0.4.2/crates/mds-core/src/lint/rules/unused_import.rs +691 -0
  35. markdown_script-0.4.2/crates/mds-core/src/lint/rules/unused_variable.rs +225 -0
  36. markdown_script-0.4.2/crates/mds-core/src/lint/tier.rs +227 -0
  37. markdown_script-0.4.2/crates/mds-core/src/options.rs +453 -0
  38. markdown_script-0.4.2/crates/mds-core/src/parser.rs +761 -0
  39. markdown_script-0.4.2/crates/mds-core/src/parser_helpers.rs +1528 -0
  40. markdown_script-0.4.2/crates/mds-core/src/parser_tests.rs +3334 -0
  41. markdown_script-0.4.2/crates/mds-core/src/resolver/frontmatter.rs +413 -0
  42. markdown_script-0.4.2/crates/mds-core/src/resolver/inheritance.rs +204 -0
  43. markdown_script-0.4.2/crates/mds-core/src/resolver.rs +2616 -0
  44. markdown_script-0.4.2/crates/mds-core/src/resolver_tests.rs +3413 -0
  45. markdown_script-0.4.2/crates/mds-core/src/scope.rs +383 -0
  46. markdown_script-0.4.2/crates/mds-core/src/source_path.rs +1039 -0
  47. markdown_script-0.4.2/crates/mds-core/src/sourcemap.rs +2222 -0
  48. markdown_script-0.4.2/crates/mds-core/src/validator.rs +592 -0
  49. markdown_script-0.4.2/crates/mds-core/src/value.rs +510 -0
  50. markdown_script-0.4.2/crates/mds-core/tests/api_surface.rs +1899 -0
  51. markdown_script-0.4.2/crates/mds-core/tests/fmt.rs +846 -0
  52. markdown_script-0.4.2/crates/mds-core/tests/intrinsic_output.rs +750 -0
  53. markdown_script-0.4.2/crates/mds-core/tests/source_map_vfs.rs +1231 -0
  54. markdown_script-0.4.2/crates/mds-core/tests/virtual_fs.rs +2012 -0
  55. markdown_script-0.4.2/crates/mds-python/Cargo.toml +45 -0
  56. markdown_script-0.4.2/crates/mds-python/LICENSE +21 -0
  57. markdown_script-0.4.2/crates/mds-python/README.md +123 -0
  58. markdown_script-0.4.2/crates/mds-python/benchmarks/bench.py +77 -0
  59. markdown_script-0.4.2/crates/mds-python/build.rs +18 -0
  60. markdown_script-0.4.2/crates/mds-python/pyrightconfig.json +5 -0
  61. markdown_script-0.4.2/crates/mds-python/src/lib.rs +1654 -0
  62. markdown_script-0.4.2/crates/mds-python/tests/conftest.py +96 -0
  63. markdown_script-0.4.2/crates/mds-python/tests/fixtures/import_consumer.mds +3 -0
  64. markdown_script-0.4.2/crates/mds-python/tests/fixtures/import_provider.mds +5 -0
  65. markdown_script-0.4.2/crates/mds-python/tests/fixtures/lint_warn_only.mds +6 -0
  66. markdown_script-0.4.2/crates/mds-python/tests/fixtures/messages.mds +6 -0
  67. markdown_script-0.4.2/crates/mds-python/tests/fixtures/mixed.mds +5 -0
  68. markdown_script-0.4.2/crates/mds-python/tests/fixtures/simple.mds +6 -0
  69. markdown_script-0.4.2/crates/mds-python/tests/fixtures/var.mds +1 -0
  70. markdown_script-0.4.2/crates/mds-python/tests/test_concurrency.py +174 -0
  71. markdown_script-0.4.2/crates/mds-python/tests/test_contract.py +179 -0
  72. markdown_script-0.4.2/crates/mds-python/tests/test_errors.py +517 -0
  73. markdown_script-0.4.2/crates/mds-python/tests/test_functional.py +224 -0
  74. markdown_script-0.4.2/crates/mds-python/tests/test_limits.py +176 -0
  75. markdown_script-0.4.2/crates/mds-python/tests/test_lint.py +678 -0
  76. markdown_script-0.4.2/crates/mds-python/tests/test_parity.py +527 -0
  77. markdown_script-0.4.2/crates/mds-python/tests/test_perf.py +78 -0
  78. markdown_script-0.4.2/crates/mds-python/tests/test_pickle.py +104 -0
  79. markdown_script-0.4.2/crates/mds-python/tests/test_source_map.py +328 -0
  80. markdown_script-0.4.2/crates/mds-python/tests/test_typing.py +99 -0
  81. markdown_script-0.4.2/crates/mds-python/tests/typecheck_sample.py +155 -0
  82. markdown_script-0.4.2/pyproject.toml +56 -0
  83. markdown_script-0.4.2/python/markdown_script/__init__.py +74 -0
  84. markdown_script-0.4.2/python/markdown_script/__init__.pyi +49 -0
  85. markdown_script-0.4.2/python/markdown_script/_markdown_script.pyi +276 -0
  86. markdown_script-0.4.2/python/markdown_script/py.typed +0 -0
@@ -0,0 +1,1617 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.25.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler2"
16
+ version = "2.0.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
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 = "async-trait"
78
+ version = "0.1.89"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
81
+ dependencies = [
82
+ "proc-macro2",
83
+ "quote",
84
+ "syn",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "autocfg"
89
+ version = "1.5.0"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
92
+
93
+ [[package]]
94
+ name = "backtrace"
95
+ version = "0.3.76"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
98
+ dependencies = [
99
+ "addr2line",
100
+ "cfg-if",
101
+ "libc",
102
+ "miniz_oxide",
103
+ "object",
104
+ "rustc-demangle",
105
+ "windows-link",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "backtrace-ext"
110
+ version = "0.2.1"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "537beee3be4a18fb023b570f80e3ae28003db9167a751266b259926e25539d50"
113
+ dependencies = [
114
+ "backtrace",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "bitflags"
119
+ version = "2.11.1"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
122
+
123
+ [[package]]
124
+ name = "block2"
125
+ version = "0.6.2"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
128
+ dependencies = [
129
+ "objc2",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "bstr"
134
+ version = "1.12.3"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "5cee35f73844aa3014bb606320a6c1f010249dbdf43342fe54b5a4f6a8ed4b79"
137
+ dependencies = [
138
+ "memchr",
139
+ "serde_core",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "bumpalo"
144
+ version = "3.20.2"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
147
+
148
+ [[package]]
149
+ name = "cast"
150
+ version = "0.3.0"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
153
+
154
+ [[package]]
155
+ name = "cc"
156
+ version = "1.2.62"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
159
+ dependencies = [
160
+ "find-msvc-tools",
161
+ "shlex",
162
+ ]
163
+
164
+ [[package]]
165
+ name = "cfg-if"
166
+ version = "1.0.4"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
169
+
170
+ [[package]]
171
+ name = "cfg_aliases"
172
+ version = "0.2.1"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
175
+
176
+ [[package]]
177
+ name = "clap"
178
+ version = "4.6.1"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
181
+ dependencies = [
182
+ "clap_builder",
183
+ "clap_derive",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "clap_builder"
188
+ version = "4.6.0"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
191
+ dependencies = [
192
+ "anstream",
193
+ "anstyle",
194
+ "clap_lex",
195
+ "strsim",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "clap_derive"
200
+ version = "4.6.1"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
203
+ dependencies = [
204
+ "heck",
205
+ "proc-macro2",
206
+ "quote",
207
+ "syn",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "clap_lex"
212
+ version = "1.1.0"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
215
+
216
+ [[package]]
217
+ name = "colorchoice"
218
+ version = "1.0.5"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
221
+
222
+ [[package]]
223
+ name = "convert_case"
224
+ version = "0.11.0"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
227
+ dependencies = [
228
+ "unicode-segmentation",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "ctor"
233
+ version = "1.0.6"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "6d765eb1c0bda10d31e0ea185f5ee15da532d60b0912d2bd1441783439e749c5"
236
+
237
+ [[package]]
238
+ name = "ctrlc"
239
+ version = "3.5.2"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "e0b1fab2ae45819af2d0731d60f2afe17227ebb1a1538a236da84c93e9a60162"
242
+ dependencies = [
243
+ "dispatch2",
244
+ "nix",
245
+ "windows-sys 0.61.2",
246
+ ]
247
+
248
+ [[package]]
249
+ name = "dispatch2"
250
+ version = "0.3.1"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
253
+ dependencies = [
254
+ "bitflags",
255
+ "block2",
256
+ "libc",
257
+ "objc2",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "equivalent"
262
+ version = "1.0.2"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
265
+
266
+ [[package]]
267
+ name = "errno"
268
+ version = "0.3.14"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
271
+ dependencies = [
272
+ "libc",
273
+ "windows-sys 0.61.2",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "fastrand"
278
+ version = "2.4.1"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
281
+
282
+ [[package]]
283
+ name = "find-msvc-tools"
284
+ version = "0.1.9"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
287
+
288
+ [[package]]
289
+ name = "foldhash"
290
+ version = "0.1.5"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
293
+
294
+ [[package]]
295
+ name = "fsevent-sys"
296
+ version = "4.1.0"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
299
+ dependencies = [
300
+ "libc",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "futures"
305
+ version = "0.3.32"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
308
+ dependencies = [
309
+ "futures-channel",
310
+ "futures-core",
311
+ "futures-executor",
312
+ "futures-io",
313
+ "futures-sink",
314
+ "futures-task",
315
+ "futures-util",
316
+ ]
317
+
318
+ [[package]]
319
+ name = "futures-channel"
320
+ version = "0.3.32"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
323
+ dependencies = [
324
+ "futures-core",
325
+ "futures-sink",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "futures-core"
330
+ version = "0.3.32"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
333
+
334
+ [[package]]
335
+ name = "futures-executor"
336
+ version = "0.3.32"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
339
+ dependencies = [
340
+ "futures-core",
341
+ "futures-task",
342
+ "futures-util",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "futures-io"
347
+ version = "0.3.32"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
350
+
351
+ [[package]]
352
+ name = "futures-macro"
353
+ version = "0.3.32"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
356
+ dependencies = [
357
+ "proc-macro2",
358
+ "quote",
359
+ "syn",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "futures-sink"
364
+ version = "0.3.32"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
367
+
368
+ [[package]]
369
+ name = "futures-task"
370
+ version = "0.3.32"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
373
+
374
+ [[package]]
375
+ name = "futures-util"
376
+ version = "0.3.32"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
379
+ dependencies = [
380
+ "futures-channel",
381
+ "futures-core",
382
+ "futures-io",
383
+ "futures-macro",
384
+ "futures-sink",
385
+ "futures-task",
386
+ "memchr",
387
+ "pin-project-lite",
388
+ "slab",
389
+ ]
390
+
391
+ [[package]]
392
+ name = "getrandom"
393
+ version = "0.4.2"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
396
+ dependencies = [
397
+ "cfg-if",
398
+ "libc",
399
+ "r-efi",
400
+ "wasip2",
401
+ "wasip3",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "gimli"
406
+ version = "0.32.3"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
409
+
410
+ [[package]]
411
+ name = "hashbrown"
412
+ version = "0.15.5"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
415
+ dependencies = [
416
+ "foldhash",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "hashbrown"
421
+ version = "0.17.1"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
424
+
425
+ [[package]]
426
+ name = "heck"
427
+ version = "0.5.0"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
430
+
431
+ [[package]]
432
+ name = "id-arena"
433
+ version = "2.3.0"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
436
+
437
+ [[package]]
438
+ name = "indexmap"
439
+ version = "2.14.0"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
442
+ dependencies = [
443
+ "equivalent",
444
+ "hashbrown 0.17.1",
445
+ "serde",
446
+ "serde_core",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "inotify"
451
+ version = "0.11.1"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "bd5b3eaf1a28b758ac0faa5a4254e8ab2705605496f1b1f3fbbc3988ad73d199"
454
+ dependencies = [
455
+ "bitflags",
456
+ "inotify-sys",
457
+ "libc",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "inotify-sys"
462
+ version = "0.1.5"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
465
+ dependencies = [
466
+ "libc",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "is_ci"
471
+ version = "1.2.0"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45"
474
+
475
+ [[package]]
476
+ name = "is_terminal_polyfill"
477
+ version = "1.70.2"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
480
+
481
+ [[package]]
482
+ name = "itoa"
483
+ version = "1.0.18"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
486
+
487
+ [[package]]
488
+ name = "js-sys"
489
+ version = "0.3.98"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
492
+ dependencies = [
493
+ "cfg-if",
494
+ "futures-util",
495
+ "once_cell",
496
+ "wasm-bindgen",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "kqueue"
501
+ version = "1.1.1"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
504
+ dependencies = [
505
+ "kqueue-sys",
506
+ "libc",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "kqueue-sys"
511
+ version = "1.1.2"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "07293a4e297ac234359b510362495713f75ea345d5307140414f20c69ffeb087"
514
+ dependencies = [
515
+ "bitflags",
516
+ "libc",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "leb128fmt"
521
+ version = "0.1.0"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
524
+
525
+ [[package]]
526
+ name = "libc"
527
+ version = "0.2.186"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
530
+
531
+ [[package]]
532
+ name = "libloading"
533
+ version = "0.9.0"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
536
+ dependencies = [
537
+ "cfg-if",
538
+ "windows-link",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "libm"
543
+ version = "0.2.16"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
546
+
547
+ [[package]]
548
+ name = "linux-raw-sys"
549
+ version = "0.12.1"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
552
+
553
+ [[package]]
554
+ name = "log"
555
+ version = "0.4.29"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
558
+
559
+ [[package]]
560
+ name = "mds-cli"
561
+ version = "0.4.2"
562
+ dependencies = [
563
+ "clap",
564
+ "ctrlc",
565
+ "libc",
566
+ "mds-core",
567
+ "miette",
568
+ "notify",
569
+ "serde",
570
+ "serde_json",
571
+ "similar",
572
+ "tempfile",
573
+ "thiserror",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "mds-core"
578
+ version = "0.4.2"
579
+ dependencies = [
580
+ "indexmap",
581
+ "miette",
582
+ "serde",
583
+ "serde_json",
584
+ "serde_yaml_ng",
585
+ "tempfile",
586
+ "thiserror",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "mds-napi"
591
+ version = "0.4.2"
592
+ dependencies = [
593
+ "mds-core",
594
+ "napi",
595
+ "napi-build",
596
+ "napi-derive",
597
+ "serde_json",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "mds-python"
602
+ version = "0.4.2"
603
+ dependencies = [
604
+ "mds-core",
605
+ "pyo3",
606
+ "pythonize",
607
+ "serde_json",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "mds-wasm"
612
+ version = "0.4.2"
613
+ dependencies = [
614
+ "js-sys",
615
+ "mds-core",
616
+ "serde",
617
+ "serde-wasm-bindgen",
618
+ "serde_json",
619
+ "wasm-bindgen",
620
+ "wasm-bindgen-test",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "memchr"
625
+ version = "2.8.0"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
628
+
629
+ [[package]]
630
+ name = "miette"
631
+ version = "7.6.0"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
634
+ dependencies = [
635
+ "backtrace",
636
+ "backtrace-ext",
637
+ "cfg-if",
638
+ "miette-derive",
639
+ "owo-colors",
640
+ "supports-color",
641
+ "supports-hyperlinks",
642
+ "supports-unicode",
643
+ "terminal_size",
644
+ "textwrap",
645
+ "unicode-width 0.1.14",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "miette-derive"
650
+ version = "7.6.0"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
653
+ dependencies = [
654
+ "proc-macro2",
655
+ "quote",
656
+ "syn",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "minicov"
661
+ version = "0.3.8"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
664
+ dependencies = [
665
+ "cc",
666
+ "walkdir",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "miniz_oxide"
671
+ version = "0.8.9"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
674
+ dependencies = [
675
+ "adler2",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "mio"
680
+ version = "1.2.0"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
683
+ dependencies = [
684
+ "libc",
685
+ "log",
686
+ "wasi",
687
+ "windows-sys 0.61.2",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "napi"
692
+ version = "3.9.0"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "f1d395473824516f38dd1071a1a37bc57daa7be65b293ebba4ead5f7abb017a2"
695
+ dependencies = [
696
+ "bitflags",
697
+ "ctor",
698
+ "futures",
699
+ "napi-build",
700
+ "napi-sys",
701
+ "nohash-hasher",
702
+ "rustc-hash",
703
+ "serde",
704
+ "serde_json",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "napi-build"
709
+ version = "2.3.2"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
712
+
713
+ [[package]]
714
+ name = "napi-derive"
715
+ version = "3.5.6"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "89b3f766e04667e6da0e181e2da4f85475d5a6513b7cf6a80bea184e224a5b42"
718
+ dependencies = [
719
+ "convert_case",
720
+ "ctor",
721
+ "napi-derive-backend",
722
+ "proc-macro2",
723
+ "quote",
724
+ "syn",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "napi-derive-backend"
729
+ version = "5.0.4"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "0d5af30503edf933ce7377cf6d4c877a62b0f1107ea05585f1b5e430e88d5baf"
732
+ dependencies = [
733
+ "convert_case",
734
+ "proc-macro2",
735
+ "quote",
736
+ "semver",
737
+ "syn",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "napi-sys"
742
+ version = "3.2.1"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
745
+ dependencies = [
746
+ "libloading",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "nix"
751
+ version = "0.31.3"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
754
+ dependencies = [
755
+ "bitflags",
756
+ "cfg-if",
757
+ "cfg_aliases",
758
+ "libc",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "nohash-hasher"
763
+ version = "0.2.0"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
766
+
767
+ [[package]]
768
+ name = "notify"
769
+ version = "8.2.0"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3"
772
+ dependencies = [
773
+ "bitflags",
774
+ "fsevent-sys",
775
+ "inotify",
776
+ "kqueue",
777
+ "libc",
778
+ "log",
779
+ "mio",
780
+ "notify-types",
781
+ "walkdir",
782
+ "windows-sys 0.60.2",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "notify-types"
787
+ version = "2.1.0"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "42b8cfee0e339a0337359f3c88165702ac6e600dc01c0cc9579a92d62b08477a"
790
+ dependencies = [
791
+ "bitflags",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "nu-ansi-term"
796
+ version = "0.50.3"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
799
+ dependencies = [
800
+ "windows-sys 0.61.2",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "num-traits"
805
+ version = "0.2.19"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
808
+ dependencies = [
809
+ "autocfg",
810
+ "libm",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "objc2"
815
+ version = "0.6.4"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
818
+ dependencies = [
819
+ "objc2-encode",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "objc2-encode"
824
+ version = "4.1.0"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
827
+
828
+ [[package]]
829
+ name = "object"
830
+ version = "0.37.3"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
833
+ dependencies = [
834
+ "memchr",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "once_cell"
839
+ version = "1.21.4"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
842
+
843
+ [[package]]
844
+ name = "once_cell_polyfill"
845
+ version = "1.70.2"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
848
+
849
+ [[package]]
850
+ name = "oorandom"
851
+ version = "11.1.5"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
854
+
855
+ [[package]]
856
+ name = "owo-colors"
857
+ version = "4.3.0"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d"
860
+
861
+ [[package]]
862
+ name = "pin-project-lite"
863
+ version = "0.2.17"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
866
+
867
+ [[package]]
868
+ name = "portable-atomic"
869
+ version = "1.13.1"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
872
+
873
+ [[package]]
874
+ name = "prettyplease"
875
+ version = "0.2.37"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
878
+ dependencies = [
879
+ "proc-macro2",
880
+ "syn",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "proc-macro2"
885
+ version = "1.0.106"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
888
+ dependencies = [
889
+ "unicode-ident",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "pyo3"
894
+ version = "0.29.0"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
897
+ dependencies = [
898
+ "libc",
899
+ "once_cell",
900
+ "portable-atomic",
901
+ "pyo3-build-config",
902
+ "pyo3-ffi",
903
+ "pyo3-macros",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "pyo3-build-config"
908
+ version = "0.29.0"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
911
+ dependencies = [
912
+ "target-lexicon",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "pyo3-ffi"
917
+ version = "0.29.0"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
920
+ dependencies = [
921
+ "libc",
922
+ "pyo3-build-config",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "pyo3-macros"
927
+ version = "0.29.0"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
930
+ dependencies = [
931
+ "proc-macro2",
932
+ "pyo3-macros-backend",
933
+ "quote",
934
+ "syn",
935
+ ]
936
+
937
+ [[package]]
938
+ name = "pyo3-macros-backend"
939
+ version = "0.29.0"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
942
+ dependencies = [
943
+ "heck",
944
+ "proc-macro2",
945
+ "quote",
946
+ "syn",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "pythonize"
951
+ version = "0.29.0"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "6ec376e1216e0c929a74964ce2020012a1a39f32d80e78aa688721219ea7fb89"
954
+ dependencies = [
955
+ "pyo3",
956
+ "serde",
957
+ ]
958
+
959
+ [[package]]
960
+ name = "quote"
961
+ version = "1.0.45"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
964
+ dependencies = [
965
+ "proc-macro2",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "r-efi"
970
+ version = "6.0.0"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
973
+
974
+ [[package]]
975
+ name = "rustc-demangle"
976
+ version = "0.1.27"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
979
+
980
+ [[package]]
981
+ name = "rustc-hash"
982
+ version = "2.1.2"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
985
+
986
+ [[package]]
987
+ name = "rustix"
988
+ version = "1.1.4"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
991
+ dependencies = [
992
+ "bitflags",
993
+ "errno",
994
+ "libc",
995
+ "linux-raw-sys",
996
+ "windows-sys 0.61.2",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "rustversion"
1001
+ version = "1.0.22"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1004
+
1005
+ [[package]]
1006
+ name = "ryu"
1007
+ version = "1.0.23"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1010
+
1011
+ [[package]]
1012
+ name = "same-file"
1013
+ version = "1.0.6"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1016
+ dependencies = [
1017
+ "winapi-util",
1018
+ ]
1019
+
1020
+ [[package]]
1021
+ name = "semver"
1022
+ version = "1.0.28"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1025
+
1026
+ [[package]]
1027
+ name = "serde"
1028
+ version = "1.0.228"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1031
+ dependencies = [
1032
+ "serde_core",
1033
+ "serde_derive",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "serde-wasm-bindgen"
1038
+ version = "0.6.5"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
1041
+ dependencies = [
1042
+ "js-sys",
1043
+ "serde",
1044
+ "wasm-bindgen",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "serde_core"
1049
+ version = "1.0.228"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1052
+ dependencies = [
1053
+ "serde_derive",
1054
+ ]
1055
+
1056
+ [[package]]
1057
+ name = "serde_derive"
1058
+ version = "1.0.228"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1061
+ dependencies = [
1062
+ "proc-macro2",
1063
+ "quote",
1064
+ "syn",
1065
+ ]
1066
+
1067
+ [[package]]
1068
+ name = "serde_json"
1069
+ version = "1.0.150"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1072
+ dependencies = [
1073
+ "itoa",
1074
+ "memchr",
1075
+ "serde",
1076
+ "serde_core",
1077
+ "zmij",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "serde_yaml_ng"
1082
+ version = "0.10.0"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "7b4db627b98b36d4203a7b458cf3573730f2bb591b28871d916dfa9efabfd41f"
1085
+ dependencies = [
1086
+ "indexmap",
1087
+ "itoa",
1088
+ "ryu",
1089
+ "serde",
1090
+ "unsafe-libyaml",
1091
+ ]
1092
+
1093
+ [[package]]
1094
+ name = "shlex"
1095
+ version = "1.3.0"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1098
+
1099
+ [[package]]
1100
+ name = "similar"
1101
+ version = "3.1.1"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "e6505efef05804732ed8a3f2d4f279429eb485bd69d5b0cc6b19cc02005cda16"
1104
+ dependencies = [
1105
+ "bstr",
1106
+ ]
1107
+
1108
+ [[package]]
1109
+ name = "slab"
1110
+ version = "0.4.12"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1113
+
1114
+ [[package]]
1115
+ name = "strsim"
1116
+ version = "0.11.1"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1119
+
1120
+ [[package]]
1121
+ name = "supports-color"
1122
+ version = "3.0.2"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "c64fc7232dd8d2e4ac5ce4ef302b1d81e0b80d055b9d77c7c4f51f6aa4c867d6"
1125
+ dependencies = [
1126
+ "is_ci",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "supports-hyperlinks"
1131
+ version = "3.2.0"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "e396b6523b11ccb83120b115a0b7366de372751aa6edf19844dfb13a6af97e91"
1134
+
1135
+ [[package]]
1136
+ name = "supports-unicode"
1137
+ version = "3.0.0"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "b7401a30af6cb5818bb64852270bb722533397edcfc7344954a38f420819ece2"
1140
+
1141
+ [[package]]
1142
+ name = "syn"
1143
+ version = "2.0.117"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1146
+ dependencies = [
1147
+ "proc-macro2",
1148
+ "quote",
1149
+ "unicode-ident",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "target-lexicon"
1154
+ version = "0.13.5"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1157
+
1158
+ [[package]]
1159
+ name = "tempfile"
1160
+ version = "3.27.0"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1163
+ dependencies = [
1164
+ "fastrand",
1165
+ "getrandom",
1166
+ "once_cell",
1167
+ "rustix",
1168
+ "windows-sys 0.61.2",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "terminal_size"
1173
+ version = "0.4.4"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
1176
+ dependencies = [
1177
+ "rustix",
1178
+ "windows-sys 0.61.2",
1179
+ ]
1180
+
1181
+ [[package]]
1182
+ name = "textwrap"
1183
+ version = "0.16.2"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
1186
+ dependencies = [
1187
+ "unicode-linebreak",
1188
+ "unicode-width 0.2.2",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "thiserror"
1193
+ version = "2.0.18"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1196
+ dependencies = [
1197
+ "thiserror-impl",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "thiserror-impl"
1202
+ version = "2.0.18"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1205
+ dependencies = [
1206
+ "proc-macro2",
1207
+ "quote",
1208
+ "syn",
1209
+ ]
1210
+
1211
+ [[package]]
1212
+ name = "unicode-ident"
1213
+ version = "1.0.24"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1216
+
1217
+ [[package]]
1218
+ name = "unicode-linebreak"
1219
+ version = "0.1.5"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
1222
+
1223
+ [[package]]
1224
+ name = "unicode-segmentation"
1225
+ version = "1.13.2"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
1228
+
1229
+ [[package]]
1230
+ name = "unicode-width"
1231
+ version = "0.1.14"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1234
+
1235
+ [[package]]
1236
+ name = "unicode-width"
1237
+ version = "0.2.2"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1240
+
1241
+ [[package]]
1242
+ name = "unicode-xid"
1243
+ version = "0.2.6"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1246
+
1247
+ [[package]]
1248
+ name = "unsafe-libyaml"
1249
+ version = "0.2.11"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
1252
+
1253
+ [[package]]
1254
+ name = "utf8parse"
1255
+ version = "0.2.2"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1258
+
1259
+ [[package]]
1260
+ name = "walkdir"
1261
+ version = "2.5.0"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1264
+ dependencies = [
1265
+ "same-file",
1266
+ "winapi-util",
1267
+ ]
1268
+
1269
+ [[package]]
1270
+ name = "wasi"
1271
+ version = "0.11.1+wasi-snapshot-preview1"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1274
+
1275
+ [[package]]
1276
+ name = "wasip2"
1277
+ version = "1.0.3+wasi-0.2.9"
1278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1279
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1280
+ dependencies = [
1281
+ "wit-bindgen 0.57.1",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "wasip3"
1286
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1289
+ dependencies = [
1290
+ "wit-bindgen 0.51.0",
1291
+ ]
1292
+
1293
+ [[package]]
1294
+ name = "wasm-bindgen"
1295
+ version = "0.2.121"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
1298
+ dependencies = [
1299
+ "cfg-if",
1300
+ "once_cell",
1301
+ "rustversion",
1302
+ "wasm-bindgen-macro",
1303
+ "wasm-bindgen-shared",
1304
+ ]
1305
+
1306
+ [[package]]
1307
+ name = "wasm-bindgen-futures"
1308
+ version = "0.4.71"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "96492d0d3ffba25305a7dc88720d250b1401d7edca02cc3bcd50633b424673b8"
1311
+ dependencies = [
1312
+ "js-sys",
1313
+ "wasm-bindgen",
1314
+ ]
1315
+
1316
+ [[package]]
1317
+ name = "wasm-bindgen-macro"
1318
+ version = "0.2.121"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
1321
+ dependencies = [
1322
+ "quote",
1323
+ "wasm-bindgen-macro-support",
1324
+ ]
1325
+
1326
+ [[package]]
1327
+ name = "wasm-bindgen-macro-support"
1328
+ version = "0.2.121"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
1331
+ dependencies = [
1332
+ "bumpalo",
1333
+ "proc-macro2",
1334
+ "quote",
1335
+ "syn",
1336
+ "wasm-bindgen-shared",
1337
+ ]
1338
+
1339
+ [[package]]
1340
+ name = "wasm-bindgen-shared"
1341
+ version = "0.2.121"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
1344
+ dependencies = [
1345
+ "unicode-ident",
1346
+ ]
1347
+
1348
+ [[package]]
1349
+ name = "wasm-bindgen-test"
1350
+ version = "0.3.71"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "af5ec93229ad9ccd0a545a516dec76dc276613f278f6a91aa6b463d5b33d42d0"
1353
+ dependencies = [
1354
+ "async-trait",
1355
+ "cast",
1356
+ "js-sys",
1357
+ "libm",
1358
+ "minicov",
1359
+ "nu-ansi-term",
1360
+ "num-traits",
1361
+ "oorandom",
1362
+ "serde",
1363
+ "serde_json",
1364
+ "wasm-bindgen",
1365
+ "wasm-bindgen-futures",
1366
+ "wasm-bindgen-test-macro",
1367
+ "wasm-bindgen-test-shared",
1368
+ ]
1369
+
1370
+ [[package]]
1371
+ name = "wasm-bindgen-test-macro"
1372
+ version = "0.3.71"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "3c81b9fef827e575e0e54431736d1baa0d700315d8c62cfef1f61fa3aad0cbeb"
1375
+ dependencies = [
1376
+ "proc-macro2",
1377
+ "quote",
1378
+ "syn",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "wasm-bindgen-test-shared"
1383
+ version = "0.2.121"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "4f4d8ae7ad5440360e9799dfd42857d126454a88441ddf72d288ef83fa47f527"
1386
+
1387
+ [[package]]
1388
+ name = "wasm-encoder"
1389
+ version = "0.244.0"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1392
+ dependencies = [
1393
+ "leb128fmt",
1394
+ "wasmparser",
1395
+ ]
1396
+
1397
+ [[package]]
1398
+ name = "wasm-metadata"
1399
+ version = "0.244.0"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1402
+ dependencies = [
1403
+ "anyhow",
1404
+ "indexmap",
1405
+ "wasm-encoder",
1406
+ "wasmparser",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "wasmparser"
1411
+ version = "0.244.0"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1414
+ dependencies = [
1415
+ "bitflags",
1416
+ "hashbrown 0.15.5",
1417
+ "indexmap",
1418
+ "semver",
1419
+ ]
1420
+
1421
+ [[package]]
1422
+ name = "winapi-util"
1423
+ version = "0.1.11"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1426
+ dependencies = [
1427
+ "windows-sys 0.61.2",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "windows-link"
1432
+ version = "0.2.1"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1435
+
1436
+ [[package]]
1437
+ name = "windows-sys"
1438
+ version = "0.60.2"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1441
+ dependencies = [
1442
+ "windows-targets",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "windows-sys"
1447
+ version = "0.61.2"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1450
+ dependencies = [
1451
+ "windows-link",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "windows-targets"
1456
+ version = "0.53.5"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1459
+ dependencies = [
1460
+ "windows-link",
1461
+ "windows_aarch64_gnullvm",
1462
+ "windows_aarch64_msvc",
1463
+ "windows_i686_gnu",
1464
+ "windows_i686_gnullvm",
1465
+ "windows_i686_msvc",
1466
+ "windows_x86_64_gnu",
1467
+ "windows_x86_64_gnullvm",
1468
+ "windows_x86_64_msvc",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "windows_aarch64_gnullvm"
1473
+ version = "0.53.1"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1476
+
1477
+ [[package]]
1478
+ name = "windows_aarch64_msvc"
1479
+ version = "0.53.1"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1482
+
1483
+ [[package]]
1484
+ name = "windows_i686_gnu"
1485
+ version = "0.53.1"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1488
+
1489
+ [[package]]
1490
+ name = "windows_i686_gnullvm"
1491
+ version = "0.53.1"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1494
+
1495
+ [[package]]
1496
+ name = "windows_i686_msvc"
1497
+ version = "0.53.1"
1498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1499
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1500
+
1501
+ [[package]]
1502
+ name = "windows_x86_64_gnu"
1503
+ version = "0.53.1"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1506
+
1507
+ [[package]]
1508
+ name = "windows_x86_64_gnullvm"
1509
+ version = "0.53.1"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1512
+
1513
+ [[package]]
1514
+ name = "windows_x86_64_msvc"
1515
+ version = "0.53.1"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1518
+
1519
+ [[package]]
1520
+ name = "wit-bindgen"
1521
+ version = "0.51.0"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1524
+ dependencies = [
1525
+ "wit-bindgen-rust-macro",
1526
+ ]
1527
+
1528
+ [[package]]
1529
+ name = "wit-bindgen"
1530
+ version = "0.57.1"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1533
+
1534
+ [[package]]
1535
+ name = "wit-bindgen-core"
1536
+ version = "0.51.0"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1539
+ dependencies = [
1540
+ "anyhow",
1541
+ "heck",
1542
+ "wit-parser",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "wit-bindgen-rust"
1547
+ version = "0.51.0"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1550
+ dependencies = [
1551
+ "anyhow",
1552
+ "heck",
1553
+ "indexmap",
1554
+ "prettyplease",
1555
+ "syn",
1556
+ "wasm-metadata",
1557
+ "wit-bindgen-core",
1558
+ "wit-component",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "wit-bindgen-rust-macro"
1563
+ version = "0.51.0"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1566
+ dependencies = [
1567
+ "anyhow",
1568
+ "prettyplease",
1569
+ "proc-macro2",
1570
+ "quote",
1571
+ "syn",
1572
+ "wit-bindgen-core",
1573
+ "wit-bindgen-rust",
1574
+ ]
1575
+
1576
+ [[package]]
1577
+ name = "wit-component"
1578
+ version = "0.244.0"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1581
+ dependencies = [
1582
+ "anyhow",
1583
+ "bitflags",
1584
+ "indexmap",
1585
+ "log",
1586
+ "serde",
1587
+ "serde_derive",
1588
+ "serde_json",
1589
+ "wasm-encoder",
1590
+ "wasm-metadata",
1591
+ "wasmparser",
1592
+ "wit-parser",
1593
+ ]
1594
+
1595
+ [[package]]
1596
+ name = "wit-parser"
1597
+ version = "0.244.0"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1600
+ dependencies = [
1601
+ "anyhow",
1602
+ "id-arena",
1603
+ "indexmap",
1604
+ "log",
1605
+ "semver",
1606
+ "serde",
1607
+ "serde_derive",
1608
+ "serde_json",
1609
+ "unicode-xid",
1610
+ "wasmparser",
1611
+ ]
1612
+
1613
+ [[package]]
1614
+ name = "zmij"
1615
+ version = "1.0.21"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"