rfmt 0.1.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Cargo.lock CHANGED
@@ -2,6 +2,18 @@
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
+
5
17
  [[package]]
6
18
  name = "aho-corasick"
7
19
  version = "1.1.3"
@@ -11,6 +23,103 @@ dependencies = [
11
23
  "memchr",
12
24
  ]
13
25
 
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
+ [[package]]
89
+ name = "anyhow"
90
+ version = "1.0.100"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
93
+
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
+
14
123
  [[package]]
15
124
  name = "bindgen"
16
125
  version = "0.69.5"
@@ -20,7 +129,7 @@ dependencies = [
20
129
  "bitflags",
21
130
  "cexpr",
22
131
  "clang-sys",
23
- "itertools",
132
+ "itertools 0.12.1",
24
133
  "lazy_static",
25
134
  "lazycell",
26
135
  "proc-macro2",
@@ -31,11 +140,66 @@ dependencies = [
31
140
  "syn",
32
141
  ]
33
142
 
143
+ [[package]]
144
+ name = "bit-set"
145
+ version = "0.8.0"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
148
+ dependencies = [
149
+ "bit-vec",
150
+ ]
151
+
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
+
34
158
  [[package]]
35
159
  name = "bitflags"
36
160
  version = "2.9.4"
37
161
  source = "registry+https://github.com/rust-lang/crates.io-index"
38
162
  checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
163
+ dependencies = [
164
+ "serde",
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
+
176
+ [[package]]
177
+ name = "bstr"
178
+ version = "1.12.1"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
181
+ dependencies = [
182
+ "memchr",
183
+ "serde",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "bumpalo"
188
+ version = "3.19.0"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
191
+
192
+ [[package]]
193
+ name = "byteorder"
194
+ version = "1.5.0"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
197
+
198
+ [[package]]
199
+ name = "cast"
200
+ version = "0.3.0"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
39
203
 
40
204
  [[package]]
41
205
  name = "cexpr"
@@ -52,6 +216,33 @@ version = "1.0.3"
52
216
  source = "registry+https://github.com/rust-lang/crates.io-index"
53
217
  checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
54
218
 
219
+ [[package]]
220
+ name = "ciborium"
221
+ version = "0.2.2"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
224
+ dependencies = [
225
+ "ciborium-io",
226
+ "ciborium-ll",
227
+ "serde",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "ciborium-io"
232
+ version = "0.2.2"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
235
+
236
+ [[package]]
237
+ name = "ciborium-ll"
238
+ version = "0.2.2"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
241
+ dependencies = [
242
+ "ciborium-io",
243
+ "half",
244
+ ]
245
+
55
246
  [[package]]
56
247
  name = "clang-sys"
57
248
  version = "1.8.1"
@@ -64,291 +255,1715 @@ dependencies = [
64
255
  ]
65
256
 
66
257
  [[package]]
67
- name = "either"
68
- version = "1.15.0"
258
+ name = "clap"
259
+ version = "4.5.53"
69
260
  source = "registry+https://github.com/rust-lang/crates.io-index"
70
- checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
261
+ checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
262
+ dependencies = [
263
+ "clap_builder",
264
+ "clap_derive",
265
+ ]
71
266
 
72
267
  [[package]]
73
- name = "glob"
74
- version = "0.3.3"
268
+ name = "clap_builder"
269
+ version = "4.5.53"
75
270
  source = "registry+https://github.com/rust-lang/crates.io-index"
76
- checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
271
+ checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
272
+ dependencies = [
273
+ "anstream",
274
+ "anstyle",
275
+ "clap_lex",
276
+ "strsim",
277
+ ]
77
278
 
78
279
  [[package]]
79
- name = "itertools"
80
- version = "0.12.1"
280
+ name = "clap_derive"
281
+ version = "4.5.49"
81
282
  source = "registry+https://github.com/rust-lang/crates.io-index"
82
- checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
283
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
83
284
  dependencies = [
84
- "either",
285
+ "heck",
286
+ "proc-macro2",
287
+ "quote",
288
+ "syn",
85
289
  ]
86
290
 
87
291
  [[package]]
88
- name = "lazy_static"
89
- version = "1.5.0"
292
+ name = "clap_lex"
293
+ version = "0.7.6"
90
294
  source = "registry+https://github.com/rust-lang/crates.io-index"
91
- checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
295
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
92
296
 
93
297
  [[package]]
94
- name = "lazycell"
95
- version = "1.3.0"
298
+ name = "colorchoice"
299
+ version = "1.0.4"
96
300
  source = "registry+https://github.com/rust-lang/crates.io-index"
97
- checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
301
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
98
302
 
99
303
  [[package]]
100
- name = "libc"
101
- version = "0.2.175"
304
+ name = "config"
305
+ version = "0.14.1"
102
306
  source = "registry+https://github.com/rust-lang/crates.io-index"
103
- checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
307
+ checksum = "68578f196d2a33ff61b27fae256c3164f65e36382648e30666dde05b8cc9dfdf"
308
+ dependencies = [
309
+ "async-trait",
310
+ "convert_case",
311
+ "json5",
312
+ "nom",
313
+ "pathdiff",
314
+ "ron",
315
+ "rust-ini",
316
+ "serde",
317
+ "serde_json",
318
+ "toml",
319
+ "yaml-rust2",
320
+ ]
104
321
 
105
322
  [[package]]
106
- name = "libloading"
107
- version = "0.8.8"
323
+ name = "console"
324
+ version = "0.15.11"
108
325
  source = "registry+https://github.com/rust-lang/crates.io-index"
109
- checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
326
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
110
327
  dependencies = [
111
- "cfg-if",
112
- "windows-targets",
328
+ "encode_unicode",
329
+ "libc",
330
+ "once_cell",
331
+ "windows-sys 0.59.0",
113
332
  ]
114
333
 
115
334
  [[package]]
116
- name = "magnus"
117
- version = "0.6.4"
335
+ name = "const-random"
336
+ version = "0.1.18"
118
337
  source = "registry+https://github.com/rust-lang/crates.io-index"
119
- checksum = "b1597ef40aa8c36be098249e82c9a20cf7199278ac1c1a1a995eeead6a184479"
338
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
120
339
  dependencies = [
121
- "magnus-macros",
122
- "rb-sys",
123
- "rb-sys-env",
124
- "seq-macro",
340
+ "const-random-macro",
125
341
  ]
126
342
 
127
343
  [[package]]
128
- name = "magnus-macros"
129
- version = "0.6.0"
344
+ name = "const-random-macro"
345
+ version = "0.1.16"
130
346
  source = "registry+https://github.com/rust-lang/crates.io-index"
131
- checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
347
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
132
348
  dependencies = [
133
- "proc-macro2",
134
- "quote",
135
- "syn",
349
+ "getrandom 0.2.16",
350
+ "once_cell",
351
+ "tiny-keccak",
136
352
  ]
137
353
 
138
354
  [[package]]
139
- name = "memchr"
140
- version = "2.7.5"
355
+ name = "convert_case"
356
+ version = "0.6.0"
141
357
  source = "registry+https://github.com/rust-lang/crates.io-index"
142
- checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
358
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
359
+ dependencies = [
360
+ "unicode-segmentation",
361
+ ]
143
362
 
144
363
  [[package]]
145
- name = "minimal-lexical"
146
- version = "0.2.1"
364
+ name = "cpufeatures"
365
+ version = "0.2.17"
147
366
  source = "registry+https://github.com/rust-lang/crates.io-index"
148
- checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
367
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
368
+ dependencies = [
369
+ "libc",
370
+ ]
149
371
 
150
372
  [[package]]
151
- name = "nom"
152
- version = "7.1.3"
373
+ name = "criterion"
374
+ version = "0.5.1"
153
375
  source = "registry+https://github.com/rust-lang/crates.io-index"
154
- checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
376
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
155
377
  dependencies = [
156
- "memchr",
157
- "minimal-lexical",
378
+ "anes",
379
+ "cast",
380
+ "ciborium",
381
+ "clap",
382
+ "criterion-plot",
383
+ "is-terminal",
384
+ "itertools 0.10.5",
385
+ "num-traits",
386
+ "once_cell",
387
+ "oorandom",
388
+ "plotters",
389
+ "rayon",
390
+ "regex",
391
+ "serde",
392
+ "serde_derive",
393
+ "serde_json",
394
+ "tinytemplate",
395
+ "walkdir",
158
396
  ]
159
397
 
160
398
  [[package]]
161
- name = "proc-macro2"
162
- version = "1.0.101"
399
+ name = "criterion-plot"
400
+ version = "0.5.0"
163
401
  source = "registry+https://github.com/rust-lang/crates.io-index"
164
- checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
402
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
165
403
  dependencies = [
166
- "unicode-ident",
404
+ "cast",
405
+ "itertools 0.10.5",
167
406
  ]
168
407
 
169
408
  [[package]]
170
- name = "quote"
171
- version = "1.0.40"
409
+ name = "crossbeam-deque"
410
+ version = "0.8.6"
172
411
  source = "registry+https://github.com/rust-lang/crates.io-index"
173
- checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
412
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
174
413
  dependencies = [
175
- "proc-macro2",
414
+ "crossbeam-epoch",
415
+ "crossbeam-utils",
176
416
  ]
177
417
 
178
418
  [[package]]
179
- name = "rb-sys"
180
- version = "0.9.117"
419
+ name = "crossbeam-epoch"
420
+ version = "0.9.18"
181
421
  source = "registry+https://github.com/rust-lang/crates.io-index"
182
- checksum = "f900d1ce4629a2ebffaf5de74bd8f9c1188d4c5ed406df02f97e22f77a006f44"
422
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
183
423
  dependencies = [
184
- "rb-sys-build",
424
+ "crossbeam-utils",
185
425
  ]
186
426
 
187
427
  [[package]]
188
- name = "rb-sys-build"
189
- version = "0.9.117"
428
+ name = "crossbeam-utils"
429
+ version = "0.8.21"
190
430
  source = "registry+https://github.com/rust-lang/crates.io-index"
191
- checksum = "ef1e9c857028f631056bcd6d88cec390c751e343ce2223ddb26d23eb4a151d59"
192
- dependencies = [
193
- "bindgen",
194
- "lazy_static",
195
- "proc-macro2",
196
- "quote",
197
- "regex",
198
- "shell-words",
199
- "syn",
200
- ]
431
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
201
432
 
202
433
  [[package]]
203
- name = "rb-sys-env"
204
- version = "0.1.2"
434
+ name = "crunchy"
435
+ version = "0.2.4"
205
436
  source = "registry+https://github.com/rust-lang/crates.io-index"
206
- checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
437
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
207
438
 
208
439
  [[package]]
209
- name = "regex"
210
- version = "1.11.2"
440
+ name = "crypto-common"
441
+ version = "0.1.7"
211
442
  source = "registry+https://github.com/rust-lang/crates.io-index"
212
- checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912"
443
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
213
444
  dependencies = [
214
- "aho-corasick",
215
- "memchr",
216
- "regex-automata",
217
- "regex-syntax",
445
+ "generic-array",
446
+ "typenum",
218
447
  ]
219
448
 
220
449
  [[package]]
221
- name = "regex-automata"
222
- version = "0.4.10"
450
+ name = "digest"
451
+ version = "0.10.7"
223
452
  source = "registry+https://github.com/rust-lang/crates.io-index"
224
- checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6"
453
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
225
454
  dependencies = [
226
- "aho-corasick",
227
- "memchr",
228
- "regex-syntax",
455
+ "block-buffer",
456
+ "crypto-common",
229
457
  ]
230
458
 
231
459
  [[package]]
232
- name = "regex-syntax"
233
- version = "0.8.6"
460
+ name = "dirs"
461
+ version = "5.0.1"
234
462
  source = "registry+https://github.com/rust-lang/crates.io-index"
235
- checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
463
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
464
+ dependencies = [
465
+ "dirs-sys",
466
+ ]
236
467
 
237
468
  [[package]]
238
- name = "rfmt"
239
- version = "0.1.0"
469
+ name = "dirs-sys"
470
+ version = "0.4.1"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
240
473
  dependencies = [
241
- "magnus",
474
+ "libc",
475
+ "option-ext",
476
+ "redox_users",
477
+ "windows-sys 0.48.0",
242
478
  ]
243
479
 
244
480
  [[package]]
245
- name = "rustc-hash"
246
- version = "1.1.0"
481
+ name = "dlv-list"
482
+ version = "0.5.2"
247
483
  source = "registry+https://github.com/rust-lang/crates.io-index"
248
- checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
484
+ checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f"
485
+ dependencies = [
486
+ "const-random",
487
+ ]
249
488
 
250
489
  [[package]]
251
- name = "seq-macro"
252
- version = "0.3.6"
490
+ name = "either"
491
+ version = "1.15.0"
253
492
  source = "registry+https://github.com/rust-lang/crates.io-index"
254
- checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
493
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
255
494
 
256
495
  [[package]]
257
- name = "shell-words"
258
- version = "1.1.0"
496
+ name = "encode_unicode"
497
+ version = "1.0.0"
259
498
  source = "registry+https://github.com/rust-lang/crates.io-index"
260
- checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
499
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
261
500
 
262
501
  [[package]]
263
- name = "shlex"
264
- version = "1.3.0"
502
+ name = "encoding_rs"
503
+ version = "0.8.35"
265
504
  source = "registry+https://github.com/rust-lang/crates.io-index"
266
- checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
505
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
506
+ dependencies = [
507
+ "cfg-if",
508
+ ]
267
509
 
268
510
  [[package]]
269
- name = "syn"
270
- version = "2.0.106"
511
+ name = "env_filter"
512
+ version = "0.1.4"
271
513
  source = "registry+https://github.com/rust-lang/crates.io-index"
272
- checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
514
+ checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
273
515
  dependencies = [
274
- "proc-macro2",
275
- "quote",
276
- "unicode-ident",
516
+ "log",
517
+ "regex",
277
518
  ]
278
519
 
279
520
  [[package]]
280
- name = "unicode-ident"
281
- version = "1.0.18"
521
+ name = "env_logger"
522
+ version = "0.11.8"
282
523
  source = "registry+https://github.com/rust-lang/crates.io-index"
283
- checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
524
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
525
+ dependencies = [
526
+ "anstream",
527
+ "anstyle",
528
+ "env_filter",
529
+ "jiff",
530
+ "log",
531
+ ]
284
532
 
285
533
  [[package]]
286
- name = "windows-link"
287
- version = "0.1.3"
534
+ name = "equivalent"
535
+ version = "1.0.2"
288
536
  source = "registry+https://github.com/rust-lang/crates.io-index"
289
- checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
537
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
290
538
 
291
539
  [[package]]
292
- name = "windows-targets"
293
- version = "0.53.3"
540
+ name = "errno"
541
+ version = "0.3.14"
294
542
  source = "registry+https://github.com/rust-lang/crates.io-index"
295
- checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
543
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
296
544
  dependencies = [
297
- "windows-link",
298
- "windows_aarch64_gnullvm",
299
- "windows_aarch64_msvc",
300
- "windows_i686_gnu",
301
- "windows_i686_gnullvm",
302
- "windows_i686_msvc",
303
- "windows_x86_64_gnu",
304
- "windows_x86_64_gnullvm",
305
- "windows_x86_64_msvc",
545
+ "libc",
546
+ "windows-sys 0.61.2",
306
547
  ]
307
548
 
308
549
  [[package]]
309
- name = "windows_aarch64_gnullvm"
310
- version = "0.53.0"
550
+ name = "fastrand"
551
+ version = "2.3.0"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
554
+
555
+ [[package]]
556
+ name = "fnv"
557
+ version = "1.0.7"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
560
+
561
+ [[package]]
562
+ name = "foldhash"
563
+ version = "0.1.5"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
566
+
567
+ [[package]]
568
+ name = "generic-array"
569
+ version = "0.14.7"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
572
+ dependencies = [
573
+ "typenum",
574
+ "version_check",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "getrandom"
579
+ version = "0.2.16"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
582
+ dependencies = [
583
+ "cfg-if",
584
+ "libc",
585
+ "wasi",
586
+ ]
587
+
588
+ [[package]]
589
+ name = "getrandom"
590
+ version = "0.3.4"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
593
+ dependencies = [
594
+ "cfg-if",
595
+ "libc",
596
+ "r-efi",
597
+ "wasip2",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "glob"
602
+ version = "0.3.3"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
605
+
606
+ [[package]]
607
+ name = "globset"
608
+ version = "0.4.18"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
611
+ dependencies = [
612
+ "aho-corasick",
613
+ "bstr",
614
+ "log",
615
+ "regex-automata",
616
+ "regex-syntax",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "half"
621
+ version = "2.7.1"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
624
+ dependencies = [
625
+ "cfg-if",
626
+ "crunchy",
627
+ "zerocopy",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "hashbrown"
632
+ version = "0.14.5"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
635
+ dependencies = [
636
+ "ahash",
637
+ "allocator-api2",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "hashbrown"
642
+ version = "0.15.5"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
645
+ dependencies = [
646
+ "allocator-api2",
647
+ "equivalent",
648
+ "foldhash",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "hashlink"
653
+ version = "0.8.4"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
656
+ dependencies = [
657
+ "hashbrown 0.14.5",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "heck"
662
+ version = "0.5.0"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
665
+
666
+ [[package]]
667
+ name = "hermit-abi"
668
+ version = "0.5.2"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
671
+
672
+ [[package]]
673
+ name = "indexmap"
674
+ version = "2.11.1"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "206a8042aec68fa4a62e8d3f7aa4ceb508177d9324faf261e1959e495b7a1921"
677
+ dependencies = [
678
+ "equivalent",
679
+ "hashbrown 0.15.5",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "insta"
684
+ version = "1.44.1"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "e8732d3774162a0851e3f2b150eb98f31a9885dd75985099421d393385a01dfd"
687
+ dependencies = [
688
+ "console",
689
+ "once_cell",
690
+ "similar",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "is-terminal"
695
+ version = "0.4.17"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
698
+ dependencies = [
699
+ "hermit-abi",
700
+ "libc",
701
+ "windows-sys 0.61.2",
702
+ ]
703
+
704
+ [[package]]
705
+ name = "is_terminal_polyfill"
706
+ version = "1.70.2"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
709
+
710
+ [[package]]
711
+ name = "itertools"
712
+ version = "0.10.5"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
715
+ dependencies = [
716
+ "either",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "itertools"
721
+ version = "0.12.1"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
724
+ dependencies = [
725
+ "either",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "itoa"
730
+ version = "1.0.15"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
733
+
734
+ [[package]]
735
+ name = "jiff"
736
+ version = "0.2.16"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35"
739
+ dependencies = [
740
+ "jiff-static",
741
+ "log",
742
+ "portable-atomic",
743
+ "portable-atomic-util",
744
+ "serde_core",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "jiff-static"
749
+ version = "0.2.16"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69"
752
+ dependencies = [
753
+ "proc-macro2",
754
+ "quote",
755
+ "syn",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "js-sys"
760
+ version = "0.3.82"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
763
+ dependencies = [
764
+ "once_cell",
765
+ "wasm-bindgen",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "json5"
770
+ version = "0.4.1"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
773
+ dependencies = [
774
+ "pest",
775
+ "pest_derive",
776
+ "serde",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "lazy_static"
781
+ version = "1.5.0"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
784
+
785
+ [[package]]
786
+ name = "lazycell"
787
+ version = "1.3.0"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
790
+
791
+ [[package]]
792
+ name = "libc"
793
+ version = "0.2.175"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
796
+
797
+ [[package]]
798
+ name = "libloading"
799
+ version = "0.8.8"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
802
+ dependencies = [
803
+ "cfg-if",
804
+ "windows-targets 0.53.3",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "libredox"
809
+ version = "0.1.10"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
812
+ dependencies = [
813
+ "bitflags",
814
+ "libc",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "linux-raw-sys"
819
+ version = "0.11.0"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
822
+
823
+ [[package]]
824
+ name = "log"
825
+ version = "0.4.28"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
828
+
829
+ [[package]]
830
+ name = "lru"
831
+ version = "0.12.5"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
834
+ dependencies = [
835
+ "hashbrown 0.15.5",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "magnus"
840
+ version = "0.6.4"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "b1597ef40aa8c36be098249e82c9a20cf7199278ac1c1a1a995eeead6a184479"
843
+ dependencies = [
844
+ "magnus-macros",
845
+ "rb-sys",
846
+ "rb-sys-env",
847
+ "seq-macro",
848
+ ]
849
+
850
+ [[package]]
851
+ name = "magnus-macros"
852
+ version = "0.6.0"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
855
+ dependencies = [
856
+ "proc-macro2",
857
+ "quote",
858
+ "syn",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "memchr"
863
+ version = "2.7.5"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
866
+
867
+ [[package]]
868
+ name = "minimal-lexical"
869
+ version = "0.2.1"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
872
+
873
+ [[package]]
874
+ name = "nom"
875
+ version = "7.1.3"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
878
+ dependencies = [
879
+ "memchr",
880
+ "minimal-lexical",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "num-traits"
885
+ version = "0.2.19"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
888
+ dependencies = [
889
+ "autocfg",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "num_cpus"
894
+ version = "1.17.0"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
897
+ dependencies = [
898
+ "hermit-abi",
899
+ "libc",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "once_cell"
904
+ version = "1.21.3"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
907
+
908
+ [[package]]
909
+ name = "once_cell_polyfill"
910
+ version = "1.70.2"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
913
+
914
+ [[package]]
915
+ name = "oorandom"
916
+ version = "11.1.5"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
919
+
920
+ [[package]]
921
+ name = "option-ext"
922
+ version = "0.2.0"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
925
+
926
+ [[package]]
927
+ name = "ordered-multimap"
928
+ version = "0.7.3"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79"
931
+ dependencies = [
932
+ "dlv-list",
933
+ "hashbrown 0.14.5",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "paste"
938
+ version = "1.0.15"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
941
+
942
+ [[package]]
943
+ name = "pathdiff"
944
+ version = "0.2.3"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
947
+
948
+ [[package]]
949
+ name = "pest"
950
+ version = "2.8.4"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "cbcfd20a6d4eeba40179f05735784ad32bdaef05ce8e8af05f180d45bb3e7e22"
953
+ dependencies = [
954
+ "memchr",
955
+ "ucd-trie",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "pest_derive"
960
+ version = "2.8.4"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "51f72981ade67b1ca6adc26ec221be9f463f2b5839c7508998daa17c23d94d7f"
963
+ dependencies = [
964
+ "pest",
965
+ "pest_generator",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "pest_generator"
970
+ version = "2.8.4"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "dee9efd8cdb50d719a80088b76f81aec7c41ed6d522ee750178f83883d271625"
973
+ dependencies = [
974
+ "pest",
975
+ "pest_meta",
976
+ "proc-macro2",
977
+ "quote",
978
+ "syn",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "pest_meta"
983
+ version = "2.8.4"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "bf1d70880e76bdc13ba52eafa6239ce793d85c8e43896507e43dd8984ff05b82"
986
+ dependencies = [
987
+ "pest",
988
+ "sha2",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "plotters"
993
+ version = "0.3.7"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
996
+ dependencies = [
997
+ "num-traits",
998
+ "plotters-backend",
999
+ "plotters-svg",
1000
+ "wasm-bindgen",
1001
+ "web-sys",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "plotters-backend"
1006
+ version = "0.3.7"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1009
+
1010
+ [[package]]
1011
+ name = "plotters-svg"
1012
+ version = "0.3.7"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1015
+ dependencies = [
1016
+ "plotters-backend",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "portable-atomic"
1021
+ version = "1.11.1"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1024
+
1025
+ [[package]]
1026
+ name = "portable-atomic-util"
1027
+ version = "0.2.4"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
1030
+ dependencies = [
1031
+ "portable-atomic",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "ppv-lite86"
1036
+ version = "0.2.21"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1039
+ dependencies = [
1040
+ "zerocopy",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "proc-macro2"
1045
+ version = "1.0.101"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
1048
+ dependencies = [
1049
+ "unicode-ident",
1050
+ ]
1051
+
1052
+ [[package]]
1053
+ name = "proptest"
1054
+ version = "1.9.0"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "bee689443a2bd0a16ab0348b52ee43e3b2d1b1f931c8aa5c9f8de4c86fbe8c40"
1057
+ dependencies = [
1058
+ "bit-set",
1059
+ "bit-vec",
1060
+ "bitflags",
1061
+ "num-traits",
1062
+ "rand",
1063
+ "rand_chacha",
1064
+ "rand_xorshift",
1065
+ "regex-syntax",
1066
+ "rusty-fork",
1067
+ "tempfile",
1068
+ "unarray",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "quick-error"
1073
+ version = "1.2.3"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1076
+
1077
+ [[package]]
1078
+ name = "quote"
1079
+ version = "1.0.40"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1082
+ dependencies = [
1083
+ "proc-macro2",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "r-efi"
1088
+ version = "5.3.0"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1091
+
1092
+ [[package]]
1093
+ name = "rand"
1094
+ version = "0.9.2"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1097
+ dependencies = [
1098
+ "rand_chacha",
1099
+ "rand_core",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "rand_chacha"
1104
+ version = "0.9.0"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1107
+ dependencies = [
1108
+ "ppv-lite86",
1109
+ "rand_core",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "rand_core"
1114
+ version = "0.9.3"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1117
+ dependencies = [
1118
+ "getrandom 0.3.4",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "rand_xorshift"
1123
+ version = "0.4.0"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1126
+ dependencies = [
1127
+ "rand_core",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "rayon"
1132
+ version = "1.11.0"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1135
+ dependencies = [
1136
+ "either",
1137
+ "rayon-core",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "rayon-core"
1142
+ version = "1.13.0"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1145
+ dependencies = [
1146
+ "crossbeam-deque",
1147
+ "crossbeam-utils",
1148
+ ]
1149
+
1150
+ [[package]]
1151
+ name = "rb-sys"
1152
+ version = "0.9.117"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "f900d1ce4629a2ebffaf5de74bd8f9c1188d4c5ed406df02f97e22f77a006f44"
1155
+ dependencies = [
1156
+ "rb-sys-build",
1157
+ ]
1158
+
1159
+ [[package]]
1160
+ name = "rb-sys-build"
1161
+ version = "0.9.117"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "ef1e9c857028f631056bcd6d88cec390c751e343ce2223ddb26d23eb4a151d59"
1164
+ dependencies = [
1165
+ "bindgen",
1166
+ "lazy_static",
1167
+ "proc-macro2",
1168
+ "quote",
1169
+ "regex",
1170
+ "shell-words",
1171
+ "syn",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "rb-sys-env"
1176
+ version = "0.1.2"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
1179
+
1180
+ [[package]]
1181
+ name = "redox_users"
1182
+ version = "0.4.6"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
1185
+ dependencies = [
1186
+ "getrandom 0.2.16",
1187
+ "libredox",
1188
+ "thiserror",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "regex"
1193
+ version = "1.11.2"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912"
1196
+ dependencies = [
1197
+ "aho-corasick",
1198
+ "memchr",
1199
+ "regex-automata",
1200
+ "regex-syntax",
1201
+ ]
1202
+
1203
+ [[package]]
1204
+ name = "regex-automata"
1205
+ version = "0.4.10"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6"
1208
+ dependencies = [
1209
+ "aho-corasick",
1210
+ "memchr",
1211
+ "regex-syntax",
1212
+ ]
1213
+
1214
+ [[package]]
1215
+ name = "regex-syntax"
1216
+ version = "0.8.6"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
1219
+
1220
+ [[package]]
1221
+ name = "rfmt"
1222
+ version = "0.2.1"
1223
+ dependencies = [
1224
+ "anyhow",
1225
+ "clap",
1226
+ "config",
1227
+ "criterion",
1228
+ "dirs",
1229
+ "env_logger",
1230
+ "globset",
1231
+ "insta",
1232
+ "log",
1233
+ "lru",
1234
+ "magnus",
1235
+ "num_cpus",
1236
+ "proptest",
1237
+ "rayon",
1238
+ "rb-sys",
1239
+ "rmp-serde",
1240
+ "serde",
1241
+ "serde_json",
1242
+ "serde_yaml",
1243
+ "tempfile",
1244
+ "thiserror",
1245
+ "toml",
1246
+ ]
1247
+
1248
+ [[package]]
1249
+ name = "rmp"
1250
+ version = "0.8.14"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
1253
+ dependencies = [
1254
+ "byteorder",
1255
+ "num-traits",
1256
+ "paste",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "rmp-serde"
1261
+ version = "1.3.0"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db"
1264
+ dependencies = [
1265
+ "byteorder",
1266
+ "rmp",
1267
+ "serde",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "ron"
1272
+ version = "0.8.1"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94"
1275
+ dependencies = [
1276
+ "base64",
1277
+ "bitflags",
1278
+ "serde",
1279
+ "serde_derive",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "rust-ini"
1284
+ version = "0.20.0"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "3e0698206bcb8882bf2a9ecb4c1e7785db57ff052297085a6efd4fe42302068a"
1287
+ dependencies = [
1288
+ "cfg-if",
1289
+ "ordered-multimap",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "rustc-hash"
1294
+ version = "1.1.0"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1297
+
1298
+ [[package]]
1299
+ name = "rustix"
1300
+ version = "1.1.2"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1303
+ dependencies = [
1304
+ "bitflags",
1305
+ "errno",
1306
+ "libc",
1307
+ "linux-raw-sys",
1308
+ "windows-sys 0.61.2",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "rustversion"
1313
+ version = "1.0.22"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1316
+
1317
+ [[package]]
1318
+ name = "rusty-fork"
1319
+ version = "0.3.1"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1322
+ dependencies = [
1323
+ "fnv",
1324
+ "quick-error",
1325
+ "tempfile",
1326
+ "wait-timeout",
1327
+ ]
1328
+
1329
+ [[package]]
1330
+ name = "ryu"
1331
+ version = "1.0.20"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1334
+
1335
+ [[package]]
1336
+ name = "same-file"
1337
+ version = "1.0.6"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1340
+ dependencies = [
1341
+ "winapi-util",
1342
+ ]
1343
+
1344
+ [[package]]
1345
+ name = "seq-macro"
1346
+ version = "0.3.6"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
1349
+
1350
+ [[package]]
1351
+ name = "serde"
1352
+ version = "1.0.228"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1355
+ dependencies = [
1356
+ "serde_core",
1357
+ "serde_derive",
1358
+ ]
1359
+
1360
+ [[package]]
1361
+ name = "serde_core"
1362
+ version = "1.0.228"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1365
+ dependencies = [
1366
+ "serde_derive",
1367
+ ]
1368
+
1369
+ [[package]]
1370
+ name = "serde_derive"
1371
+ version = "1.0.228"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1374
+ dependencies = [
1375
+ "proc-macro2",
1376
+ "quote",
1377
+ "syn",
1378
+ ]
1379
+
1380
+ [[package]]
1381
+ name = "serde_json"
1382
+ version = "1.0.145"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1385
+ dependencies = [
1386
+ "itoa",
1387
+ "memchr",
1388
+ "ryu",
1389
+ "serde",
1390
+ "serde_core",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "serde_spanned"
1395
+ version = "0.6.9"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1398
+ dependencies = [
1399
+ "serde",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "serde_yaml"
1404
+ version = "0.9.34+deprecated"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
1407
+ dependencies = [
1408
+ "indexmap",
1409
+ "itoa",
1410
+ "ryu",
1411
+ "serde",
1412
+ "unsafe-libyaml",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "sha2"
1417
+ version = "0.10.9"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1420
+ dependencies = [
1421
+ "cfg-if",
1422
+ "cpufeatures",
1423
+ "digest",
1424
+ ]
1425
+
1426
+ [[package]]
1427
+ name = "shell-words"
1428
+ version = "1.1.0"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
1431
+
1432
+ [[package]]
1433
+ name = "shlex"
1434
+ version = "1.3.0"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1437
+
1438
+ [[package]]
1439
+ name = "similar"
1440
+ version = "2.7.0"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
1443
+
1444
+ [[package]]
1445
+ name = "strsim"
1446
+ version = "0.11.1"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1449
+
1450
+ [[package]]
1451
+ name = "syn"
1452
+ version = "2.0.106"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
1455
+ dependencies = [
1456
+ "proc-macro2",
1457
+ "quote",
1458
+ "unicode-ident",
1459
+ ]
1460
+
1461
+ [[package]]
1462
+ name = "tempfile"
1463
+ version = "3.23.0"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
1466
+ dependencies = [
1467
+ "fastrand",
1468
+ "getrandom 0.3.4",
1469
+ "once_cell",
1470
+ "rustix",
1471
+ "windows-sys 0.61.2",
1472
+ ]
1473
+
1474
+ [[package]]
1475
+ name = "thiserror"
1476
+ version = "1.0.69"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1479
+ dependencies = [
1480
+ "thiserror-impl",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "thiserror-impl"
1485
+ version = "1.0.69"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1488
+ dependencies = [
1489
+ "proc-macro2",
1490
+ "quote",
1491
+ "syn",
1492
+ ]
1493
+
1494
+ [[package]]
1495
+ name = "tiny-keccak"
1496
+ version = "2.0.2"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
1499
+ dependencies = [
1500
+ "crunchy",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "tinytemplate"
1505
+ version = "1.2.1"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1508
+ dependencies = [
1509
+ "serde",
1510
+ "serde_json",
1511
+ ]
1512
+
1513
+ [[package]]
1514
+ name = "toml"
1515
+ version = "0.8.23"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1518
+ dependencies = [
1519
+ "serde",
1520
+ "serde_spanned",
1521
+ "toml_datetime",
1522
+ "toml_edit",
1523
+ ]
1524
+
1525
+ [[package]]
1526
+ name = "toml_datetime"
1527
+ version = "0.6.11"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1530
+ dependencies = [
1531
+ "serde",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "toml_edit"
1536
+ version = "0.22.27"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1539
+ dependencies = [
1540
+ "indexmap",
1541
+ "serde",
1542
+ "serde_spanned",
1543
+ "toml_datetime",
1544
+ "toml_write",
1545
+ "winnow",
1546
+ ]
1547
+
1548
+ [[package]]
1549
+ name = "toml_write"
1550
+ version = "0.1.2"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1553
+
1554
+ [[package]]
1555
+ name = "typenum"
1556
+ version = "1.19.0"
1557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1558
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1559
+
1560
+ [[package]]
1561
+ name = "ucd-trie"
1562
+ version = "0.1.7"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
1565
+
1566
+ [[package]]
1567
+ name = "unarray"
1568
+ version = "0.1.4"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1571
+
1572
+ [[package]]
1573
+ name = "unicode-ident"
1574
+ version = "1.0.18"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1577
+
1578
+ [[package]]
1579
+ name = "unicode-segmentation"
1580
+ version = "1.12.0"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
1583
+
1584
+ [[package]]
1585
+ name = "unsafe-libyaml"
1586
+ version = "0.2.11"
1587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
1589
+
1590
+ [[package]]
1591
+ name = "utf8parse"
1592
+ version = "0.2.2"
1593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1595
+
1596
+ [[package]]
1597
+ name = "version_check"
1598
+ version = "0.9.5"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1601
+
1602
+ [[package]]
1603
+ name = "wait-timeout"
1604
+ version = "0.2.1"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1607
+ dependencies = [
1608
+ "libc",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "walkdir"
1613
+ version = "2.5.0"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1616
+ dependencies = [
1617
+ "same-file",
1618
+ "winapi-util",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "wasi"
1623
+ version = "0.11.1+wasi-snapshot-preview1"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1626
+
1627
+ [[package]]
1628
+ name = "wasip2"
1629
+ version = "1.0.1+wasi-0.2.4"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1632
+ dependencies = [
1633
+ "wit-bindgen",
1634
+ ]
1635
+
1636
+ [[package]]
1637
+ name = "wasm-bindgen"
1638
+ version = "0.2.105"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
1641
+ dependencies = [
1642
+ "cfg-if",
1643
+ "once_cell",
1644
+ "rustversion",
1645
+ "wasm-bindgen-macro",
1646
+ "wasm-bindgen-shared",
1647
+ ]
1648
+
1649
+ [[package]]
1650
+ name = "wasm-bindgen-macro"
1651
+ version = "0.2.105"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
1654
+ dependencies = [
1655
+ "quote",
1656
+ "wasm-bindgen-macro-support",
1657
+ ]
1658
+
1659
+ [[package]]
1660
+ name = "wasm-bindgen-macro-support"
1661
+ version = "0.2.105"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
1664
+ dependencies = [
1665
+ "bumpalo",
1666
+ "proc-macro2",
1667
+ "quote",
1668
+ "syn",
1669
+ "wasm-bindgen-shared",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "wasm-bindgen-shared"
1674
+ version = "0.2.105"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
1677
+ dependencies = [
1678
+ "unicode-ident",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "web-sys"
1683
+ version = "0.3.82"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
1686
+ dependencies = [
1687
+ "js-sys",
1688
+ "wasm-bindgen",
1689
+ ]
1690
+
1691
+ [[package]]
1692
+ name = "winapi-util"
1693
+ version = "0.1.11"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1696
+ dependencies = [
1697
+ "windows-sys 0.61.2",
1698
+ ]
1699
+
1700
+ [[package]]
1701
+ name = "windows-link"
1702
+ version = "0.1.3"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
1705
+
1706
+ [[package]]
1707
+ name = "windows-link"
1708
+ version = "0.2.1"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1711
+
1712
+ [[package]]
1713
+ name = "windows-sys"
1714
+ version = "0.48.0"
1715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1717
+ dependencies = [
1718
+ "windows-targets 0.48.5",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "windows-sys"
1723
+ version = "0.59.0"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1726
+ dependencies = [
1727
+ "windows-targets 0.52.6",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "windows-sys"
1732
+ version = "0.61.2"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1735
+ dependencies = [
1736
+ "windows-link 0.2.1",
1737
+ ]
1738
+
1739
+ [[package]]
1740
+ name = "windows-targets"
1741
+ version = "0.48.5"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1744
+ dependencies = [
1745
+ "windows_aarch64_gnullvm 0.48.5",
1746
+ "windows_aarch64_msvc 0.48.5",
1747
+ "windows_i686_gnu 0.48.5",
1748
+ "windows_i686_msvc 0.48.5",
1749
+ "windows_x86_64_gnu 0.48.5",
1750
+ "windows_x86_64_gnullvm 0.48.5",
1751
+ "windows_x86_64_msvc 0.48.5",
1752
+ ]
1753
+
1754
+ [[package]]
1755
+ name = "windows-targets"
1756
+ version = "0.52.6"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1759
+ dependencies = [
1760
+ "windows_aarch64_gnullvm 0.52.6",
1761
+ "windows_aarch64_msvc 0.52.6",
1762
+ "windows_i686_gnu 0.52.6",
1763
+ "windows_i686_gnullvm 0.52.6",
1764
+ "windows_i686_msvc 0.52.6",
1765
+ "windows_x86_64_gnu 0.52.6",
1766
+ "windows_x86_64_gnullvm 0.52.6",
1767
+ "windows_x86_64_msvc 0.52.6",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "windows-targets"
1772
+ version = "0.53.3"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
1775
+ dependencies = [
1776
+ "windows-link 0.1.3",
1777
+ "windows_aarch64_gnullvm 0.53.0",
1778
+ "windows_aarch64_msvc 0.53.0",
1779
+ "windows_i686_gnu 0.53.0",
1780
+ "windows_i686_gnullvm 0.53.0",
1781
+ "windows_i686_msvc 0.53.0",
1782
+ "windows_x86_64_gnu 0.53.0",
1783
+ "windows_x86_64_gnullvm 0.53.0",
1784
+ "windows_x86_64_msvc 0.53.0",
1785
+ ]
1786
+
1787
+ [[package]]
1788
+ name = "windows_aarch64_gnullvm"
1789
+ version = "0.48.5"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1792
+
1793
+ [[package]]
1794
+ name = "windows_aarch64_gnullvm"
1795
+ version = "0.52.6"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1798
+
1799
+ [[package]]
1800
+ name = "windows_aarch64_gnullvm"
1801
+ version = "0.53.0"
311
1802
  source = "registry+https://github.com/rust-lang/crates.io-index"
312
1803
  checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
313
1804
 
1805
+ [[package]]
1806
+ name = "windows_aarch64_msvc"
1807
+ version = "0.48.5"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1810
+
1811
+ [[package]]
1812
+ name = "windows_aarch64_msvc"
1813
+ version = "0.52.6"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1816
+
314
1817
  [[package]]
315
1818
  name = "windows_aarch64_msvc"
316
1819
  version = "0.53.0"
317
1820
  source = "registry+https://github.com/rust-lang/crates.io-index"
318
1821
  checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
319
1822
 
1823
+ [[package]]
1824
+ name = "windows_i686_gnu"
1825
+ version = "0.48.5"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1828
+
1829
+ [[package]]
1830
+ name = "windows_i686_gnu"
1831
+ version = "0.52.6"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1834
+
320
1835
  [[package]]
321
1836
  name = "windows_i686_gnu"
322
1837
  version = "0.53.0"
323
1838
  source = "registry+https://github.com/rust-lang/crates.io-index"
324
1839
  checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
325
1840
 
1841
+ [[package]]
1842
+ name = "windows_i686_gnullvm"
1843
+ version = "0.52.6"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1846
+
326
1847
  [[package]]
327
1848
  name = "windows_i686_gnullvm"
328
1849
  version = "0.53.0"
329
1850
  source = "registry+https://github.com/rust-lang/crates.io-index"
330
1851
  checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
331
1852
 
1853
+ [[package]]
1854
+ name = "windows_i686_msvc"
1855
+ version = "0.48.5"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1858
+
1859
+ [[package]]
1860
+ name = "windows_i686_msvc"
1861
+ version = "0.52.6"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1864
+
332
1865
  [[package]]
333
1866
  name = "windows_i686_msvc"
334
1867
  version = "0.53.0"
335
1868
  source = "registry+https://github.com/rust-lang/crates.io-index"
336
1869
  checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
337
1870
 
1871
+ [[package]]
1872
+ name = "windows_x86_64_gnu"
1873
+ version = "0.48.5"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1876
+
1877
+ [[package]]
1878
+ name = "windows_x86_64_gnu"
1879
+ version = "0.52.6"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1882
+
338
1883
  [[package]]
339
1884
  name = "windows_x86_64_gnu"
340
1885
  version = "0.53.0"
341
1886
  source = "registry+https://github.com/rust-lang/crates.io-index"
342
1887
  checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
343
1888
 
1889
+ [[package]]
1890
+ name = "windows_x86_64_gnullvm"
1891
+ version = "0.48.5"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1894
+
1895
+ [[package]]
1896
+ name = "windows_x86_64_gnullvm"
1897
+ version = "0.52.6"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1900
+
344
1901
  [[package]]
345
1902
  name = "windows_x86_64_gnullvm"
346
1903
  version = "0.53.0"
347
1904
  source = "registry+https://github.com/rust-lang/crates.io-index"
348
1905
  checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
349
1906
 
1907
+ [[package]]
1908
+ name = "windows_x86_64_msvc"
1909
+ version = "0.48.5"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1912
+
1913
+ [[package]]
1914
+ name = "windows_x86_64_msvc"
1915
+ version = "0.52.6"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1918
+
350
1919
  [[package]]
351
1920
  name = "windows_x86_64_msvc"
352
1921
  version = "0.53.0"
353
1922
  source = "registry+https://github.com/rust-lang/crates.io-index"
354
1923
  checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
1924
+
1925
+ [[package]]
1926
+ name = "winnow"
1927
+ version = "0.7.13"
1928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1929
+ checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
1930
+ dependencies = [
1931
+ "memchr",
1932
+ ]
1933
+
1934
+ [[package]]
1935
+ name = "wit-bindgen"
1936
+ version = "0.46.0"
1937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
1939
+
1940
+ [[package]]
1941
+ name = "yaml-rust2"
1942
+ version = "0.8.1"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "8902160c4e6f2fb145dbe9d6760a75e3c9522d8bf796ed7047c85919ac7115f8"
1945
+ dependencies = [
1946
+ "arraydeque",
1947
+ "encoding_rs",
1948
+ "hashlink",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "zerocopy"
1953
+ version = "0.8.28"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "43fa6694ed34d6e57407afbccdeecfa268c470a7d2a5b0cf49ce9fcc345afb90"
1956
+ dependencies = [
1957
+ "zerocopy-derive",
1958
+ ]
1959
+
1960
+ [[package]]
1961
+ name = "zerocopy-derive"
1962
+ version = "0.8.28"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "c640b22cd9817fae95be82f0d2f90b11f7605f6c319d16705c459b27ac2cbc26"
1965
+ dependencies = [
1966
+ "proc-macro2",
1967
+ "quote",
1968
+ "syn",
1969
+ ]