rfmt 1.7.0 → 2.0.0.beta1

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 (42) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +25 -0
  3. data/Cargo.lock +90 -1225
  4. data/Cargo.toml +6 -0
  5. data/README.md +32 -28
  6. data/ext/rfmt/Cargo.toml +9 -28
  7. data/ext/rfmt/src/ast/mod.rs +2 -0
  8. data/ext/rfmt/src/config/mod.rs +267 -30
  9. data/ext/rfmt/src/error/mod.rs +14 -3
  10. data/ext/rfmt/src/format/formatter.rs +22 -11
  11. data/ext/rfmt/src/format/registry.rs +8 -0
  12. data/ext/rfmt/src/format/rule.rs +208 -136
  13. data/ext/rfmt/src/format/rules/call.rs +14 -22
  14. data/ext/rfmt/src/format/rules/fallback.rs +4 -11
  15. data/ext/rfmt/src/format/rules/if_unless.rs +25 -3
  16. data/ext/rfmt/src/format/rules/loops.rs +3 -1
  17. data/ext/rfmt/src/format/rules/variable_write.rs +16 -9
  18. data/ext/rfmt/src/lib.rs +45 -12
  19. data/ext/rfmt/src/parser/mod.rs +2 -0
  20. data/ext/rfmt/src/parser/native_adapter.rs +2735 -0
  21. data/ext/rfmt/src/parser/prism_adapter.rs +5 -0
  22. data/ext/rfmt/src/validation.rs +69 -0
  23. data/ext/rfmt/tests/fixtures/parity/comments_mixed.rb +9 -0
  24. data/ext/rfmt/tests/fixtures/parity/constructs.rb +50 -0
  25. data/ext/rfmt/tests/fixtures/parity/embdoc.rb +12 -0
  26. data/ext/rfmt/tests/fixtures/parity/heredoc_assign.rb +15 -0
  27. data/ext/rfmt/tests/fixtures/parity/heredoc_call_args.rb +17 -0
  28. data/ext/rfmt/tests/fixtures/parity/metadata_classes.rb +30 -0
  29. data/ext/rfmt/tests/fixtures/parity/metadata_conditionals.rb +14 -0
  30. data/ext/rfmt/tests/fixtures/parity/metadata_defs.rb +33 -0
  31. data/ext/rfmt/tests/fixtures/parity/multibyte.rb +14 -0
  32. data/ext/rfmt/tests/fixtures/parity/numeric.rb +6 -0
  33. data/ext/rfmt/tests/fixtures/parity/plain.rb +31 -0
  34. data/ext/rfmt/tests/native_parity.rs +245 -0
  35. data/ext/rfmt/tests/ruby_prism_smoke.rs +66 -0
  36. data/lib/rfmt/cli.rb +37 -7
  37. data/lib/rfmt/configuration.rb +2 -20
  38. data/lib/rfmt/version.rb +1 -1
  39. data/lib/rfmt.rb +47 -19
  40. metadata +17 -18
  41. data/lib/rfmt/prism_bridge.rb +0 -529
  42. data/lib/rfmt/prism_node_extractor.rb +0 -115
data/Cargo.lock CHANGED
@@ -2,18 +2,6 @@
2
2
  # It is not intended for manual editing.
3
3
  version = 4
4
4
 
5
- [[package]]
6
- name = "ahash"
7
- version = "0.8.12"
8
- source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
- dependencies = [
11
- "cfg-if",
12
- "once_cell",
13
- "version_check",
14
- "zerocopy",
15
- ]
16
-
17
5
  [[package]]
18
6
  name = "aho-corasick"
19
7
  version = "1.1.4"
@@ -23,103 +11,12 @@ dependencies = [
23
11
  "memchr",
24
12
  ]
25
13
 
26
- [[package]]
27
- name = "allocator-api2"
28
- version = "0.2.21"
29
- source = "registry+https://github.com/rust-lang/crates.io-index"
30
- checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
31
-
32
- [[package]]
33
- name = "anes"
34
- version = "0.1.6"
35
- source = "registry+https://github.com/rust-lang/crates.io-index"
36
- checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
37
-
38
- [[package]]
39
- name = "anstream"
40
- version = "0.6.21"
41
- source = "registry+https://github.com/rust-lang/crates.io-index"
42
- checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
43
- dependencies = [
44
- "anstyle",
45
- "anstyle-parse",
46
- "anstyle-query",
47
- "anstyle-wincon",
48
- "colorchoice",
49
- "is_terminal_polyfill",
50
- "utf8parse",
51
- ]
52
-
53
- [[package]]
54
- name = "anstyle"
55
- version = "1.0.13"
56
- source = "registry+https://github.com/rust-lang/crates.io-index"
57
- checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
58
-
59
- [[package]]
60
- name = "anstyle-parse"
61
- version = "0.2.7"
62
- source = "registry+https://github.com/rust-lang/crates.io-index"
63
- checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
64
- dependencies = [
65
- "utf8parse",
66
- ]
67
-
68
- [[package]]
69
- name = "anstyle-query"
70
- version = "1.1.5"
71
- source = "registry+https://github.com/rust-lang/crates.io-index"
72
- checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
73
- dependencies = [
74
- "windows-sys 0.61.2",
75
- ]
76
-
77
- [[package]]
78
- name = "anstyle-wincon"
79
- version = "3.0.11"
80
- source = "registry+https://github.com/rust-lang/crates.io-index"
81
- checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
82
- dependencies = [
83
- "anstyle",
84
- "once_cell_polyfill",
85
- "windows-sys 0.61.2",
86
- ]
87
-
88
14
  [[package]]
89
15
  name = "anyhow"
90
16
  version = "1.0.102"
91
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
92
18
  checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
93
19
 
94
- [[package]]
95
- name = "arraydeque"
96
- version = "0.5.1"
97
- source = "registry+https://github.com/rust-lang/crates.io-index"
98
- checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
99
-
100
- [[package]]
101
- name = "async-trait"
102
- version = "0.1.89"
103
- source = "registry+https://github.com/rust-lang/crates.io-index"
104
- checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
105
- dependencies = [
106
- "proc-macro2",
107
- "quote",
108
- "syn",
109
- ]
110
-
111
- [[package]]
112
- name = "autocfg"
113
- version = "1.5.0"
114
- source = "registry+https://github.com/rust-lang/crates.io-index"
115
- checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
116
-
117
- [[package]]
118
- name = "base64"
119
- version = "0.21.7"
120
- source = "registry+https://github.com/rust-lang/crates.io-index"
121
- checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
122
-
123
20
  [[package]]
124
21
  name = "bindgen"
125
22
  version = "0.69.5"
@@ -129,49 +26,42 @@ dependencies = [
129
26
  "bitflags",
130
27
  "cexpr",
131
28
  "clang-sys",
132
- "itertools 0.12.1",
29
+ "itertools",
133
30
  "lazy_static",
134
31
  "lazycell",
135
32
  "proc-macro2",
136
33
  "quote",
137
34
  "regex",
138
- "rustc-hash",
139
- "shlex",
35
+ "rustc-hash 1.1.0",
36
+ "shlex 1.3.0",
140
37
  "syn",
141
38
  ]
142
39
 
143
40
  [[package]]
144
- name = "bit-set"
145
- version = "0.8.0"
41
+ name = "bindgen"
42
+ version = "0.72.1"
146
43
  source = "registry+https://github.com/rust-lang/crates.io-index"
147
- checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
44
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
148
45
  dependencies = [
149
- "bit-vec",
46
+ "bitflags",
47
+ "cexpr",
48
+ "clang-sys",
49
+ "itertools",
50
+ "log",
51
+ "prettyplease",
52
+ "proc-macro2",
53
+ "quote",
54
+ "regex",
55
+ "rustc-hash 2.1.3",
56
+ "shlex 1.3.0",
57
+ "syn",
150
58
  ]
151
59
 
152
- [[package]]
153
- name = "bit-vec"
154
- version = "0.8.0"
155
- source = "registry+https://github.com/rust-lang/crates.io-index"
156
- checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
157
-
158
60
  [[package]]
159
61
  name = "bitflags"
160
62
  version = "2.11.0"
161
63
  source = "registry+https://github.com/rust-lang/crates.io-index"
162
64
  checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
163
- dependencies = [
164
- "serde_core",
165
- ]
166
-
167
- [[package]]
168
- name = "block-buffer"
169
- version = "0.10.4"
170
- source = "registry+https://github.com/rust-lang/crates.io-index"
171
- checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
172
- dependencies = [
173
- "generic-array",
174
- ]
175
65
 
176
66
  [[package]]
177
67
  name = "bstr"
@@ -184,16 +74,14 @@ dependencies = [
184
74
  ]
185
75
 
186
76
  [[package]]
187
- name = "bumpalo"
188
- version = "3.20.2"
189
- source = "registry+https://github.com/rust-lang/crates.io-index"
190
- checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
191
-
192
- [[package]]
193
- name = "cast"
194
- version = "0.3.0"
77
+ name = "cc"
78
+ version = "1.2.67"
195
79
  source = "registry+https://github.com/rust-lang/crates.io-index"
196
- checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
80
+ checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
81
+ dependencies = [
82
+ "find-msvc-tools",
83
+ "shlex 2.0.1",
84
+ ]
197
85
 
198
86
  [[package]]
199
87
  name = "cexpr"
@@ -210,33 +98,6 @@ version = "1.0.4"
210
98
  source = "registry+https://github.com/rust-lang/crates.io-index"
211
99
  checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
212
100
 
213
- [[package]]
214
- name = "ciborium"
215
- version = "0.2.2"
216
- source = "registry+https://github.com/rust-lang/crates.io-index"
217
- checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
218
- dependencies = [
219
- "ciborium-io",
220
- "ciborium-ll",
221
- "serde",
222
- ]
223
-
224
- [[package]]
225
- name = "ciborium-io"
226
- version = "0.2.2"
227
- source = "registry+https://github.com/rust-lang/crates.io-index"
228
- checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
229
-
230
- [[package]]
231
- name = "ciborium-ll"
232
- version = "0.2.2"
233
- source = "registry+https://github.com/rust-lang/crates.io-index"
234
- checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
235
- dependencies = [
236
- "ciborium-io",
237
- "half",
238
- ]
239
-
240
101
  [[package]]
241
102
  name = "clang-sys"
242
103
  version = "1.8.1"
@@ -248,208 +109,6 @@ dependencies = [
248
109
  "libloading",
249
110
  ]
250
111
 
251
- [[package]]
252
- name = "clap"
253
- version = "4.5.60"
254
- source = "registry+https://github.com/rust-lang/crates.io-index"
255
- checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
256
- dependencies = [
257
- "clap_builder",
258
- "clap_derive",
259
- ]
260
-
261
- [[package]]
262
- name = "clap_builder"
263
- version = "4.5.60"
264
- source = "registry+https://github.com/rust-lang/crates.io-index"
265
- checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
266
- dependencies = [
267
- "anstream",
268
- "anstyle",
269
- "clap_lex",
270
- "strsim",
271
- ]
272
-
273
- [[package]]
274
- name = "clap_derive"
275
- version = "4.5.55"
276
- source = "registry+https://github.com/rust-lang/crates.io-index"
277
- checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
278
- dependencies = [
279
- "heck",
280
- "proc-macro2",
281
- "quote",
282
- "syn",
283
- ]
284
-
285
- [[package]]
286
- name = "clap_lex"
287
- version = "1.0.0"
288
- source = "registry+https://github.com/rust-lang/crates.io-index"
289
- checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
290
-
291
- [[package]]
292
- name = "colorchoice"
293
- version = "1.0.4"
294
- source = "registry+https://github.com/rust-lang/crates.io-index"
295
- checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
296
-
297
- [[package]]
298
- name = "config"
299
- version = "0.14.1"
300
- source = "registry+https://github.com/rust-lang/crates.io-index"
301
- checksum = "68578f196d2a33ff61b27fae256c3164f65e36382648e30666dde05b8cc9dfdf"
302
- dependencies = [
303
- "async-trait",
304
- "convert_case",
305
- "json5",
306
- "nom",
307
- "pathdiff",
308
- "ron",
309
- "rust-ini",
310
- "serde",
311
- "serde_json",
312
- "toml",
313
- "yaml-rust2",
314
- ]
315
-
316
- [[package]]
317
- name = "console"
318
- version = "0.15.11"
319
- source = "registry+https://github.com/rust-lang/crates.io-index"
320
- checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
321
- dependencies = [
322
- "encode_unicode",
323
- "libc",
324
- "once_cell",
325
- "windows-sys 0.59.0",
326
- ]
327
-
328
- [[package]]
329
- name = "const-random"
330
- version = "0.1.18"
331
- source = "registry+https://github.com/rust-lang/crates.io-index"
332
- checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
333
- dependencies = [
334
- "const-random-macro",
335
- ]
336
-
337
- [[package]]
338
- name = "const-random-macro"
339
- version = "0.1.16"
340
- source = "registry+https://github.com/rust-lang/crates.io-index"
341
- checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
342
- dependencies = [
343
- "getrandom 0.2.17",
344
- "once_cell",
345
- "tiny-keccak",
346
- ]
347
-
348
- [[package]]
349
- name = "convert_case"
350
- version = "0.6.0"
351
- source = "registry+https://github.com/rust-lang/crates.io-index"
352
- checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
353
- dependencies = [
354
- "unicode-segmentation",
355
- ]
356
-
357
- [[package]]
358
- name = "cpufeatures"
359
- version = "0.2.17"
360
- source = "registry+https://github.com/rust-lang/crates.io-index"
361
- checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
362
- dependencies = [
363
- "libc",
364
- ]
365
-
366
- [[package]]
367
- name = "criterion"
368
- version = "0.5.1"
369
- source = "registry+https://github.com/rust-lang/crates.io-index"
370
- checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
371
- dependencies = [
372
- "anes",
373
- "cast",
374
- "ciborium",
375
- "clap",
376
- "criterion-plot",
377
- "is-terminal",
378
- "itertools 0.10.5",
379
- "num-traits",
380
- "once_cell",
381
- "oorandom",
382
- "plotters",
383
- "rayon",
384
- "regex",
385
- "serde",
386
- "serde_derive",
387
- "serde_json",
388
- "tinytemplate",
389
- "walkdir",
390
- ]
391
-
392
- [[package]]
393
- name = "criterion-plot"
394
- version = "0.5.0"
395
- source = "registry+https://github.com/rust-lang/crates.io-index"
396
- checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
397
- dependencies = [
398
- "cast",
399
- "itertools 0.10.5",
400
- ]
401
-
402
- [[package]]
403
- name = "crossbeam-deque"
404
- version = "0.8.6"
405
- source = "registry+https://github.com/rust-lang/crates.io-index"
406
- checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
407
- dependencies = [
408
- "crossbeam-epoch",
409
- "crossbeam-utils",
410
- ]
411
-
412
- [[package]]
413
- name = "crossbeam-epoch"
414
- version = "0.9.18"
415
- source = "registry+https://github.com/rust-lang/crates.io-index"
416
- checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
417
- dependencies = [
418
- "crossbeam-utils",
419
- ]
420
-
421
- [[package]]
422
- name = "crossbeam-utils"
423
- version = "0.8.21"
424
- source = "registry+https://github.com/rust-lang/crates.io-index"
425
- checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
426
-
427
- [[package]]
428
- name = "crunchy"
429
- version = "0.2.4"
430
- source = "registry+https://github.com/rust-lang/crates.io-index"
431
- checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
432
-
433
- [[package]]
434
- name = "crypto-common"
435
- version = "0.1.7"
436
- source = "registry+https://github.com/rust-lang/crates.io-index"
437
- checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
438
- dependencies = [
439
- "generic-array",
440
- "typenum",
441
- ]
442
-
443
- [[package]]
444
- name = "digest"
445
- version = "0.10.7"
446
- source = "registry+https://github.com/rust-lang/crates.io-index"
447
- checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
448
- dependencies = [
449
- "block-buffer",
450
- "crypto-common",
451
- ]
452
-
453
112
  [[package]]
454
113
  name = "dirs"
455
114
  version = "5.0.1"
@@ -471,59 +130,12 @@ dependencies = [
471
130
  "windows-sys 0.48.0",
472
131
  ]
473
132
 
474
- [[package]]
475
- name = "dlv-list"
476
- version = "0.5.2"
477
- source = "registry+https://github.com/rust-lang/crates.io-index"
478
- checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f"
479
- dependencies = [
480
- "const-random",
481
- ]
482
-
483
133
  [[package]]
484
134
  name = "either"
485
135
  version = "1.15.0"
486
136
  source = "registry+https://github.com/rust-lang/crates.io-index"
487
137
  checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
488
138
 
489
- [[package]]
490
- name = "encode_unicode"
491
- version = "1.0.0"
492
- source = "registry+https://github.com/rust-lang/crates.io-index"
493
- checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
494
-
495
- [[package]]
496
- name = "encoding_rs"
497
- version = "0.8.35"
498
- source = "registry+https://github.com/rust-lang/crates.io-index"
499
- checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
500
- dependencies = [
501
- "cfg-if",
502
- ]
503
-
504
- [[package]]
505
- name = "env_filter"
506
- version = "1.0.0"
507
- source = "registry+https://github.com/rust-lang/crates.io-index"
508
- checksum = "7a1c3cc8e57274ec99de65301228b537f1e4eedc1b8e0f9411c6caac8ae7308f"
509
- dependencies = [
510
- "log",
511
- "regex",
512
- ]
513
-
514
- [[package]]
515
- name = "env_logger"
516
- version = "0.11.9"
517
- source = "registry+https://github.com/rust-lang/crates.io-index"
518
- checksum = "b2daee4ea451f429a58296525ddf28b45a3b64f1acf6587e2067437bb11e218d"
519
- dependencies = [
520
- "anstream",
521
- "anstyle",
522
- "env_filter",
523
- "jiff",
524
- "log",
525
- ]
526
-
527
139
  [[package]]
528
140
  name = "equivalent"
529
141
  version = "1.0.2"
@@ -547,10 +159,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
547
159
  checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
548
160
 
549
161
  [[package]]
550
- name = "fnv"
551
- version = "1.0.7"
162
+ name = "find-msvc-tools"
163
+ version = "0.1.9"
552
164
  source = "registry+https://github.com/rust-lang/crates.io-index"
553
- checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
165
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
554
166
 
555
167
  [[package]]
556
168
  name = "foldhash"
@@ -558,16 +170,6 @@ version = "0.1.5"
558
170
  source = "registry+https://github.com/rust-lang/crates.io-index"
559
171
  checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
560
172
 
561
- [[package]]
562
- name = "generic-array"
563
- version = "0.14.7"
564
- source = "registry+https://github.com/rust-lang/crates.io-index"
565
- checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
566
- dependencies = [
567
- "typenum",
568
- "version_check",
569
- ]
570
-
571
173
  [[package]]
572
174
  name = "getrandom"
573
175
  version = "0.2.17"
@@ -579,18 +181,6 @@ dependencies = [
579
181
  "wasi",
580
182
  ]
581
183
 
582
- [[package]]
583
- name = "getrandom"
584
- version = "0.3.4"
585
- source = "registry+https://github.com/rust-lang/crates.io-index"
586
- checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
587
- dependencies = [
588
- "cfg-if",
589
- "libc",
590
- "r-efi",
591
- "wasip2",
592
- ]
593
-
594
184
  [[package]]
595
185
  name = "getrandom"
596
186
  version = "0.4.1"
@@ -623,35 +213,12 @@ dependencies = [
623
213
  "regex-syntax",
624
214
  ]
625
215
 
626
- [[package]]
627
- name = "half"
628
- version = "2.7.1"
629
- source = "registry+https://github.com/rust-lang/crates.io-index"
630
- checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
631
- dependencies = [
632
- "cfg-if",
633
- "crunchy",
634
- "zerocopy",
635
- ]
636
-
637
- [[package]]
638
- name = "hashbrown"
639
- version = "0.14.5"
640
- source = "registry+https://github.com/rust-lang/crates.io-index"
641
- checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
642
- dependencies = [
643
- "ahash",
644
- "allocator-api2",
645
- ]
646
-
647
216
  [[package]]
648
217
  name = "hashbrown"
649
218
  version = "0.15.5"
650
219
  source = "registry+https://github.com/rust-lang/crates.io-index"
651
220
  checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
652
221
  dependencies = [
653
- "allocator-api2",
654
- "equivalent",
655
222
  "foldhash",
656
223
  ]
657
224
 
@@ -661,27 +228,12 @@ version = "0.16.1"
661
228
  source = "registry+https://github.com/rust-lang/crates.io-index"
662
229
  checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
663
230
 
664
- [[package]]
665
- name = "hashlink"
666
- version = "0.8.4"
667
- source = "registry+https://github.com/rust-lang/crates.io-index"
668
- checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
669
- dependencies = [
670
- "hashbrown 0.14.5",
671
- ]
672
-
673
231
  [[package]]
674
232
  name = "heck"
675
233
  version = "0.5.0"
676
234
  source = "registry+https://github.com/rust-lang/crates.io-index"
677
235
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
678
236
 
679
- [[package]]
680
- name = "hermit-abi"
681
- version = "0.5.2"
682
- source = "registry+https://github.com/rust-lang/crates.io-index"
683
- checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
684
-
685
237
  [[package]]
686
238
  name = "id-arena"
687
239
  version = "2.3.0"
@@ -700,44 +252,6 @@ dependencies = [
700
252
  "serde_core",
701
253
  ]
702
254
 
703
- [[package]]
704
- name = "insta"
705
- version = "1.46.3"
706
- source = "registry+https://github.com/rust-lang/crates.io-index"
707
- checksum = "e82db8c87c7f1ccecb34ce0c24399b8a73081427f3c7c50a5d597925356115e4"
708
- dependencies = [
709
- "console",
710
- "once_cell",
711
- "similar",
712
- "tempfile",
713
- ]
714
-
715
- [[package]]
716
- name = "is-terminal"
717
- version = "0.4.17"
718
- source = "registry+https://github.com/rust-lang/crates.io-index"
719
- checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
720
- dependencies = [
721
- "hermit-abi",
722
- "libc",
723
- "windows-sys 0.61.2",
724
- ]
725
-
726
- [[package]]
727
- name = "is_terminal_polyfill"
728
- version = "1.70.2"
729
- source = "registry+https://github.com/rust-lang/crates.io-index"
730
- checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
731
-
732
- [[package]]
733
- name = "itertools"
734
- version = "0.10.5"
735
- source = "registry+https://github.com/rust-lang/crates.io-index"
736
- checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
737
- dependencies = [
738
- "either",
739
- ]
740
-
741
255
  [[package]]
742
256
  name = "itertools"
743
257
  version = "0.12.1"
@@ -753,51 +267,6 @@ version = "1.0.17"
753
267
  source = "registry+https://github.com/rust-lang/crates.io-index"
754
268
  checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
755
269
 
756
- [[package]]
757
- name = "jiff"
758
- version = "0.2.20"
759
- source = "registry+https://github.com/rust-lang/crates.io-index"
760
- checksum = "c867c356cc096b33f4981825ab281ecba3db0acefe60329f044c1789d94c6543"
761
- dependencies = [
762
- "jiff-static",
763
- "log",
764
- "portable-atomic",
765
- "portable-atomic-util",
766
- "serde_core",
767
- ]
768
-
769
- [[package]]
770
- name = "jiff-static"
771
- version = "0.2.20"
772
- source = "registry+https://github.com/rust-lang/crates.io-index"
773
- checksum = "f7946b4325269738f270bb55b3c19ab5c5040525f83fd625259422a9d25d9be5"
774
- dependencies = [
775
- "proc-macro2",
776
- "quote",
777
- "syn",
778
- ]
779
-
780
- [[package]]
781
- name = "js-sys"
782
- version = "0.3.86"
783
- source = "registry+https://github.com/rust-lang/crates.io-index"
784
- checksum = "d36139f1c97c42c0c86a411910b04e48d4939a0376e6e0f989420cbdee0120e5"
785
- dependencies = [
786
- "once_cell",
787
- "wasm-bindgen",
788
- ]
789
-
790
- [[package]]
791
- name = "json5"
792
- version = "0.4.1"
793
- source = "registry+https://github.com/rust-lang/crates.io-index"
794
- checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
795
- dependencies = [
796
- "pest",
797
- "pest_derive",
798
- "serde",
799
- ]
800
-
801
270
  [[package]]
802
271
  name = "lazy_static"
803
272
  version = "1.5.0"
@@ -854,15 +323,6 @@ version = "0.4.29"
854
323
  source = "registry+https://github.com/rust-lang/crates.io-index"
855
324
  checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
856
325
 
857
- [[package]]
858
- name = "lru"
859
- version = "0.12.5"
860
- source = "registry+https://github.com/rust-lang/crates.io-index"
861
- checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
862
- dependencies = [
863
- "hashbrown 0.15.5",
864
- ]
865
-
866
326
  [[package]]
867
327
  name = "magnus"
868
328
  version = "0.8.2"
@@ -893,292 +353,67 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
893
353
  checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
894
354
 
895
355
  [[package]]
896
- name = "minimal-lexical"
897
- version = "0.2.1"
898
- source = "registry+https://github.com/rust-lang/crates.io-index"
899
- checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
900
-
901
- [[package]]
902
- name = "nom"
903
- version = "7.1.3"
904
- source = "registry+https://github.com/rust-lang/crates.io-index"
905
- checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
906
- dependencies = [
907
- "memchr",
908
- "minimal-lexical",
909
- ]
910
-
911
- [[package]]
912
- name = "num-traits"
913
- version = "0.2.19"
914
- source = "registry+https://github.com/rust-lang/crates.io-index"
915
- checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
916
- dependencies = [
917
- "autocfg",
918
- ]
919
-
920
- [[package]]
921
- name = "num_cpus"
922
- version = "1.17.0"
923
- source = "registry+https://github.com/rust-lang/crates.io-index"
924
- checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
925
- dependencies = [
926
- "hermit-abi",
927
- "libc",
928
- ]
929
-
930
- [[package]]
931
- name = "once_cell"
932
- version = "1.21.3"
933
- source = "registry+https://github.com/rust-lang/crates.io-index"
934
- checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
935
-
936
- [[package]]
937
- name = "once_cell_polyfill"
938
- version = "1.70.2"
939
- source = "registry+https://github.com/rust-lang/crates.io-index"
940
- checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
941
-
942
- [[package]]
943
- name = "oorandom"
944
- version = "11.1.5"
945
- source = "registry+https://github.com/rust-lang/crates.io-index"
946
- checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
947
-
948
- [[package]]
949
- name = "option-ext"
950
- version = "0.2.0"
951
- source = "registry+https://github.com/rust-lang/crates.io-index"
952
- checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
953
-
954
- [[package]]
955
- name = "ordered-multimap"
956
- version = "0.7.3"
957
- source = "registry+https://github.com/rust-lang/crates.io-index"
958
- checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79"
959
- dependencies = [
960
- "dlv-list",
961
- "hashbrown 0.14.5",
962
- ]
963
-
964
- [[package]]
965
- name = "pathdiff"
966
- version = "0.2.3"
967
- source = "registry+https://github.com/rust-lang/crates.io-index"
968
- checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
969
-
970
- [[package]]
971
- name = "pest"
972
- version = "2.8.6"
973
- source = "registry+https://github.com/rust-lang/crates.io-index"
974
- checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
975
- dependencies = [
976
- "memchr",
977
- "ucd-trie",
978
- ]
979
-
980
- [[package]]
981
- name = "pest_derive"
982
- version = "2.8.6"
983
- source = "registry+https://github.com/rust-lang/crates.io-index"
984
- checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
985
- dependencies = [
986
- "pest",
987
- "pest_generator",
988
- ]
989
-
990
- [[package]]
991
- name = "pest_generator"
992
- version = "2.8.6"
993
- source = "registry+https://github.com/rust-lang/crates.io-index"
994
- checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
995
- dependencies = [
996
- "pest",
997
- "pest_meta",
998
- "proc-macro2",
999
- "quote",
1000
- "syn",
1001
- ]
1002
-
1003
- [[package]]
1004
- name = "pest_meta"
1005
- version = "2.8.6"
1006
- source = "registry+https://github.com/rust-lang/crates.io-index"
1007
- checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
1008
- dependencies = [
1009
- "pest",
1010
- "sha2",
1011
- ]
1012
-
1013
- [[package]]
1014
- name = "plotters"
1015
- version = "0.3.7"
1016
- source = "registry+https://github.com/rust-lang/crates.io-index"
1017
- checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1018
- dependencies = [
1019
- "num-traits",
1020
- "plotters-backend",
1021
- "plotters-svg",
1022
- "wasm-bindgen",
1023
- "web-sys",
1024
- ]
1025
-
1026
- [[package]]
1027
- name = "plotters-backend"
1028
- version = "0.3.7"
1029
- source = "registry+https://github.com/rust-lang/crates.io-index"
1030
- checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1031
-
1032
- [[package]]
1033
- name = "plotters-svg"
1034
- version = "0.3.7"
1035
- source = "registry+https://github.com/rust-lang/crates.io-index"
1036
- checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1037
- dependencies = [
1038
- "plotters-backend",
1039
- ]
1040
-
1041
- [[package]]
1042
- name = "portable-atomic"
1043
- version = "1.13.1"
1044
- source = "registry+https://github.com/rust-lang/crates.io-index"
1045
- checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1046
-
1047
- [[package]]
1048
- name = "portable-atomic-util"
1049
- version = "0.2.5"
1050
- source = "registry+https://github.com/rust-lang/crates.io-index"
1051
- checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
1052
- dependencies = [
1053
- "portable-atomic",
1054
- ]
1055
-
1056
- [[package]]
1057
- name = "ppv-lite86"
1058
- version = "0.2.21"
1059
- source = "registry+https://github.com/rust-lang/crates.io-index"
1060
- checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1061
- dependencies = [
1062
- "zerocopy",
1063
- ]
1064
-
1065
- [[package]]
1066
- name = "prettyplease"
1067
- version = "0.2.37"
1068
- source = "registry+https://github.com/rust-lang/crates.io-index"
1069
- checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1070
- dependencies = [
1071
- "proc-macro2",
1072
- "syn",
1073
- ]
1074
-
1075
- [[package]]
1076
- name = "proc-macro2"
1077
- version = "1.0.106"
1078
- source = "registry+https://github.com/rust-lang/crates.io-index"
1079
- checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1080
- dependencies = [
1081
- "unicode-ident",
1082
- ]
1083
-
1084
- [[package]]
1085
- name = "proptest"
1086
- version = "1.10.0"
1087
- source = "registry+https://github.com/rust-lang/crates.io-index"
1088
- checksum = "37566cb3fdacef14c0737f9546df7cfeadbfbc9fef10991038bf5015d0c80532"
1089
- dependencies = [
1090
- "bit-set",
1091
- "bit-vec",
1092
- "bitflags",
1093
- "num-traits",
1094
- "rand",
1095
- "rand_chacha",
1096
- "rand_xorshift",
1097
- "regex-syntax",
1098
- "rusty-fork",
1099
- "tempfile",
1100
- "unarray",
1101
- ]
1102
-
1103
- [[package]]
1104
- name = "quick-error"
1105
- version = "1.2.3"
1106
- source = "registry+https://github.com/rust-lang/crates.io-index"
1107
- checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1108
-
1109
- [[package]]
1110
- name = "quote"
1111
- version = "1.0.44"
1112
- source = "registry+https://github.com/rust-lang/crates.io-index"
1113
- checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
1114
- dependencies = [
1115
- "proc-macro2",
1116
- ]
1117
-
1118
- [[package]]
1119
- name = "r-efi"
1120
- version = "5.3.0"
356
+ name = "minimal-lexical"
357
+ version = "0.2.1"
1121
358
  source = "registry+https://github.com/rust-lang/crates.io-index"
1122
- checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
359
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1123
360
 
1124
361
  [[package]]
1125
- name = "rand"
1126
- version = "0.9.2"
362
+ name = "nom"
363
+ version = "7.1.3"
1127
364
  source = "registry+https://github.com/rust-lang/crates.io-index"
1128
- checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
365
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1129
366
  dependencies = [
1130
- "rand_chacha",
1131
- "rand_core",
367
+ "memchr",
368
+ "minimal-lexical",
1132
369
  ]
1133
370
 
1134
371
  [[package]]
1135
- name = "rand_chacha"
1136
- version = "0.9.0"
372
+ name = "once_cell"
373
+ version = "1.21.3"
1137
374
  source = "registry+https://github.com/rust-lang/crates.io-index"
1138
- checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1139
- dependencies = [
1140
- "ppv-lite86",
1141
- "rand_core",
1142
- ]
375
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1143
376
 
1144
377
  [[package]]
1145
- name = "rand_core"
1146
- version = "0.9.5"
378
+ name = "option-ext"
379
+ version = "0.2.0"
1147
380
  source = "registry+https://github.com/rust-lang/crates.io-index"
1148
- checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1149
- dependencies = [
1150
- "getrandom 0.3.4",
1151
- ]
381
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1152
382
 
1153
383
  [[package]]
1154
- name = "rand_xorshift"
1155
- version = "0.4.0"
384
+ name = "prettyplease"
385
+ version = "0.2.37"
1156
386
  source = "registry+https://github.com/rust-lang/crates.io-index"
1157
- checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
387
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1158
388
  dependencies = [
1159
- "rand_core",
389
+ "proc-macro2",
390
+ "syn",
1160
391
  ]
1161
392
 
1162
393
  [[package]]
1163
- name = "rayon"
1164
- version = "1.11.0"
394
+ name = "proc-macro2"
395
+ version = "1.0.106"
1165
396
  source = "registry+https://github.com/rust-lang/crates.io-index"
1166
- checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
397
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1167
398
  dependencies = [
1168
- "either",
1169
- "rayon-core",
399
+ "unicode-ident",
1170
400
  ]
1171
401
 
1172
402
  [[package]]
1173
- name = "rayon-core"
1174
- version = "1.13.0"
403
+ name = "quote"
404
+ version = "1.0.44"
1175
405
  source = "registry+https://github.com/rust-lang/crates.io-index"
1176
- checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
406
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
1177
407
  dependencies = [
1178
- "crossbeam-deque",
1179
- "crossbeam-utils",
408
+ "proc-macro2",
1180
409
  ]
1181
410
 
411
+ [[package]]
412
+ name = "r-efi"
413
+ version = "5.3.0"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
416
+
1182
417
  [[package]]
1183
418
  name = "rb-sys"
1184
419
  version = "0.9.124"
@@ -1194,7 +429,7 @@ version = "0.9.124"
1194
429
  source = "registry+https://github.com/rust-lang/crates.io-index"
1195
430
  checksum = "568068db4102230882e6d4ae8de6632e224ca75fe5970f6e026a04e91ed635d3"
1196
431
  dependencies = [
1197
- "bindgen",
432
+ "bindgen 0.69.5",
1198
433
  "lazy_static",
1199
434
  "proc-macro2",
1200
435
  "quote",
@@ -1251,78 +486,53 @@ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
1251
486
 
1252
487
  [[package]]
1253
488
  name = "rfmt"
1254
- version = "1.7.0"
489
+ version = "2.0.0-beta1"
1255
490
  dependencies = [
1256
- "anyhow",
1257
- "clap",
1258
- "config",
1259
- "criterion",
1260
491
  "dirs",
1261
- "env_logger",
1262
492
  "globset",
1263
- "insta",
1264
493
  "log",
1265
- "lru",
1266
494
  "magnus",
1267
- "num_cpus",
1268
- "proptest",
1269
- "rayon",
1270
495
  "rb-sys",
1271
- "rmp-serde",
496
+ "ruby-prism",
1272
497
  "serde",
1273
498
  "serde_json",
1274
499
  "serde_yaml",
1275
500
  "tempfile",
1276
501
  "thiserror",
1277
- "toml",
1278
502
  ]
1279
503
 
1280
504
  [[package]]
1281
- name = "rmp"
1282
- version = "0.8.15"
505
+ name = "ruby-prism"
506
+ version = "1.9.0"
1283
507
  source = "registry+https://github.com/rust-lang/crates.io-index"
1284
- checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c"
508
+ checksum = "3b302f00359d0b5423a600314935ca5f994484e15da2db5345631d28c6e029d6"
1285
509
  dependencies = [
1286
- "num-traits",
1287
- ]
1288
-
1289
- [[package]]
1290
- name = "rmp-serde"
1291
- version = "1.3.1"
1292
- source = "registry+https://github.com/rust-lang/crates.io-index"
1293
- checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155"
1294
- dependencies = [
1295
- "rmp",
510
+ "ruby-prism-sys",
1296
511
  "serde",
512
+ "serde_json",
1297
513
  ]
1298
514
 
1299
515
  [[package]]
1300
- name = "ron"
1301
- version = "0.8.1"
516
+ name = "ruby-prism-sys"
517
+ version = "1.9.0"
1302
518
  source = "registry+https://github.com/rust-lang/crates.io-index"
1303
- checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94"
519
+ checksum = "9f85fd9571455bdca2b3bf0b2f543cd13ac39d5de0026a8eb2deb94ffd264f00"
1304
520
  dependencies = [
1305
- "base64",
1306
- "bitflags",
1307
- "serde",
1308
- "serde_derive",
521
+ "bindgen 0.72.1",
522
+ "cc",
1309
523
  ]
1310
524
 
1311
525
  [[package]]
1312
- name = "rust-ini"
1313
- version = "0.20.0"
526
+ name = "rustc-hash"
527
+ version = "1.1.0"
1314
528
  source = "registry+https://github.com/rust-lang/crates.io-index"
1315
- checksum = "3e0698206bcb8882bf2a9ecb4c1e7785db57ff052297085a6efd4fe42302068a"
1316
- dependencies = [
1317
- "cfg-if",
1318
- "ordered-multimap",
1319
- ]
529
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1320
530
 
1321
531
  [[package]]
1322
532
  name = "rustc-hash"
1323
- version = "1.1.0"
533
+ version = "2.1.3"
1324
534
  source = "registry+https://github.com/rust-lang/crates.io-index"
1325
- checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
535
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1326
536
 
1327
537
  [[package]]
1328
538
  name = "rustix"
@@ -1337,39 +547,12 @@ dependencies = [
1337
547
  "windows-sys 0.61.2",
1338
548
  ]
1339
549
 
1340
- [[package]]
1341
- name = "rustversion"
1342
- version = "1.0.22"
1343
- source = "registry+https://github.com/rust-lang/crates.io-index"
1344
- checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1345
-
1346
- [[package]]
1347
- name = "rusty-fork"
1348
- version = "0.3.1"
1349
- source = "registry+https://github.com/rust-lang/crates.io-index"
1350
- checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1351
- dependencies = [
1352
- "fnv",
1353
- "quick-error",
1354
- "tempfile",
1355
- "wait-timeout",
1356
- ]
1357
-
1358
550
  [[package]]
1359
551
  name = "ryu"
1360
552
  version = "1.0.23"
1361
553
  source = "registry+https://github.com/rust-lang/crates.io-index"
1362
554
  checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1363
555
 
1364
- [[package]]
1365
- name = "same-file"
1366
- version = "1.0.6"
1367
- source = "registry+https://github.com/rust-lang/crates.io-index"
1368
- checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1369
- dependencies = [
1370
- "winapi-util",
1371
- ]
1372
-
1373
556
  [[package]]
1374
557
  name = "semver"
1375
558
  version = "1.0.27"
@@ -1425,15 +608,6 @@ dependencies = [
1425
608
  "zmij",
1426
609
  ]
1427
610
 
1428
- [[package]]
1429
- name = "serde_spanned"
1430
- version = "0.6.9"
1431
- source = "registry+https://github.com/rust-lang/crates.io-index"
1432
- checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1433
- dependencies = [
1434
- "serde",
1435
- ]
1436
-
1437
611
  [[package]]
1438
612
  name = "serde_yaml"
1439
613
  version = "0.9.34+deprecated"
@@ -1447,17 +621,6 @@ dependencies = [
1447
621
  "unsafe-libyaml",
1448
622
  ]
1449
623
 
1450
- [[package]]
1451
- name = "sha2"
1452
- version = "0.10.9"
1453
- source = "registry+https://github.com/rust-lang/crates.io-index"
1454
- checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1455
- dependencies = [
1456
- "cfg-if",
1457
- "cpufeatures",
1458
- "digest",
1459
- ]
1460
-
1461
624
  [[package]]
1462
625
  name = "shell-words"
1463
626
  version = "1.1.1"
@@ -1471,16 +634,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
634
  checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1472
635
 
1473
636
  [[package]]
1474
- name = "similar"
1475
- version = "2.7.0"
1476
- source = "registry+https://github.com/rust-lang/crates.io-index"
1477
- checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
1478
-
1479
- [[package]]
1480
- name = "strsim"
1481
- version = "0.11.1"
637
+ name = "shlex"
638
+ version = "2.0.1"
1482
639
  source = "registry+https://github.com/rust-lang/crates.io-index"
1483
- checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
640
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1484
641
 
1485
642
  [[package]]
1486
643
  name = "syn"
@@ -1526,96 +683,12 @@ dependencies = [
1526
683
  "syn",
1527
684
  ]
1528
685
 
1529
- [[package]]
1530
- name = "tiny-keccak"
1531
- version = "2.0.2"
1532
- source = "registry+https://github.com/rust-lang/crates.io-index"
1533
- checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
1534
- dependencies = [
1535
- "crunchy",
1536
- ]
1537
-
1538
- [[package]]
1539
- name = "tinytemplate"
1540
- version = "1.2.1"
1541
- source = "registry+https://github.com/rust-lang/crates.io-index"
1542
- checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1543
- dependencies = [
1544
- "serde",
1545
- "serde_json",
1546
- ]
1547
-
1548
- [[package]]
1549
- name = "toml"
1550
- version = "0.8.23"
1551
- source = "registry+https://github.com/rust-lang/crates.io-index"
1552
- checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1553
- dependencies = [
1554
- "serde",
1555
- "serde_spanned",
1556
- "toml_datetime",
1557
- "toml_edit",
1558
- ]
1559
-
1560
- [[package]]
1561
- name = "toml_datetime"
1562
- version = "0.6.11"
1563
- source = "registry+https://github.com/rust-lang/crates.io-index"
1564
- checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1565
- dependencies = [
1566
- "serde",
1567
- ]
1568
-
1569
- [[package]]
1570
- name = "toml_edit"
1571
- version = "0.22.27"
1572
- source = "registry+https://github.com/rust-lang/crates.io-index"
1573
- checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1574
- dependencies = [
1575
- "indexmap",
1576
- "serde",
1577
- "serde_spanned",
1578
- "toml_datetime",
1579
- "toml_write",
1580
- "winnow",
1581
- ]
1582
-
1583
- [[package]]
1584
- name = "toml_write"
1585
- version = "0.1.2"
1586
- source = "registry+https://github.com/rust-lang/crates.io-index"
1587
- checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1588
-
1589
- [[package]]
1590
- name = "typenum"
1591
- version = "1.19.0"
1592
- source = "registry+https://github.com/rust-lang/crates.io-index"
1593
- checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1594
-
1595
- [[package]]
1596
- name = "ucd-trie"
1597
- version = "0.1.7"
1598
- source = "registry+https://github.com/rust-lang/crates.io-index"
1599
- checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
1600
-
1601
- [[package]]
1602
- name = "unarray"
1603
- version = "0.1.4"
1604
- source = "registry+https://github.com/rust-lang/crates.io-index"
1605
- checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1606
-
1607
686
  [[package]]
1608
687
  name = "unicode-ident"
1609
688
  version = "1.0.24"
1610
689
  source = "registry+https://github.com/rust-lang/crates.io-index"
1611
690
  checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1612
691
 
1613
- [[package]]
1614
- name = "unicode-segmentation"
1615
- version = "1.12.0"
1616
- source = "registry+https://github.com/rust-lang/crates.io-index"
1617
- checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
1618
-
1619
692
  [[package]]
1620
693
  name = "unicode-xid"
1621
694
  version = "0.2.6"
@@ -1628,37 +701,6 @@ version = "0.2.11"
1628
701
  source = "registry+https://github.com/rust-lang/crates.io-index"
1629
702
  checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
1630
703
 
1631
- [[package]]
1632
- name = "utf8parse"
1633
- version = "0.2.2"
1634
- source = "registry+https://github.com/rust-lang/crates.io-index"
1635
- checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1636
-
1637
- [[package]]
1638
- name = "version_check"
1639
- version = "0.9.5"
1640
- source = "registry+https://github.com/rust-lang/crates.io-index"
1641
- checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1642
-
1643
- [[package]]
1644
- name = "wait-timeout"
1645
- version = "0.2.1"
1646
- source = "registry+https://github.com/rust-lang/crates.io-index"
1647
- checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1648
- dependencies = [
1649
- "libc",
1650
- ]
1651
-
1652
- [[package]]
1653
- name = "walkdir"
1654
- version = "2.5.0"
1655
- source = "registry+https://github.com/rust-lang/crates.io-index"
1656
- checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1657
- dependencies = [
1658
- "same-file",
1659
- "winapi-util",
1660
- ]
1661
-
1662
704
  [[package]]
1663
705
  name = "wasi"
1664
706
  version = "0.11.1+wasi-snapshot-preview1"
@@ -1683,51 +725,6 @@ dependencies = [
1683
725
  "wit-bindgen",
1684
726
  ]
1685
727
 
1686
- [[package]]
1687
- name = "wasm-bindgen"
1688
- version = "0.2.109"
1689
- source = "registry+https://github.com/rust-lang/crates.io-index"
1690
- checksum = "9ff9c7baef35ac3c0e17d8bfc9ad75eb62f85a2f02bccc906699dadb0aa9c622"
1691
- dependencies = [
1692
- "cfg-if",
1693
- "once_cell",
1694
- "rustversion",
1695
- "wasm-bindgen-macro",
1696
- "wasm-bindgen-shared",
1697
- ]
1698
-
1699
- [[package]]
1700
- name = "wasm-bindgen-macro"
1701
- version = "0.2.109"
1702
- source = "registry+https://github.com/rust-lang/crates.io-index"
1703
- checksum = "39455e84ad887a0bbc93c116d72403f1bb0a39e37dd6f235a43e2128a0c7f1fd"
1704
- dependencies = [
1705
- "quote",
1706
- "wasm-bindgen-macro-support",
1707
- ]
1708
-
1709
- [[package]]
1710
- name = "wasm-bindgen-macro-support"
1711
- version = "0.2.109"
1712
- source = "registry+https://github.com/rust-lang/crates.io-index"
1713
- checksum = "dff4761f60b0b51fd13fec8764167b7bbcc34498ce3e52805fe1db6f2d56b6d6"
1714
- dependencies = [
1715
- "bumpalo",
1716
- "proc-macro2",
1717
- "quote",
1718
- "syn",
1719
- "wasm-bindgen-shared",
1720
- ]
1721
-
1722
- [[package]]
1723
- name = "wasm-bindgen-shared"
1724
- version = "0.2.109"
1725
- source = "registry+https://github.com/rust-lang/crates.io-index"
1726
- checksum = "bc6a171c53d98021a93a474c4a4579d76ba97f9517d871bc12e27640f218b6dd"
1727
- dependencies = [
1728
- "unicode-ident",
1729
- ]
1730
-
1731
728
  [[package]]
1732
729
  name = "wasm-encoder"
1733
730
  version = "0.244.0"
@@ -1762,25 +759,6 @@ dependencies = [
1762
759
  "semver",
1763
760
  ]
1764
761
 
1765
- [[package]]
1766
- name = "web-sys"
1767
- version = "0.3.86"
1768
- source = "registry+https://github.com/rust-lang/crates.io-index"
1769
- checksum = "668fa5d00434e890a452ab060d24e3904d1be93f7bb01b70e5603baa2b8ab23b"
1770
- dependencies = [
1771
- "js-sys",
1772
- "wasm-bindgen",
1773
- ]
1774
-
1775
- [[package]]
1776
- name = "winapi-util"
1777
- version = "0.1.11"
1778
- source = "registry+https://github.com/rust-lang/crates.io-index"
1779
- checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1780
- dependencies = [
1781
- "windows-sys 0.61.2",
1782
- ]
1783
-
1784
762
  [[package]]
1785
763
  name = "windows-link"
1786
764
  version = "0.2.1"
@@ -1793,16 +771,7 @@ version = "0.48.0"
1793
771
  source = "registry+https://github.com/rust-lang/crates.io-index"
1794
772
  checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1795
773
  dependencies = [
1796
- "windows-targets 0.48.5",
1797
- ]
1798
-
1799
- [[package]]
1800
- name = "windows-sys"
1801
- version = "0.59.0"
1802
- source = "registry+https://github.com/rust-lang/crates.io-index"
1803
- checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1804
- dependencies = [
1805
- "windows-targets 0.52.6",
774
+ "windows-targets",
1806
775
  ]
1807
776
 
1808
777
  [[package]]
@@ -1820,29 +789,13 @@ version = "0.48.5"
1820
789
  source = "registry+https://github.com/rust-lang/crates.io-index"
1821
790
  checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1822
791
  dependencies = [
1823
- "windows_aarch64_gnullvm 0.48.5",
1824
- "windows_aarch64_msvc 0.48.5",
1825
- "windows_i686_gnu 0.48.5",
1826
- "windows_i686_msvc 0.48.5",
1827
- "windows_x86_64_gnu 0.48.5",
1828
- "windows_x86_64_gnullvm 0.48.5",
1829
- "windows_x86_64_msvc 0.48.5",
1830
- ]
1831
-
1832
- [[package]]
1833
- name = "windows-targets"
1834
- version = "0.52.6"
1835
- source = "registry+https://github.com/rust-lang/crates.io-index"
1836
- checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1837
- dependencies = [
1838
- "windows_aarch64_gnullvm 0.52.6",
1839
- "windows_aarch64_msvc 0.52.6",
1840
- "windows_i686_gnu 0.52.6",
1841
- "windows_i686_gnullvm",
1842
- "windows_i686_msvc 0.52.6",
1843
- "windows_x86_64_gnu 0.52.6",
1844
- "windows_x86_64_gnullvm 0.52.6",
1845
- "windows_x86_64_msvc 0.52.6",
792
+ "windows_aarch64_gnullvm",
793
+ "windows_aarch64_msvc",
794
+ "windows_i686_gnu",
795
+ "windows_i686_msvc",
796
+ "windows_x86_64_gnu",
797
+ "windows_x86_64_gnullvm",
798
+ "windows_x86_64_msvc",
1846
799
  ]
1847
800
 
1848
801
  [[package]]
@@ -1851,99 +804,42 @@ version = "0.48.5"
1851
804
  source = "registry+https://github.com/rust-lang/crates.io-index"
1852
805
  checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1853
806
 
1854
- [[package]]
1855
- name = "windows_aarch64_gnullvm"
1856
- version = "0.52.6"
1857
- source = "registry+https://github.com/rust-lang/crates.io-index"
1858
- checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1859
-
1860
807
  [[package]]
1861
808
  name = "windows_aarch64_msvc"
1862
809
  version = "0.48.5"
1863
810
  source = "registry+https://github.com/rust-lang/crates.io-index"
1864
811
  checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1865
812
 
1866
- [[package]]
1867
- name = "windows_aarch64_msvc"
1868
- version = "0.52.6"
1869
- source = "registry+https://github.com/rust-lang/crates.io-index"
1870
- checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1871
-
1872
813
  [[package]]
1873
814
  name = "windows_i686_gnu"
1874
815
  version = "0.48.5"
1875
816
  source = "registry+https://github.com/rust-lang/crates.io-index"
1876
817
  checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1877
818
 
1878
- [[package]]
1879
- name = "windows_i686_gnu"
1880
- version = "0.52.6"
1881
- source = "registry+https://github.com/rust-lang/crates.io-index"
1882
- checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1883
-
1884
- [[package]]
1885
- name = "windows_i686_gnullvm"
1886
- version = "0.52.6"
1887
- source = "registry+https://github.com/rust-lang/crates.io-index"
1888
- checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1889
-
1890
819
  [[package]]
1891
820
  name = "windows_i686_msvc"
1892
821
  version = "0.48.5"
1893
822
  source = "registry+https://github.com/rust-lang/crates.io-index"
1894
823
  checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1895
824
 
1896
- [[package]]
1897
- name = "windows_i686_msvc"
1898
- version = "0.52.6"
1899
- source = "registry+https://github.com/rust-lang/crates.io-index"
1900
- checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1901
-
1902
825
  [[package]]
1903
826
  name = "windows_x86_64_gnu"
1904
827
  version = "0.48.5"
1905
828
  source = "registry+https://github.com/rust-lang/crates.io-index"
1906
829
  checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1907
830
 
1908
- [[package]]
1909
- name = "windows_x86_64_gnu"
1910
- version = "0.52.6"
1911
- source = "registry+https://github.com/rust-lang/crates.io-index"
1912
- checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1913
-
1914
831
  [[package]]
1915
832
  name = "windows_x86_64_gnullvm"
1916
833
  version = "0.48.5"
1917
834
  source = "registry+https://github.com/rust-lang/crates.io-index"
1918
835
  checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1919
836
 
1920
- [[package]]
1921
- name = "windows_x86_64_gnullvm"
1922
- version = "0.52.6"
1923
- source = "registry+https://github.com/rust-lang/crates.io-index"
1924
- checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1925
-
1926
837
  [[package]]
1927
838
  name = "windows_x86_64_msvc"
1928
839
  version = "0.48.5"
1929
840
  source = "registry+https://github.com/rust-lang/crates.io-index"
1930
841
  checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1931
842
 
1932
- [[package]]
1933
- name = "windows_x86_64_msvc"
1934
- version = "0.52.6"
1935
- source = "registry+https://github.com/rust-lang/crates.io-index"
1936
- checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1937
-
1938
- [[package]]
1939
- name = "winnow"
1940
- version = "0.7.14"
1941
- source = "registry+https://github.com/rust-lang/crates.io-index"
1942
- checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
1943
- dependencies = [
1944
- "memchr",
1945
- ]
1946
-
1947
843
  [[package]]
1948
844
  name = "wit-bindgen"
1949
845
  version = "0.51.0"
@@ -2032,37 +928,6 @@ dependencies = [
2032
928
  "wasmparser",
2033
929
  ]
2034
930
 
2035
- [[package]]
2036
- name = "yaml-rust2"
2037
- version = "0.8.1"
2038
- source = "registry+https://github.com/rust-lang/crates.io-index"
2039
- checksum = "8902160c4e6f2fb145dbe9d6760a75e3c9522d8bf796ed7047c85919ac7115f8"
2040
- dependencies = [
2041
- "arraydeque",
2042
- "encoding_rs",
2043
- "hashlink",
2044
- ]
2045
-
2046
- [[package]]
2047
- name = "zerocopy"
2048
- version = "0.8.39"
2049
- source = "registry+https://github.com/rust-lang/crates.io-index"
2050
- checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
2051
- dependencies = [
2052
- "zerocopy-derive",
2053
- ]
2054
-
2055
- [[package]]
2056
- name = "zerocopy-derive"
2057
- version = "0.8.39"
2058
- source = "registry+https://github.com/rust-lang/crates.io-index"
2059
- checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
2060
- dependencies = [
2061
- "proc-macro2",
2062
- "quote",
2063
- "syn",
2064
- ]
2065
-
2066
931
  [[package]]
2067
932
  name = "zmij"
2068
933
  version = "1.0.21"