@owenlamont/ryl 0.4.1

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 (217) hide show
  1. package/.github/CODEOWNERS +1 -0
  2. package/.github/dependabot.yml +13 -0
  3. package/.github/workflows/ci.yml +107 -0
  4. package/.github/workflows/release.yml +613 -0
  5. package/.github/workflows/update_dependencies.yml +61 -0
  6. package/.github/workflows/update_linters.yml +56 -0
  7. package/.pre-commit-config.yaml +87 -0
  8. package/.yamllint +4 -0
  9. package/AGENTS.md +200 -0
  10. package/Cargo.lock +908 -0
  11. package/Cargo.toml +32 -0
  12. package/LICENSE +21 -0
  13. package/README.md +230 -0
  14. package/bin/ryl.js +1 -0
  15. package/clippy.toml +1 -0
  16. package/docs/config-presets.md +100 -0
  17. package/img/benchmark-5x5-5runs.svg +2176 -0
  18. package/package.json +28 -0
  19. package/pyproject.toml +42 -0
  20. package/ruff.toml +107 -0
  21. package/rumdl.toml +20 -0
  22. package/rust-toolchain.toml +3 -0
  23. package/rustfmt.toml +3 -0
  24. package/scripts/benchmark_perf_vs_yamllint.py +400 -0
  25. package/scripts/coverage-missing.ps1 +80 -0
  26. package/scripts/coverage-missing.sh +60 -0
  27. package/src/bin/discover_config_bin.rs +24 -0
  28. package/src/cli_support.rs +33 -0
  29. package/src/conf/mod.rs +85 -0
  30. package/src/config.rs +2099 -0
  31. package/src/decoder.rs +326 -0
  32. package/src/discover.rs +31 -0
  33. package/src/lib.rs +19 -0
  34. package/src/lint.rs +558 -0
  35. package/src/main.rs +535 -0
  36. package/src/migrate.rs +233 -0
  37. package/src/rules/anchors.rs +517 -0
  38. package/src/rules/braces.rs +77 -0
  39. package/src/rules/brackets.rs +77 -0
  40. package/src/rules/colons.rs +475 -0
  41. package/src/rules/commas.rs +372 -0
  42. package/src/rules/comments.rs +299 -0
  43. package/src/rules/comments_indentation.rs +243 -0
  44. package/src/rules/document_end.rs +175 -0
  45. package/src/rules/document_start.rs +84 -0
  46. package/src/rules/empty_lines.rs +152 -0
  47. package/src/rules/empty_values.rs +255 -0
  48. package/src/rules/float_values.rs +259 -0
  49. package/src/rules/flow_collection.rs +562 -0
  50. package/src/rules/hyphens.rs +104 -0
  51. package/src/rules/indentation.rs +803 -0
  52. package/src/rules/key_duplicates.rs +218 -0
  53. package/src/rules/key_ordering.rs +303 -0
  54. package/src/rules/line_length.rs +326 -0
  55. package/src/rules/mod.rs +25 -0
  56. package/src/rules/new_line_at_end_of_file.rs +23 -0
  57. package/src/rules/new_lines.rs +95 -0
  58. package/src/rules/octal_values.rs +121 -0
  59. package/src/rules/quoted_strings.rs +577 -0
  60. package/src/rules/span_utils.rs +37 -0
  61. package/src/rules/trailing_spaces.rs +65 -0
  62. package/src/rules/truthy.rs +420 -0
  63. package/tests/brackets_carriage_return.rs +114 -0
  64. package/tests/build_global_cfg_error.rs +23 -0
  65. package/tests/cli_anchors_rule.rs +143 -0
  66. package/tests/cli_braces_rule.rs +104 -0
  67. package/tests/cli_brackets_rule.rs +104 -0
  68. package/tests/cli_colons_rule.rs +65 -0
  69. package/tests/cli_commas_rule.rs +104 -0
  70. package/tests/cli_comments_indentation_rule.rs +61 -0
  71. package/tests/cli_comments_rule.rs +67 -0
  72. package/tests/cli_config_data_error.rs +30 -0
  73. package/tests/cli_config_flags.rs +66 -0
  74. package/tests/cli_config_migrate.rs +229 -0
  75. package/tests/cli_document_end_rule.rs +92 -0
  76. package/tests/cli_document_start_rule.rs +92 -0
  77. package/tests/cli_empty_lines_rule.rs +87 -0
  78. package/tests/cli_empty_values_rule.rs +68 -0
  79. package/tests/cli_env_config.rs +34 -0
  80. package/tests/cli_exit_and_errors.rs +41 -0
  81. package/tests/cli_file_encoding.rs +203 -0
  82. package/tests/cli_float_values_rule.rs +64 -0
  83. package/tests/cli_format_options.rs +316 -0
  84. package/tests/cli_global_cfg_relaxed.rs +20 -0
  85. package/tests/cli_hyphens_rule.rs +104 -0
  86. package/tests/cli_indentation_rule.rs +65 -0
  87. package/tests/cli_invalid_project_config.rs +39 -0
  88. package/tests/cli_key_duplicates_rule.rs +104 -0
  89. package/tests/cli_key_ordering_rule.rs +59 -0
  90. package/tests/cli_line_length_rule.rs +85 -0
  91. package/tests/cli_list_files.rs +29 -0
  92. package/tests/cli_new_line_rule.rs +141 -0
  93. package/tests/cli_new_lines_rule.rs +119 -0
  94. package/tests/cli_octal_values_rule.rs +60 -0
  95. package/tests/cli_quoted_strings_rule.rs +47 -0
  96. package/tests/cli_toml_config.rs +119 -0
  97. package/tests/cli_trailing_spaces_rule.rs +77 -0
  98. package/tests/cli_truthy_rule.rs +83 -0
  99. package/tests/cli_yaml_files_negation.rs +45 -0
  100. package/tests/colons_rule.rs +303 -0
  101. package/tests/common/compat.rs +114 -0
  102. package/tests/common/fake_env.rs +93 -0
  103. package/tests/common/mod.rs +1 -0
  104. package/tests/conf_builtin.rs +9 -0
  105. package/tests/config_anchors.rs +84 -0
  106. package/tests/config_braces.rs +121 -0
  107. package/tests/config_brackets.rs +127 -0
  108. package/tests/config_commas.rs +79 -0
  109. package/tests/config_comments.rs +65 -0
  110. package/tests/config_comments_indentation.rs +20 -0
  111. package/tests/config_deep_merge_nonstring_key.rs +24 -0
  112. package/tests/config_document_end.rs +54 -0
  113. package/tests/config_document_start.rs +55 -0
  114. package/tests/config_empty_lines.rs +48 -0
  115. package/tests/config_empty_values.rs +35 -0
  116. package/tests/config_env_errors.rs +23 -0
  117. package/tests/config_env_invalid_inline.rs +15 -0
  118. package/tests/config_env_missing.rs +63 -0
  119. package/tests/config_env_shim.rs +301 -0
  120. package/tests/config_explicit_file_parse_error.rs +55 -0
  121. package/tests/config_extended_features.rs +225 -0
  122. package/tests/config_extends_inline.rs +185 -0
  123. package/tests/config_extends_sequence.rs +18 -0
  124. package/tests/config_find_project_home_boundary.rs +54 -0
  125. package/tests/config_find_project_two_files_in_cwd.rs +47 -0
  126. package/tests/config_float_values.rs +34 -0
  127. package/tests/config_from_yaml_paths.rs +32 -0
  128. package/tests/config_hyphens.rs +51 -0
  129. package/tests/config_ignore_errors.rs +243 -0
  130. package/tests/config_ignore_overrides.rs +83 -0
  131. package/tests/config_indentation.rs +65 -0
  132. package/tests/config_invalid_globs.rs +16 -0
  133. package/tests/config_invalid_types.rs +19 -0
  134. package/tests/config_key_duplicates.rs +34 -0
  135. package/tests/config_key_ordering.rs +70 -0
  136. package/tests/config_line_length.rs +65 -0
  137. package/tests/config_locale.rs +111 -0
  138. package/tests/config_merge.rs +26 -0
  139. package/tests/config_new_lines.rs +89 -0
  140. package/tests/config_octal_values.rs +33 -0
  141. package/tests/config_quoted_strings.rs +195 -0
  142. package/tests/config_rule_level.rs +147 -0
  143. package/tests/config_rules_non_string_keys.rs +23 -0
  144. package/tests/config_scalar_overrides.rs +27 -0
  145. package/tests/config_to_toml.rs +110 -0
  146. package/tests/config_toml_coverage.rs +80 -0
  147. package/tests/config_toml_discovery.rs +304 -0
  148. package/tests/config_trailing_spaces.rs +152 -0
  149. package/tests/config_truthy.rs +77 -0
  150. package/tests/config_yaml_files.rs +62 -0
  151. package/tests/config_yaml_files_all_non_string.rs +15 -0
  152. package/tests/config_yaml_files_empty.rs +30 -0
  153. package/tests/coverage_commas.rs +46 -0
  154. package/tests/decoder_decode.rs +338 -0
  155. package/tests/discover_config_bin_all.rs +66 -0
  156. package/tests/discover_config_bin_env_invalid_yaml.rs +26 -0
  157. package/tests/discover_config_bin_project_config_parse_error.rs +24 -0
  158. package/tests/discover_config_bin_user_global_error.rs +26 -0
  159. package/tests/discover_module.rs +30 -0
  160. package/tests/discover_per_file_dir.rs +10 -0
  161. package/tests/discover_per_file_project_config_error.rs +21 -0
  162. package/tests/float_values.rs +43 -0
  163. package/tests/lint_multi_errors.rs +32 -0
  164. package/tests/main_yaml_ok_filtering.rs +30 -0
  165. package/tests/migrate_module.rs +259 -0
  166. package/tests/resolve_ctx_empty_parent.rs +16 -0
  167. package/tests/rule_anchors.rs +442 -0
  168. package/tests/rule_braces.rs +258 -0
  169. package/tests/rule_brackets.rs +217 -0
  170. package/tests/rule_commas.rs +205 -0
  171. package/tests/rule_comments.rs +197 -0
  172. package/tests/rule_comments_indentation.rs +127 -0
  173. package/tests/rule_document_end.rs +118 -0
  174. package/tests/rule_document_start.rs +60 -0
  175. package/tests/rule_empty_lines.rs +96 -0
  176. package/tests/rule_empty_values.rs +102 -0
  177. package/tests/rule_float_values.rs +109 -0
  178. package/tests/rule_hyphens.rs +65 -0
  179. package/tests/rule_indentation.rs +455 -0
  180. package/tests/rule_key_duplicates.rs +76 -0
  181. package/tests/rule_key_ordering.rs +207 -0
  182. package/tests/rule_line_length.rs +200 -0
  183. package/tests/rule_new_lines.rs +51 -0
  184. package/tests/rule_octal_values.rs +53 -0
  185. package/tests/rule_quoted_strings.rs +290 -0
  186. package/tests/rule_trailing_spaces.rs +41 -0
  187. package/tests/rule_truthy.rs +236 -0
  188. package/tests/user_global_invalid_yaml.rs +32 -0
  189. package/tests/yamllint_compat_anchors.rs +280 -0
  190. package/tests/yamllint_compat_braces.rs +411 -0
  191. package/tests/yamllint_compat_brackets.rs +364 -0
  192. package/tests/yamllint_compat_colons.rs +298 -0
  193. package/tests/yamllint_compat_colors.rs +80 -0
  194. package/tests/yamllint_compat_commas.rs +375 -0
  195. package/tests/yamllint_compat_comments.rs +167 -0
  196. package/tests/yamllint_compat_comments_indentation.rs +281 -0
  197. package/tests/yamllint_compat_config.rs +170 -0
  198. package/tests/yamllint_compat_document_end.rs +243 -0
  199. package/tests/yamllint_compat_document_start.rs +136 -0
  200. package/tests/yamllint_compat_empty_lines.rs +117 -0
  201. package/tests/yamllint_compat_empty_values.rs +179 -0
  202. package/tests/yamllint_compat_float_values.rs +216 -0
  203. package/tests/yamllint_compat_hyphens.rs +223 -0
  204. package/tests/yamllint_compat_indentation.rs +398 -0
  205. package/tests/yamllint_compat_key_duplicates.rs +139 -0
  206. package/tests/yamllint_compat_key_ordering.rs +170 -0
  207. package/tests/yamllint_compat_line_length.rs +375 -0
  208. package/tests/yamllint_compat_list.rs +127 -0
  209. package/tests/yamllint_compat_new_line.rs +133 -0
  210. package/tests/yamllint_compat_newline_types.rs +185 -0
  211. package/tests/yamllint_compat_octal_values.rs +172 -0
  212. package/tests/yamllint_compat_quoted_strings.rs +154 -0
  213. package/tests/yamllint_compat_syntax.rs +200 -0
  214. package/tests/yamllint_compat_trailing_spaces.rs +162 -0
  215. package/tests/yamllint_compat_truthy.rs +130 -0
  216. package/tests/yamllint_compat_yaml_files.rs +81 -0
  217. package/typos.toml +2 -0
package/Cargo.lock ADDED
@@ -0,0 +1,908 @@
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 = "anstyle"
16
+ version = "1.0.14"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
19
+
20
+ [[package]]
21
+ name = "anyhow"
22
+ version = "1.0.102"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
25
+
26
+ [[package]]
27
+ name = "arraydeque"
28
+ version = "0.5.1"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
31
+
32
+ [[package]]
33
+ name = "autocfg"
34
+ version = "1.5.0"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
37
+
38
+ [[package]]
39
+ name = "bitflags"
40
+ version = "2.11.0"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
43
+
44
+ [[package]]
45
+ name = "bstr"
46
+ version = "1.12.1"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
49
+ dependencies = [
50
+ "memchr",
51
+ "serde",
52
+ ]
53
+
54
+ [[package]]
55
+ name = "cfg-if"
56
+ version = "1.0.4"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
59
+
60
+ [[package]]
61
+ name = "clap"
62
+ version = "4.6.0"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
65
+ dependencies = [
66
+ "clap_builder",
67
+ "clap_derive",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "clap_builder"
72
+ version = "4.6.0"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
75
+ dependencies = [
76
+ "anstyle",
77
+ "clap_lex",
78
+ "strsim",
79
+ ]
80
+
81
+ [[package]]
82
+ name = "clap_derive"
83
+ version = "4.6.0"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
86
+ dependencies = [
87
+ "heck",
88
+ "proc-macro2",
89
+ "quote",
90
+ "syn",
91
+ ]
92
+
93
+ [[package]]
94
+ name = "clap_lex"
95
+ version = "1.1.0"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
98
+
99
+ [[package]]
100
+ name = "crossbeam-deque"
101
+ version = "0.8.6"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
104
+ dependencies = [
105
+ "crossbeam-epoch",
106
+ "crossbeam-utils",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "crossbeam-epoch"
111
+ version = "0.9.18"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
114
+ dependencies = [
115
+ "crossbeam-utils",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "crossbeam-utils"
120
+ version = "0.8.21"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
123
+
124
+ [[package]]
125
+ name = "dirs-next"
126
+ version = "2.0.0"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
129
+ dependencies = [
130
+ "cfg-if",
131
+ "dirs-sys-next",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "dirs-sys-next"
136
+ version = "0.1.2"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
139
+ dependencies = [
140
+ "libc",
141
+ "redox_users",
142
+ "winapi",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "either"
147
+ version = "1.15.0"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
150
+
151
+ [[package]]
152
+ name = "encoding_rs"
153
+ version = "0.8.35"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
156
+ dependencies = [
157
+ "cfg-if",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "equivalent"
162
+ version = "1.0.2"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
165
+
166
+ [[package]]
167
+ name = "errno"
168
+ version = "0.3.14"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
171
+ dependencies = [
172
+ "libc",
173
+ "windows-sys",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "fastrand"
178
+ version = "2.4.0"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "a043dc74da1e37d6afe657061213aa6f425f855399a11d3463c6ecccc4dfda1f"
181
+
182
+ [[package]]
183
+ name = "foldhash"
184
+ version = "0.1.5"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
187
+
188
+ [[package]]
189
+ name = "getrandom"
190
+ version = "0.2.17"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
193
+ dependencies = [
194
+ "cfg-if",
195
+ "libc",
196
+ "wasi",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "getrandom"
201
+ version = "0.4.2"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
204
+ dependencies = [
205
+ "cfg-if",
206
+ "libc",
207
+ "r-efi",
208
+ "wasip2",
209
+ "wasip3",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "globset"
214
+ version = "0.4.18"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
217
+ dependencies = [
218
+ "aho-corasick",
219
+ "bstr",
220
+ "log",
221
+ "regex-automata",
222
+ "regex-syntax",
223
+ ]
224
+
225
+ [[package]]
226
+ name = "hashbrown"
227
+ version = "0.15.5"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
230
+ dependencies = [
231
+ "foldhash",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "hashbrown"
236
+ version = "0.16.1"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
239
+
240
+ [[package]]
241
+ name = "hashlink"
242
+ version = "0.10.0"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
245
+ dependencies = [
246
+ "hashbrown 0.15.5",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "heck"
251
+ version = "0.5.0"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
254
+
255
+ [[package]]
256
+ name = "id-arena"
257
+ version = "2.3.0"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
260
+
261
+ [[package]]
262
+ name = "ignore"
263
+ version = "0.4.25"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
266
+ dependencies = [
267
+ "crossbeam-deque",
268
+ "globset",
269
+ "log",
270
+ "memchr",
271
+ "regex-automata",
272
+ "same-file",
273
+ "walkdir",
274
+ "winapi-util",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "indexmap"
279
+ version = "2.13.1"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
282
+ dependencies = [
283
+ "equivalent",
284
+ "hashbrown 0.16.1",
285
+ "serde",
286
+ "serde_core",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "itoa"
291
+ version = "1.0.18"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
294
+
295
+ [[package]]
296
+ name = "leb128fmt"
297
+ version = "0.1.0"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
300
+
301
+ [[package]]
302
+ name = "libc"
303
+ version = "0.2.184"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
306
+
307
+ [[package]]
308
+ name = "libredox"
309
+ version = "0.1.15"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "7ddbf48fd451246b1f8c2610bd3b4ac0cc6e149d89832867093ab69a17194f08"
312
+ dependencies = [
313
+ "libc",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "linux-raw-sys"
318
+ version = "0.12.1"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
321
+
322
+ [[package]]
323
+ name = "log"
324
+ version = "0.4.29"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
327
+
328
+ [[package]]
329
+ name = "memchr"
330
+ version = "2.8.0"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
333
+
334
+ [[package]]
335
+ name = "num-traits"
336
+ version = "0.2.19"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
339
+ dependencies = [
340
+ "autocfg",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "once_cell"
345
+ version = "1.21.4"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
348
+
349
+ [[package]]
350
+ name = "ordered-float"
351
+ version = "5.3.0"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
354
+ dependencies = [
355
+ "num-traits",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "prettyplease"
360
+ version = "0.2.37"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
363
+ dependencies = [
364
+ "proc-macro2",
365
+ "syn",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "proc-macro2"
370
+ version = "1.0.106"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
373
+ dependencies = [
374
+ "unicode-ident",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "quote"
379
+ version = "1.0.45"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
382
+ dependencies = [
383
+ "proc-macro2",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "r-efi"
388
+ version = "6.0.0"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
391
+
392
+ [[package]]
393
+ name = "rayon"
394
+ version = "1.11.0"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
397
+ dependencies = [
398
+ "either",
399
+ "rayon-core",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "rayon-core"
404
+ version = "1.13.0"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
407
+ dependencies = [
408
+ "crossbeam-deque",
409
+ "crossbeam-utils",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "redox_users"
414
+ version = "0.4.6"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
417
+ dependencies = [
418
+ "getrandom 0.2.17",
419
+ "libredox",
420
+ "thiserror",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "regex"
425
+ version = "1.12.3"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
428
+ dependencies = [
429
+ "aho-corasick",
430
+ "memchr",
431
+ "regex-automata",
432
+ "regex-syntax",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "regex-automata"
437
+ version = "0.4.14"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
440
+ dependencies = [
441
+ "aho-corasick",
442
+ "memchr",
443
+ "regex-syntax",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "regex-syntax"
448
+ version = "0.8.10"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
451
+
452
+ [[package]]
453
+ name = "rustix"
454
+ version = "1.1.4"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
457
+ dependencies = [
458
+ "bitflags",
459
+ "errno",
460
+ "libc",
461
+ "linux-raw-sys",
462
+ "windows-sys",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "ryl"
467
+ version = "0.4.1"
468
+ dependencies = [
469
+ "clap",
470
+ "dirs-next",
471
+ "encoding_rs",
472
+ "ignore",
473
+ "rayon",
474
+ "regex",
475
+ "saphyr",
476
+ "saphyr-parser",
477
+ "semver",
478
+ "tempfile",
479
+ "toml",
480
+ "unicode-normalization",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "same-file"
485
+ version = "1.0.6"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
488
+ dependencies = [
489
+ "winapi-util",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "saphyr"
494
+ version = "0.0.6"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "f3767dfe8889ebb55a21409df2b6f36e66abfbe1eb92d64ff76ae799d3f91016"
497
+ dependencies = [
498
+ "arraydeque",
499
+ "encoding_rs",
500
+ "hashlink",
501
+ "ordered-float",
502
+ "saphyr-parser",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "saphyr-parser"
507
+ version = "0.0.6"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "4fb771b59f6b1985d1406325ec28f97cfb14256abcec4fdfb37b36a1766d6af7"
510
+ dependencies = [
511
+ "arraydeque",
512
+ "hashlink",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "semver"
517
+ version = "1.0.28"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
520
+
521
+ [[package]]
522
+ name = "serde"
523
+ version = "1.0.228"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
526
+ dependencies = [
527
+ "serde_core",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "serde_core"
532
+ version = "1.0.228"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
535
+ dependencies = [
536
+ "serde_derive",
537
+ ]
538
+
539
+ [[package]]
540
+ name = "serde_derive"
541
+ version = "1.0.228"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
544
+ dependencies = [
545
+ "proc-macro2",
546
+ "quote",
547
+ "syn",
548
+ ]
549
+
550
+ [[package]]
551
+ name = "serde_json"
552
+ version = "1.0.149"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
555
+ dependencies = [
556
+ "itoa",
557
+ "memchr",
558
+ "serde",
559
+ "serde_core",
560
+ "zmij",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "serde_spanned"
565
+ version = "1.1.1"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
568
+ dependencies = [
569
+ "serde_core",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "strsim"
574
+ version = "0.11.1"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
577
+
578
+ [[package]]
579
+ name = "syn"
580
+ version = "2.0.117"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
583
+ dependencies = [
584
+ "proc-macro2",
585
+ "quote",
586
+ "unicode-ident",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "tempfile"
591
+ version = "3.27.0"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
594
+ dependencies = [
595
+ "fastrand",
596
+ "getrandom 0.4.2",
597
+ "once_cell",
598
+ "rustix",
599
+ "windows-sys",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "thiserror"
604
+ version = "1.0.69"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
607
+ dependencies = [
608
+ "thiserror-impl",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "thiserror-impl"
613
+ version = "1.0.69"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
616
+ dependencies = [
617
+ "proc-macro2",
618
+ "quote",
619
+ "syn",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "tinyvec"
624
+ version = "1.11.0"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
627
+ dependencies = [
628
+ "tinyvec_macros",
629
+ ]
630
+
631
+ [[package]]
632
+ name = "tinyvec_macros"
633
+ version = "0.1.1"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
636
+
637
+ [[package]]
638
+ name = "toml"
639
+ version = "1.1.2+spec-1.1.0"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
642
+ dependencies = [
643
+ "serde_core",
644
+ "serde_spanned",
645
+ "toml_datetime",
646
+ "toml_parser",
647
+ "toml_writer",
648
+ "winnow",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "toml_datetime"
653
+ version = "1.1.1+spec-1.1.0"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
656
+ dependencies = [
657
+ "serde_core",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "toml_parser"
662
+ version = "1.1.2+spec-1.1.0"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
665
+ dependencies = [
666
+ "winnow",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "toml_writer"
671
+ version = "1.1.1+spec-1.1.0"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
674
+
675
+ [[package]]
676
+ name = "unicode-ident"
677
+ version = "1.0.24"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
680
+
681
+ [[package]]
682
+ name = "unicode-normalization"
683
+ version = "0.1.25"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
686
+ dependencies = [
687
+ "tinyvec",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "unicode-xid"
692
+ version = "0.2.6"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
695
+
696
+ [[package]]
697
+ name = "walkdir"
698
+ version = "2.5.0"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
701
+ dependencies = [
702
+ "same-file",
703
+ "winapi-util",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "wasi"
708
+ version = "0.11.1+wasi-snapshot-preview1"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
711
+
712
+ [[package]]
713
+ name = "wasip2"
714
+ version = "1.0.2+wasi-0.2.9"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
717
+ dependencies = [
718
+ "wit-bindgen",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "wasip3"
723
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
726
+ dependencies = [
727
+ "wit-bindgen",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "wasm-encoder"
732
+ version = "0.244.0"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
735
+ dependencies = [
736
+ "leb128fmt",
737
+ "wasmparser",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "wasm-metadata"
742
+ version = "0.244.0"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
745
+ dependencies = [
746
+ "anyhow",
747
+ "indexmap",
748
+ "wasm-encoder",
749
+ "wasmparser",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "wasmparser"
754
+ version = "0.244.0"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
757
+ dependencies = [
758
+ "bitflags",
759
+ "hashbrown 0.15.5",
760
+ "indexmap",
761
+ "semver",
762
+ ]
763
+
764
+ [[package]]
765
+ name = "winapi"
766
+ version = "0.3.9"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
769
+ dependencies = [
770
+ "winapi-i686-pc-windows-gnu",
771
+ "winapi-x86_64-pc-windows-gnu",
772
+ ]
773
+
774
+ [[package]]
775
+ name = "winapi-i686-pc-windows-gnu"
776
+ version = "0.4.0"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
779
+
780
+ [[package]]
781
+ name = "winapi-util"
782
+ version = "0.1.11"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
785
+ dependencies = [
786
+ "windows-sys",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "winapi-x86_64-pc-windows-gnu"
791
+ version = "0.4.0"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
794
+
795
+ [[package]]
796
+ name = "windows-link"
797
+ version = "0.2.1"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
800
+
801
+ [[package]]
802
+ name = "windows-sys"
803
+ version = "0.61.2"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
806
+ dependencies = [
807
+ "windows-link",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "winnow"
812
+ version = "1.0.1"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
815
+
816
+ [[package]]
817
+ name = "wit-bindgen"
818
+ version = "0.51.0"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
821
+ dependencies = [
822
+ "wit-bindgen-rust-macro",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "wit-bindgen-core"
827
+ version = "0.51.0"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
830
+ dependencies = [
831
+ "anyhow",
832
+ "heck",
833
+ "wit-parser",
834
+ ]
835
+
836
+ [[package]]
837
+ name = "wit-bindgen-rust"
838
+ version = "0.51.0"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
841
+ dependencies = [
842
+ "anyhow",
843
+ "heck",
844
+ "indexmap",
845
+ "prettyplease",
846
+ "syn",
847
+ "wasm-metadata",
848
+ "wit-bindgen-core",
849
+ "wit-component",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "wit-bindgen-rust-macro"
854
+ version = "0.51.0"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
857
+ dependencies = [
858
+ "anyhow",
859
+ "prettyplease",
860
+ "proc-macro2",
861
+ "quote",
862
+ "syn",
863
+ "wit-bindgen-core",
864
+ "wit-bindgen-rust",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "wit-component"
869
+ version = "0.244.0"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
872
+ dependencies = [
873
+ "anyhow",
874
+ "bitflags",
875
+ "indexmap",
876
+ "log",
877
+ "serde",
878
+ "serde_derive",
879
+ "serde_json",
880
+ "wasm-encoder",
881
+ "wasm-metadata",
882
+ "wasmparser",
883
+ "wit-parser",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "wit-parser"
888
+ version = "0.244.0"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
891
+ dependencies = [
892
+ "anyhow",
893
+ "id-arena",
894
+ "indexmap",
895
+ "log",
896
+ "semver",
897
+ "serde",
898
+ "serde_derive",
899
+ "serde_json",
900
+ "unicode-xid",
901
+ "wasmparser",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "zmij"
906
+ version = "1.0.21"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"