sonicop 26.8.101

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 (72) hide show
  1. checksums.yaml +7 -0
  2. data/CONFORMANCE.md +109 -0
  3. data/Cargo.lock +975 -0
  4. data/Cargo.toml +40 -0
  5. data/LICENSE +21 -0
  6. data/NOTICE +7 -0
  7. data/README.ja.md +161 -0
  8. data/README.md +173 -0
  9. data/config/default.yml +6305 -0
  10. data/exe/sonicop +7 -0
  11. data/ext/sonicop/extconf.rb +38 -0
  12. data/lib/sonicop/runner.rb +67 -0
  13. data/lib/sonicop/version.rb +6 -0
  14. data/lib/sonicop.rb +8 -0
  15. data/licenses/RUBOCOP.txt +20 -0
  16. data/licenses/TREE_SITTER_RUBY.txt +21 -0
  17. data/src/cli.rs +940 -0
  18. data/src/config/inheritance.rs +332 -0
  19. data/src/config/loader.rs +117 -0
  20. data/src/config/mod.rs +461 -0
  21. data/src/config/paths.rs +436 -0
  22. data/src/config/plugin.rs +247 -0
  23. data/src/config/store.rs +141 -0
  24. data/src/cop_name.rs +71 -0
  25. data/src/diagnostic.rs +205 -0
  26. data/src/directives.rs +305 -0
  27. data/src/engine.rs +734 -0
  28. data/src/formatter.rs +684 -0
  29. data/src/lib.rs +42 -0
  30. data/src/main.rs +3 -0
  31. data/src/ruby_version.rs +393 -0
  32. data/src/rules/layout/empty_line_after_magic_comment.rs +49 -0
  33. data/src/rules/layout/end_of_line.rs +35 -0
  34. data/src/rules/layout/line_length.rs +167 -0
  35. data/src/rules/layout/mod.rs +13 -0
  36. data/src/rules/layout/space_after_comma.rs +32 -0
  37. data/src/rules/layout/space_around_operators.rs +104 -0
  38. data/src/rules/layout/space_inside_parens.rs +100 -0
  39. data/src/rules/layout/support.rs +23 -0
  40. data/src/rules/layout/trailing_empty_lines.rs +38 -0
  41. data/src/rules/layout/trailing_whitespace.rs +26 -0
  42. data/src/rules/lint/duplicate_methods.rs +72 -0
  43. data/src/rules/lint/mod.rs +7 -0
  44. data/src/rules/lint/syntax.rs +200 -0
  45. data/src/rules/lint/unused_block_argument.rs +74 -0
  46. data/src/rules/lint/useless_assignment.rs +104 -0
  47. data/src/rules/metrics/block_length.rs +39 -0
  48. data/src/rules/metrics/class_length.rs +34 -0
  49. data/src/rules/metrics/method_length.rs +10 -0
  50. data/src/rules/metrics/mod.rs +10 -0
  51. data/src/rules/metrics/module_length.rs +17 -0
  52. data/src/rules/metrics/parameter_lists.rs +21 -0
  53. data/src/rules/metrics/support.rs +105 -0
  54. data/src/rules/mod.rs +380 -0
  55. data/src/rules/naming/ascii_identifiers.rs +17 -0
  56. data/src/rules/naming/constant_name.rs +49 -0
  57. data/src/rules/naming/method_name.rs +51 -0
  58. data/src/rules/naming/mod.rs +9 -0
  59. data/src/rules/naming/support.rs +22 -0
  60. data/src/rules/naming/variable_name.rs +50 -0
  61. data/src/rules/security/eval.rs +170 -0
  62. data/src/rules/security/mod.rs +6 -0
  63. data/src/rules/style/frozen_string_literal_comment.rs +56 -0
  64. data/src/rules/style/hash_syntax.rs +63 -0
  65. data/src/rules/style/mod.rs +9 -0
  66. data/src/rules/style/numeric_literals.rs +59 -0
  67. data/src/rules/style/redundant_return.rs +143 -0
  68. data/src/rules/style/semicolon.rs +48 -0
  69. data/src/rules/style/string_literals.rs +74 -0
  70. data/src/rules/support.rs +31 -0
  71. data/src/source.rs +118 -0
  72. metadata +117 -0
data/Cargo.lock ADDED
@@ -0,0 +1,975 @@
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 = "anstream"
16
+ version = "1.0.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
19
+ dependencies = [
20
+ "anstyle",
21
+ "anstyle-parse",
22
+ "anstyle-query",
23
+ "anstyle-wincon",
24
+ "colorchoice",
25
+ "is_terminal_polyfill",
26
+ "utf8parse",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.14"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
34
+
35
+ [[package]]
36
+ name = "anstyle-parse"
37
+ version = "1.0.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
40
+ dependencies = [
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-query"
46
+ version = "1.1.5"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
49
+ dependencies = [
50
+ "windows-sys",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-wincon"
55
+ version = "3.0.11"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
58
+ dependencies = [
59
+ "anstyle",
60
+ "once_cell_polyfill",
61
+ "windows-sys",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anyhow"
66
+ version = "1.0.104"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
69
+
70
+ [[package]]
71
+ name = "assert_cmd"
72
+ version = "2.2.2"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
75
+ dependencies = [
76
+ "anstyle",
77
+ "bstr",
78
+ "libc",
79
+ "predicates",
80
+ "predicates-core",
81
+ "predicates-tree",
82
+ "wait-timeout",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "base64"
87
+ version = "0.23.1"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
90
+
91
+ [[package]]
92
+ name = "base64ct"
93
+ version = "1.8.3"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
96
+
97
+ [[package]]
98
+ name = "bitflags"
99
+ version = "2.13.1"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
102
+
103
+ [[package]]
104
+ name = "bstr"
105
+ version = "1.13.0"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "1f7dc094d718f2e1c1559ad110e27eeaae14a5465d3d56dd6dbd793079fbd530"
108
+ dependencies = [
109
+ "memchr",
110
+ "regex-automata",
111
+ "serde_core",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "bytes"
116
+ version = "1.12.1"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
119
+
120
+ [[package]]
121
+ name = "cc"
122
+ version = "1.4.0"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
125
+ dependencies = [
126
+ "find-msvc-tools",
127
+ "shlex",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "cfg-if"
132
+ version = "1.0.4"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
135
+
136
+ [[package]]
137
+ name = "clap"
138
+ version = "4.6.4"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
141
+ dependencies = [
142
+ "clap_builder",
143
+ "clap_derive",
144
+ ]
145
+
146
+ [[package]]
147
+ name = "clap_builder"
148
+ version = "4.6.2"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
151
+ dependencies = [
152
+ "anstream",
153
+ "anstyle",
154
+ "clap_lex",
155
+ "strsim",
156
+ "terminal_size",
157
+ ]
158
+
159
+ [[package]]
160
+ name = "clap_derive"
161
+ version = "4.6.4"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
164
+ dependencies = [
165
+ "heck",
166
+ "proc-macro2",
167
+ "quote",
168
+ "syn 3.0.3",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "clap_lex"
173
+ version = "1.1.0"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
176
+
177
+ [[package]]
178
+ name = "colorchoice"
179
+ version = "1.0.5"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
182
+
183
+ [[package]]
184
+ name = "core-foundation"
185
+ version = "0.10.1"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
188
+ dependencies = [
189
+ "core-foundation-sys",
190
+ "libc",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "core-foundation-sys"
195
+ version = "0.8.7"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
198
+
199
+ [[package]]
200
+ name = "crossbeam-deque"
201
+ version = "0.8.7"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
204
+ dependencies = [
205
+ "crossbeam-epoch",
206
+ "crossbeam-utils",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "crossbeam-epoch"
211
+ version = "0.9.20"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
214
+ dependencies = [
215
+ "crossbeam-utils",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "crossbeam-utils"
220
+ version = "0.8.22"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
223
+
224
+ [[package]]
225
+ name = "der"
226
+ version = "0.8.1"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "a69dedd701da44b0536442edf09c81a64b0ab97a7a4a5e3d1971f00027cbc63d"
229
+ dependencies = [
230
+ "pem-rfc7468",
231
+ "zeroize",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "difflib"
236
+ version = "0.4.0"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
239
+
240
+ [[package]]
241
+ name = "either"
242
+ version = "1.17.0"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
245
+
246
+ [[package]]
247
+ name = "equivalent"
248
+ version = "1.0.2"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
251
+
252
+ [[package]]
253
+ name = "errno"
254
+ version = "0.3.14"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
257
+ dependencies = [
258
+ "libc",
259
+ "windows-sys",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "fastrand"
264
+ version = "2.5.0"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
267
+
268
+ [[package]]
269
+ name = "find-msvc-tools"
270
+ version = "0.1.10"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "26b73573e6edcd2af0cdf47bd6cb58f0b3839491263c314eaad1ccf24430e1de"
273
+
274
+ [[package]]
275
+ name = "foreign-types"
276
+ version = "0.3.2"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
279
+ dependencies = [
280
+ "foreign-types-shared",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "foreign-types-shared"
285
+ version = "0.1.1"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
288
+
289
+ [[package]]
290
+ name = "getrandom"
291
+ version = "0.4.3"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
294
+ dependencies = [
295
+ "cfg-if",
296
+ "libc",
297
+ "r-efi",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "globset"
302
+ version = "0.4.19"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "e47d37d2ae4464254884b60ab7071be2b876a9c35b696bd018ddcc76847309cd"
305
+ dependencies = [
306
+ "aho-corasick",
307
+ "bstr",
308
+ "log",
309
+ "regex-automata",
310
+ "regex-syntax",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "hashbrown"
315
+ version = "0.17.1"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
318
+
319
+ [[package]]
320
+ name = "heck"
321
+ version = "0.5.0"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
324
+
325
+ [[package]]
326
+ name = "http"
327
+ version = "1.5.0"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
330
+ dependencies = [
331
+ "bytes",
332
+ "itoa",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "httparse"
337
+ version = "1.10.1"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
340
+
341
+ [[package]]
342
+ name = "ignore"
343
+ version = "0.4.31"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "7f8a7b8211e695a1d0cd91cace480d4d0bd57667ab10277cc412c5f7f4884f83"
346
+ dependencies = [
347
+ "crossbeam-deque",
348
+ "globset",
349
+ "log",
350
+ "memchr",
351
+ "regex-automata",
352
+ "same-file",
353
+ "walkdir",
354
+ "winapi-util",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "indexmap"
359
+ version = "2.14.0"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
362
+ dependencies = [
363
+ "equivalent",
364
+ "hashbrown",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "is_terminal_polyfill"
369
+ version = "1.70.2"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
372
+
373
+ [[package]]
374
+ name = "itoa"
375
+ version = "1.0.18"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
378
+
379
+ [[package]]
380
+ name = "libc"
381
+ version = "0.2.189"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
384
+
385
+ [[package]]
386
+ name = "linux-raw-sys"
387
+ version = "0.12.1"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
390
+
391
+ [[package]]
392
+ name = "log"
393
+ version = "0.4.33"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
396
+
397
+ [[package]]
398
+ name = "memchr"
399
+ version = "2.8.3"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
402
+
403
+ [[package]]
404
+ name = "native-tls"
405
+ version = "0.2.18"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
408
+ dependencies = [
409
+ "libc",
410
+ "log",
411
+ "openssl",
412
+ "openssl-probe",
413
+ "openssl-sys",
414
+ "schannel",
415
+ "security-framework",
416
+ "security-framework-sys",
417
+ "tempfile",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "once_cell"
422
+ version = "1.21.4"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
425
+
426
+ [[package]]
427
+ name = "once_cell_polyfill"
428
+ version = "1.70.2"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
431
+
432
+ [[package]]
433
+ name = "openssl"
434
+ version = "0.10.81"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "77823a27f0babb03091cb9ed9ef80af3b39dbc82f97e8fa530374b7dafd87a45"
437
+ dependencies = [
438
+ "bitflags",
439
+ "cfg-if",
440
+ "foreign-types",
441
+ "libc",
442
+ "openssl-macros",
443
+ "openssl-sys",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "openssl-macros"
448
+ version = "0.1.1"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
451
+ dependencies = [
452
+ "proc-macro2",
453
+ "quote",
454
+ "syn 2.0.119",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "openssl-probe"
459
+ version = "0.2.1"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
462
+
463
+ [[package]]
464
+ name = "openssl-sys"
465
+ version = "0.9.117"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "b47e7e6bb2c38cd930d25a23b40fa52e068c10e85f3e03a7f5ba5aaca5713695"
468
+ dependencies = [
469
+ "cc",
470
+ "libc",
471
+ "pkg-config",
472
+ "vcpkg",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "pem-rfc7468"
477
+ version = "1.0.0"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9"
480
+ dependencies = [
481
+ "base64ct",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "percent-encoding"
486
+ version = "2.3.2"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
489
+
490
+ [[package]]
491
+ name = "pkg-config"
492
+ version = "0.3.33"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
495
+
496
+ [[package]]
497
+ name = "predicates"
498
+ version = "3.1.4"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
501
+ dependencies = [
502
+ "anstyle",
503
+ "difflib",
504
+ "predicates-core",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "predicates-core"
509
+ version = "1.0.10"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
512
+
513
+ [[package]]
514
+ name = "predicates-tree"
515
+ version = "1.0.13"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
518
+ dependencies = [
519
+ "predicates-core",
520
+ "termtree",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "proc-macro2"
525
+ version = "1.0.107"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
528
+ dependencies = [
529
+ "unicode-ident",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "quote"
534
+ version = "1.0.47"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
537
+ dependencies = [
538
+ "proc-macro2",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "r-efi"
543
+ version = "6.0.0"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
546
+
547
+ [[package]]
548
+ name = "rayon"
549
+ version = "1.12.0"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
552
+ dependencies = [
553
+ "either",
554
+ "rayon-core",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "rayon-core"
559
+ version = "1.13.0"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
562
+ dependencies = [
563
+ "crossbeam-deque",
564
+ "crossbeam-utils",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "regex"
569
+ version = "1.13.1"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
572
+ dependencies = [
573
+ "aho-corasick",
574
+ "memchr",
575
+ "regex-automata",
576
+ "regex-syntax",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "regex-automata"
581
+ version = "0.4.16"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
584
+ dependencies = [
585
+ "aho-corasick",
586
+ "memchr",
587
+ "regex-syntax",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "regex-syntax"
592
+ version = "0.8.11"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
595
+
596
+ [[package]]
597
+ name = "rustix"
598
+ version = "1.1.4"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
601
+ dependencies = [
602
+ "bitflags",
603
+ "errno",
604
+ "libc",
605
+ "linux-raw-sys",
606
+ "windows-sys",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "rustls-pki-types"
611
+ version = "1.15.1"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
614
+ dependencies = [
615
+ "zeroize",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "ryu"
620
+ version = "1.0.23"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
623
+
624
+ [[package]]
625
+ name = "same-file"
626
+ version = "1.0.6"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
629
+ dependencies = [
630
+ "winapi-util",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "schannel"
635
+ version = "0.1.29"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
638
+ dependencies = [
639
+ "windows-sys",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "security-framework"
644
+ version = "3.7.0"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
647
+ dependencies = [
648
+ "bitflags",
649
+ "core-foundation",
650
+ "core-foundation-sys",
651
+ "libc",
652
+ "security-framework-sys",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "security-framework-sys"
657
+ version = "2.17.0"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
660
+ dependencies = [
661
+ "core-foundation-sys",
662
+ "libc",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "serde"
667
+ version = "1.0.229"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
670
+ dependencies = [
671
+ "serde_core",
672
+ "serde_derive",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "serde_core"
677
+ version = "1.0.229"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
680
+ dependencies = [
681
+ "serde_derive",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "serde_derive"
686
+ version = "1.0.229"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
689
+ dependencies = [
690
+ "proc-macro2",
691
+ "quote",
692
+ "syn 3.0.3",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "serde_json"
697
+ version = "1.0.151"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
700
+ dependencies = [
701
+ "indexmap",
702
+ "itoa",
703
+ "memchr",
704
+ "serde",
705
+ "serde_core",
706
+ "zmij",
707
+ ]
708
+
709
+ [[package]]
710
+ name = "serde_yaml_ng"
711
+ version = "0.10.0"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "7b4db627b98b36d4203a7b458cf3573730f2bb591b28871d916dfa9efabfd41f"
714
+ dependencies = [
715
+ "indexmap",
716
+ "itoa",
717
+ "ryu",
718
+ "serde",
719
+ "unsafe-libyaml",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "shell-words"
724
+ version = "1.1.1"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
727
+
728
+ [[package]]
729
+ name = "shlex"
730
+ version = "2.0.1"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
733
+
734
+ [[package]]
735
+ name = "sonicop"
736
+ version = "26.8.101"
737
+ dependencies = [
738
+ "anyhow",
739
+ "assert_cmd",
740
+ "clap",
741
+ "globset",
742
+ "ignore",
743
+ "rayon",
744
+ "regex",
745
+ "serde",
746
+ "serde_json",
747
+ "serde_yaml_ng",
748
+ "shell-words",
749
+ "tempfile",
750
+ "tree-sitter",
751
+ "tree-sitter-ruby",
752
+ "unicode-width",
753
+ "ureq",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "streaming-iterator"
758
+ version = "0.1.9"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
761
+
762
+ [[package]]
763
+ name = "strsim"
764
+ version = "0.11.1"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
767
+
768
+ [[package]]
769
+ name = "syn"
770
+ version = "2.0.119"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
773
+ dependencies = [
774
+ "proc-macro2",
775
+ "quote",
776
+ "unicode-ident",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "syn"
781
+ version = "3.0.3"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
784
+ dependencies = [
785
+ "proc-macro2",
786
+ "quote",
787
+ "unicode-ident",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "tempfile"
792
+ version = "3.27.0"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
795
+ dependencies = [
796
+ "fastrand",
797
+ "getrandom",
798
+ "once_cell",
799
+ "rustix",
800
+ "windows-sys",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "terminal_size"
805
+ version = "0.4.4"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
808
+ dependencies = [
809
+ "rustix",
810
+ "windows-sys",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "termtree"
815
+ version = "0.5.1"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
818
+
819
+ [[package]]
820
+ name = "tree-sitter"
821
+ version = "0.26.11"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "af1c71c1c4cc0920b20d6b0f6572e7682cd07a6a2faec71067a31fa394c586df"
824
+ dependencies = [
825
+ "cc",
826
+ "regex",
827
+ "regex-syntax",
828
+ "serde_json",
829
+ "streaming-iterator",
830
+ "tree-sitter-language",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "tree-sitter-language"
835
+ version = "0.1.7"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "009994f150cc0cd50ff54917d5bc8bffe8cad10ca10d81c34da2ec421ae61782"
838
+
839
+ [[package]]
840
+ name = "tree-sitter-ruby"
841
+ version = "26.8.100"
842
+ source = "git+https://github.com/owayo/tree-sitter-ruby.git?rev=88a64c6c37c4c23d8d4d804c4ef9c4eca3c88b96#88a64c6c37c4c23d8d4d804c4ef9c4eca3c88b96"
843
+ dependencies = [
844
+ "cc",
845
+ "tree-sitter-language",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "unicode-ident"
850
+ version = "1.0.24"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
853
+
854
+ [[package]]
855
+ name = "unicode-width"
856
+ version = "0.2.2"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
859
+
860
+ [[package]]
861
+ name = "unsafe-libyaml"
862
+ version = "0.2.11"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
865
+
866
+ [[package]]
867
+ name = "ureq"
868
+ version = "3.4.0"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "972d7902c8735f2695410b8aed7df6ed12a47394aa1c8d7af49f0497b731a94d"
871
+ dependencies = [
872
+ "base64",
873
+ "der",
874
+ "log",
875
+ "native-tls",
876
+ "percent-encoding",
877
+ "rustls-pki-types",
878
+ "ureq-proto",
879
+ "utf8-zero",
880
+ "webpki-root-certs",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "ureq-proto"
885
+ version = "0.6.1"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "da5f78b09e6941e1a0f2e30e695e4b120377b54d5e0aec11b594bb57b3971613"
888
+ dependencies = [
889
+ "base64",
890
+ "http",
891
+ "httparse",
892
+ "log",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "utf8-zero"
897
+ version = "0.8.1"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
900
+
901
+ [[package]]
902
+ name = "utf8parse"
903
+ version = "0.2.2"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
906
+
907
+ [[package]]
908
+ name = "vcpkg"
909
+ version = "0.2.15"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
912
+
913
+ [[package]]
914
+ name = "wait-timeout"
915
+ version = "0.2.1"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
918
+ dependencies = [
919
+ "libc",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "walkdir"
924
+ version = "2.5.0"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
927
+ dependencies = [
928
+ "same-file",
929
+ "winapi-util",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "webpki-root-certs"
934
+ version = "1.0.9"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "b96554aa2acc8ccdb7e1c9a58a7a68dd5d13bccc69cd124cb09406db612a1c9b"
937
+ dependencies = [
938
+ "rustls-pki-types",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "winapi-util"
943
+ version = "0.1.11"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
946
+ dependencies = [
947
+ "windows-sys",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "windows-link"
952
+ version = "0.2.1"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
955
+
956
+ [[package]]
957
+ name = "windows-sys"
958
+ version = "0.61.2"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
961
+ dependencies = [
962
+ "windows-link",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "zeroize"
967
+ version = "1.9.0"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
970
+
971
+ [[package]]
972
+ name = "zmij"
973
+ version = "1.0.23"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"