@owenlamont/ryl 0.4.1 → 0.4.3

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/README.md +13 -0
  2. package/bin/ryl.js +96 -1
  3. package/npm-platforms.json +124 -0
  4. package/package.json +46 -12
  5. package/.github/CODEOWNERS +0 -1
  6. package/.github/dependabot.yml +0 -13
  7. package/.github/workflows/ci.yml +0 -107
  8. package/.github/workflows/release.yml +0 -613
  9. package/.github/workflows/update_dependencies.yml +0 -61
  10. package/.github/workflows/update_linters.yml +0 -56
  11. package/.pre-commit-config.yaml +0 -87
  12. package/.yamllint +0 -4
  13. package/AGENTS.md +0 -200
  14. package/Cargo.lock +0 -908
  15. package/Cargo.toml +0 -32
  16. package/clippy.toml +0 -1
  17. package/docs/config-presets.md +0 -100
  18. package/img/benchmark-5x5-5runs.svg +0 -2176
  19. package/pyproject.toml +0 -42
  20. package/ruff.toml +0 -107
  21. package/rumdl.toml +0 -20
  22. package/rust-toolchain.toml +0 -3
  23. package/rustfmt.toml +0 -3
  24. package/scripts/benchmark_perf_vs_yamllint.py +0 -400
  25. package/scripts/coverage-missing.ps1 +0 -80
  26. package/scripts/coverage-missing.sh +0 -60
  27. package/src/bin/discover_config_bin.rs +0 -24
  28. package/src/cli_support.rs +0 -33
  29. package/src/conf/mod.rs +0 -85
  30. package/src/config.rs +0 -2099
  31. package/src/decoder.rs +0 -326
  32. package/src/discover.rs +0 -31
  33. package/src/lib.rs +0 -19
  34. package/src/lint.rs +0 -558
  35. package/src/main.rs +0 -535
  36. package/src/migrate.rs +0 -233
  37. package/src/rules/anchors.rs +0 -517
  38. package/src/rules/braces.rs +0 -77
  39. package/src/rules/brackets.rs +0 -77
  40. package/src/rules/colons.rs +0 -475
  41. package/src/rules/commas.rs +0 -372
  42. package/src/rules/comments.rs +0 -299
  43. package/src/rules/comments_indentation.rs +0 -243
  44. package/src/rules/document_end.rs +0 -175
  45. package/src/rules/document_start.rs +0 -84
  46. package/src/rules/empty_lines.rs +0 -152
  47. package/src/rules/empty_values.rs +0 -255
  48. package/src/rules/float_values.rs +0 -259
  49. package/src/rules/flow_collection.rs +0 -562
  50. package/src/rules/hyphens.rs +0 -104
  51. package/src/rules/indentation.rs +0 -803
  52. package/src/rules/key_duplicates.rs +0 -218
  53. package/src/rules/key_ordering.rs +0 -303
  54. package/src/rules/line_length.rs +0 -326
  55. package/src/rules/mod.rs +0 -25
  56. package/src/rules/new_line_at_end_of_file.rs +0 -23
  57. package/src/rules/new_lines.rs +0 -95
  58. package/src/rules/octal_values.rs +0 -121
  59. package/src/rules/quoted_strings.rs +0 -577
  60. package/src/rules/span_utils.rs +0 -37
  61. package/src/rules/trailing_spaces.rs +0 -65
  62. package/src/rules/truthy.rs +0 -420
  63. package/tests/brackets_carriage_return.rs +0 -114
  64. package/tests/build_global_cfg_error.rs +0 -23
  65. package/tests/cli_anchors_rule.rs +0 -143
  66. package/tests/cli_braces_rule.rs +0 -104
  67. package/tests/cli_brackets_rule.rs +0 -104
  68. package/tests/cli_colons_rule.rs +0 -65
  69. package/tests/cli_commas_rule.rs +0 -104
  70. package/tests/cli_comments_indentation_rule.rs +0 -61
  71. package/tests/cli_comments_rule.rs +0 -67
  72. package/tests/cli_config_data_error.rs +0 -30
  73. package/tests/cli_config_flags.rs +0 -66
  74. package/tests/cli_config_migrate.rs +0 -229
  75. package/tests/cli_document_end_rule.rs +0 -92
  76. package/tests/cli_document_start_rule.rs +0 -92
  77. package/tests/cli_empty_lines_rule.rs +0 -87
  78. package/tests/cli_empty_values_rule.rs +0 -68
  79. package/tests/cli_env_config.rs +0 -34
  80. package/tests/cli_exit_and_errors.rs +0 -41
  81. package/tests/cli_file_encoding.rs +0 -203
  82. package/tests/cli_float_values_rule.rs +0 -64
  83. package/tests/cli_format_options.rs +0 -316
  84. package/tests/cli_global_cfg_relaxed.rs +0 -20
  85. package/tests/cli_hyphens_rule.rs +0 -104
  86. package/tests/cli_indentation_rule.rs +0 -65
  87. package/tests/cli_invalid_project_config.rs +0 -39
  88. package/tests/cli_key_duplicates_rule.rs +0 -104
  89. package/tests/cli_key_ordering_rule.rs +0 -59
  90. package/tests/cli_line_length_rule.rs +0 -85
  91. package/tests/cli_list_files.rs +0 -29
  92. package/tests/cli_new_line_rule.rs +0 -141
  93. package/tests/cli_new_lines_rule.rs +0 -119
  94. package/tests/cli_octal_values_rule.rs +0 -60
  95. package/tests/cli_quoted_strings_rule.rs +0 -47
  96. package/tests/cli_toml_config.rs +0 -119
  97. package/tests/cli_trailing_spaces_rule.rs +0 -77
  98. package/tests/cli_truthy_rule.rs +0 -83
  99. package/tests/cli_yaml_files_negation.rs +0 -45
  100. package/tests/colons_rule.rs +0 -303
  101. package/tests/common/compat.rs +0 -114
  102. package/tests/common/fake_env.rs +0 -93
  103. package/tests/common/mod.rs +0 -1
  104. package/tests/conf_builtin.rs +0 -9
  105. package/tests/config_anchors.rs +0 -84
  106. package/tests/config_braces.rs +0 -121
  107. package/tests/config_brackets.rs +0 -127
  108. package/tests/config_commas.rs +0 -79
  109. package/tests/config_comments.rs +0 -65
  110. package/tests/config_comments_indentation.rs +0 -20
  111. package/tests/config_deep_merge_nonstring_key.rs +0 -24
  112. package/tests/config_document_end.rs +0 -54
  113. package/tests/config_document_start.rs +0 -55
  114. package/tests/config_empty_lines.rs +0 -48
  115. package/tests/config_empty_values.rs +0 -35
  116. package/tests/config_env_errors.rs +0 -23
  117. package/tests/config_env_invalid_inline.rs +0 -15
  118. package/tests/config_env_missing.rs +0 -63
  119. package/tests/config_env_shim.rs +0 -301
  120. package/tests/config_explicit_file_parse_error.rs +0 -55
  121. package/tests/config_extended_features.rs +0 -225
  122. package/tests/config_extends_inline.rs +0 -185
  123. package/tests/config_extends_sequence.rs +0 -18
  124. package/tests/config_find_project_home_boundary.rs +0 -54
  125. package/tests/config_find_project_two_files_in_cwd.rs +0 -47
  126. package/tests/config_float_values.rs +0 -34
  127. package/tests/config_from_yaml_paths.rs +0 -32
  128. package/tests/config_hyphens.rs +0 -51
  129. package/tests/config_ignore_errors.rs +0 -243
  130. package/tests/config_ignore_overrides.rs +0 -83
  131. package/tests/config_indentation.rs +0 -65
  132. package/tests/config_invalid_globs.rs +0 -16
  133. package/tests/config_invalid_types.rs +0 -19
  134. package/tests/config_key_duplicates.rs +0 -34
  135. package/tests/config_key_ordering.rs +0 -70
  136. package/tests/config_line_length.rs +0 -65
  137. package/tests/config_locale.rs +0 -111
  138. package/tests/config_merge.rs +0 -26
  139. package/tests/config_new_lines.rs +0 -89
  140. package/tests/config_octal_values.rs +0 -33
  141. package/tests/config_quoted_strings.rs +0 -195
  142. package/tests/config_rule_level.rs +0 -147
  143. package/tests/config_rules_non_string_keys.rs +0 -23
  144. package/tests/config_scalar_overrides.rs +0 -27
  145. package/tests/config_to_toml.rs +0 -110
  146. package/tests/config_toml_coverage.rs +0 -80
  147. package/tests/config_toml_discovery.rs +0 -304
  148. package/tests/config_trailing_spaces.rs +0 -152
  149. package/tests/config_truthy.rs +0 -77
  150. package/tests/config_yaml_files.rs +0 -62
  151. package/tests/config_yaml_files_all_non_string.rs +0 -15
  152. package/tests/config_yaml_files_empty.rs +0 -30
  153. package/tests/coverage_commas.rs +0 -46
  154. package/tests/decoder_decode.rs +0 -338
  155. package/tests/discover_config_bin_all.rs +0 -66
  156. package/tests/discover_config_bin_env_invalid_yaml.rs +0 -26
  157. package/tests/discover_config_bin_project_config_parse_error.rs +0 -24
  158. package/tests/discover_config_bin_user_global_error.rs +0 -26
  159. package/tests/discover_module.rs +0 -30
  160. package/tests/discover_per_file_dir.rs +0 -10
  161. package/tests/discover_per_file_project_config_error.rs +0 -21
  162. package/tests/float_values.rs +0 -43
  163. package/tests/lint_multi_errors.rs +0 -32
  164. package/tests/main_yaml_ok_filtering.rs +0 -30
  165. package/tests/migrate_module.rs +0 -259
  166. package/tests/resolve_ctx_empty_parent.rs +0 -16
  167. package/tests/rule_anchors.rs +0 -442
  168. package/tests/rule_braces.rs +0 -258
  169. package/tests/rule_brackets.rs +0 -217
  170. package/tests/rule_commas.rs +0 -205
  171. package/tests/rule_comments.rs +0 -197
  172. package/tests/rule_comments_indentation.rs +0 -127
  173. package/tests/rule_document_end.rs +0 -118
  174. package/tests/rule_document_start.rs +0 -60
  175. package/tests/rule_empty_lines.rs +0 -96
  176. package/tests/rule_empty_values.rs +0 -102
  177. package/tests/rule_float_values.rs +0 -109
  178. package/tests/rule_hyphens.rs +0 -65
  179. package/tests/rule_indentation.rs +0 -455
  180. package/tests/rule_key_duplicates.rs +0 -76
  181. package/tests/rule_key_ordering.rs +0 -207
  182. package/tests/rule_line_length.rs +0 -200
  183. package/tests/rule_new_lines.rs +0 -51
  184. package/tests/rule_octal_values.rs +0 -53
  185. package/tests/rule_quoted_strings.rs +0 -290
  186. package/tests/rule_trailing_spaces.rs +0 -41
  187. package/tests/rule_truthy.rs +0 -236
  188. package/tests/user_global_invalid_yaml.rs +0 -32
  189. package/tests/yamllint_compat_anchors.rs +0 -280
  190. package/tests/yamllint_compat_braces.rs +0 -411
  191. package/tests/yamllint_compat_brackets.rs +0 -364
  192. package/tests/yamllint_compat_colons.rs +0 -298
  193. package/tests/yamllint_compat_colors.rs +0 -80
  194. package/tests/yamllint_compat_commas.rs +0 -375
  195. package/tests/yamllint_compat_comments.rs +0 -167
  196. package/tests/yamllint_compat_comments_indentation.rs +0 -281
  197. package/tests/yamllint_compat_config.rs +0 -170
  198. package/tests/yamllint_compat_document_end.rs +0 -243
  199. package/tests/yamllint_compat_document_start.rs +0 -136
  200. package/tests/yamllint_compat_empty_lines.rs +0 -117
  201. package/tests/yamllint_compat_empty_values.rs +0 -179
  202. package/tests/yamllint_compat_float_values.rs +0 -216
  203. package/tests/yamllint_compat_hyphens.rs +0 -223
  204. package/tests/yamllint_compat_indentation.rs +0 -398
  205. package/tests/yamllint_compat_key_duplicates.rs +0 -139
  206. package/tests/yamllint_compat_key_ordering.rs +0 -170
  207. package/tests/yamllint_compat_line_length.rs +0 -375
  208. package/tests/yamllint_compat_list.rs +0 -127
  209. package/tests/yamllint_compat_new_line.rs +0 -133
  210. package/tests/yamllint_compat_newline_types.rs +0 -185
  211. package/tests/yamllint_compat_octal_values.rs +0 -172
  212. package/tests/yamllint_compat_quoted_strings.rs +0 -154
  213. package/tests/yamllint_compat_syntax.rs +0 -200
  214. package/tests/yamllint_compat_trailing_spaces.rs +0 -162
  215. package/tests/yamllint_compat_truthy.rs +0 -130
  216. package/tests/yamllint_compat_yaml_files.rs +0 -81
  217. package/typos.toml +0 -2
package/Cargo.lock DELETED
@@ -1,908 +0,0 @@
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"