fast_code_owners 0.0.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 ADDED
@@ -0,0 +1,1134 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.7.8"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
10
+ dependencies = [
11
+ "getrandom 0.2.16",
12
+ "once_cell",
13
+ "version_check",
14
+ ]
15
+
16
+ [[package]]
17
+ name = "aho-corasick"
18
+ version = "1.1.3"
19
+ source = "registry+https://github.com/rust-lang/crates.io-index"
20
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
21
+ dependencies = [
22
+ "memchr",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "anstream"
27
+ version = "0.6.18"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
30
+ dependencies = [
31
+ "anstyle",
32
+ "anstyle-parse",
33
+ "anstyle-query",
34
+ "anstyle-wincon",
35
+ "colorchoice",
36
+ "is_terminal_polyfill",
37
+ "utf8parse",
38
+ ]
39
+
40
+ [[package]]
41
+ name = "anstyle"
42
+ version = "1.0.10"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
45
+
46
+ [[package]]
47
+ name = "anstyle-parse"
48
+ version = "0.2.6"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
51
+ dependencies = [
52
+ "utf8parse",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "anstyle-query"
57
+ version = "1.1.2"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
60
+ dependencies = [
61
+ "windows-sys",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anstyle-wincon"
66
+ version = "3.0.7"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
69
+ dependencies = [
70
+ "anstyle",
71
+ "once_cell",
72
+ "windows-sys",
73
+ ]
74
+
75
+ [[package]]
76
+ name = "anyhow"
77
+ version = "1.0.98"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
80
+
81
+ [[package]]
82
+ name = "arrayvec"
83
+ version = "0.7.6"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
86
+
87
+ [[package]]
88
+ name = "bindgen"
89
+ version = "0.69.5"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
92
+ dependencies = [
93
+ "bitflags",
94
+ "cexpr",
95
+ "clang-sys",
96
+ "itertools 0.12.1",
97
+ "lazy_static",
98
+ "lazycell",
99
+ "proc-macro2",
100
+ "quote",
101
+ "regex",
102
+ "rustc-hash",
103
+ "shlex",
104
+ "syn 2.0.101",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "bitflags"
109
+ version = "2.9.0"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
112
+
113
+ [[package]]
114
+ name = "bstr"
115
+ version = "1.12.0"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
118
+ dependencies = [
119
+ "memchr",
120
+ "serde",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "cexpr"
125
+ version = "0.6.0"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
128
+ dependencies = [
129
+ "nom",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "cfg-if"
134
+ version = "1.0.0"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
137
+
138
+ [[package]]
139
+ name = "clang-sys"
140
+ version = "1.8.1"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
143
+ dependencies = [
144
+ "glob",
145
+ "libc",
146
+ "libloading",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "clap"
151
+ version = "4.5.37"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071"
154
+ dependencies = [
155
+ "clap_builder",
156
+ "clap_derive",
157
+ ]
158
+
159
+ [[package]]
160
+ name = "clap_builder"
161
+ version = "4.5.37"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2"
164
+ dependencies = [
165
+ "anstream",
166
+ "anstyle",
167
+ "clap_lex",
168
+ "strsim",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "clap_derive"
173
+ version = "4.5.32"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
176
+ dependencies = [
177
+ "heck",
178
+ "proc-macro2",
179
+ "quote",
180
+ "syn 2.0.101",
181
+ ]
182
+
183
+ [[package]]
184
+ name = "clap_lex"
185
+ version = "0.7.4"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
188
+
189
+ [[package]]
190
+ name = "codeowners"
191
+ version = "0.2.4"
192
+ source = "git+https://github.com/rubyatscale/codeowners-rs.git?tag=v0.2.4#d41931234a8fc45f3fa75b02ae588c2cce1b20aa"
193
+ dependencies = [
194
+ "clap",
195
+ "clap_derive",
196
+ "enum_dispatch",
197
+ "error-stack",
198
+ "fast-glob",
199
+ "glob",
200
+ "ignore",
201
+ "itertools 0.14.0",
202
+ "lazy_static",
203
+ "memoize",
204
+ "path-clean",
205
+ "rayon",
206
+ "regex",
207
+ "serde",
208
+ "serde_json",
209
+ "serde_yaml",
210
+ "tempfile",
211
+ "tracing",
212
+ "tracing-subscriber",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "colorchoice"
217
+ version = "1.0.3"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
220
+
221
+ [[package]]
222
+ name = "crossbeam-deque"
223
+ version = "0.8.6"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
226
+ dependencies = [
227
+ "crossbeam-epoch",
228
+ "crossbeam-utils",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "crossbeam-epoch"
233
+ version = "0.9.18"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
236
+ dependencies = [
237
+ "crossbeam-utils",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "crossbeam-utils"
242
+ version = "0.8.21"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
245
+
246
+ [[package]]
247
+ name = "either"
248
+ version = "1.15.0"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
251
+
252
+ [[package]]
253
+ name = "enum_dispatch"
254
+ version = "0.3.13"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
257
+ dependencies = [
258
+ "once_cell",
259
+ "proc-macro2",
260
+ "quote",
261
+ "syn 2.0.101",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "equivalent"
266
+ version = "1.0.2"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
269
+
270
+ [[package]]
271
+ name = "errno"
272
+ version = "0.3.11"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
275
+ dependencies = [
276
+ "libc",
277
+ "windows-sys",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "error-stack"
282
+ version = "0.5.0"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "fe413319145d1063f080f27556fd30b1d70b01e2ba10c2a6e40d4be982ffc5d1"
285
+ dependencies = [
286
+ "anyhow",
287
+ "rustc_version",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "fast-glob"
292
+ version = "0.4.5"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "39ea3f6bbcf4dbe2076b372186fc7aeecd5f6f84754582e56ee7db262b15a6f0"
295
+ dependencies = [
296
+ "arrayvec",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "fast_code_owners"
301
+ version = "0.1.0"
302
+ dependencies = [
303
+ "codeowners",
304
+ "magnus",
305
+ "serde",
306
+ "serde_magnus",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "fastrand"
311
+ version = "2.3.0"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
314
+
315
+ [[package]]
316
+ name = "getrandom"
317
+ version = "0.2.16"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
320
+ dependencies = [
321
+ "cfg-if",
322
+ "libc",
323
+ "wasi 0.11.0+wasi-snapshot-preview1",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "getrandom"
328
+ version = "0.3.2"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
331
+ dependencies = [
332
+ "cfg-if",
333
+ "libc",
334
+ "r-efi",
335
+ "wasi 0.14.2+wasi-0.2.4",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "glob"
340
+ version = "0.3.2"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
343
+
344
+ [[package]]
345
+ name = "globset"
346
+ version = "0.4.16"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "54a1028dfc5f5df5da8a56a73e6c153c9a9708ec57232470703592a3f18e49f5"
349
+ dependencies = [
350
+ "aho-corasick",
351
+ "bstr",
352
+ "log",
353
+ "regex-automata 0.4.9",
354
+ "regex-syntax 0.8.5",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "hashbrown"
359
+ version = "0.12.3"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
362
+ dependencies = [
363
+ "ahash",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "hashbrown"
368
+ version = "0.15.2"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
371
+
372
+ [[package]]
373
+ name = "heck"
374
+ version = "0.5.0"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
377
+
378
+ [[package]]
379
+ name = "ignore"
380
+ version = "0.4.23"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "6d89fd380afde86567dfba715db065673989d6253f42b88179abd3eae47bda4b"
383
+ dependencies = [
384
+ "crossbeam-deque",
385
+ "globset",
386
+ "log",
387
+ "memchr",
388
+ "regex-automata 0.4.9",
389
+ "same-file",
390
+ "walkdir",
391
+ "winapi-util",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "indexmap"
396
+ version = "2.9.0"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
399
+ dependencies = [
400
+ "equivalent",
401
+ "hashbrown 0.15.2",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "is_terminal_polyfill"
406
+ version = "1.70.1"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
409
+
410
+ [[package]]
411
+ name = "itertools"
412
+ version = "0.12.1"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
415
+ dependencies = [
416
+ "either",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "itertools"
421
+ version = "0.14.0"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
424
+ dependencies = [
425
+ "either",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "itoa"
430
+ version = "1.0.15"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
433
+
434
+ [[package]]
435
+ name = "lazy_static"
436
+ version = "1.5.0"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
439
+
440
+ [[package]]
441
+ name = "lazycell"
442
+ version = "1.3.0"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
445
+
446
+ [[package]]
447
+ name = "libc"
448
+ version = "0.2.172"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
451
+
452
+ [[package]]
453
+ name = "libloading"
454
+ version = "0.8.6"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
457
+ dependencies = [
458
+ "cfg-if",
459
+ "windows-targets",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "linux-raw-sys"
464
+ version = "0.9.4"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
467
+
468
+ [[package]]
469
+ name = "log"
470
+ version = "0.4.27"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
473
+
474
+ [[package]]
475
+ name = "lru"
476
+ version = "0.7.8"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "e999beba7b6e8345721bd280141ed958096a2e4abdf74f67ff4ce49b4b54e47a"
479
+ dependencies = [
480
+ "hashbrown 0.12.3",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "magnus"
485
+ version = "0.7.1"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
488
+ dependencies = [
489
+ "magnus-macros",
490
+ "rb-sys",
491
+ "rb-sys-env",
492
+ "seq-macro",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "magnus-macros"
497
+ version = "0.6.0"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
500
+ dependencies = [
501
+ "proc-macro2",
502
+ "quote",
503
+ "syn 2.0.101",
504
+ ]
505
+
506
+ [[package]]
507
+ name = "matchers"
508
+ version = "0.1.0"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
511
+ dependencies = [
512
+ "regex-automata 0.1.10",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "memchr"
517
+ version = "2.7.4"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
520
+
521
+ [[package]]
522
+ name = "memoize"
523
+ version = "0.5.1"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "f8d1d5792299bab3f8b5d88d1b7a7cb50ad7ef039a8c4d45a6b84880a6526276"
526
+ dependencies = [
527
+ "lazy_static",
528
+ "lru",
529
+ "memoize-inner",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "memoize-inner"
534
+ version = "0.5.1"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "6dd8f89255d8ff313afabed9a3c83ef0993cc056679dfd001f5111a026f876f7"
537
+ dependencies = [
538
+ "lazy_static",
539
+ "proc-macro2",
540
+ "quote",
541
+ "syn 1.0.109",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "minimal-lexical"
546
+ version = "0.2.1"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
549
+
550
+ [[package]]
551
+ name = "nom"
552
+ version = "7.1.3"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
555
+ dependencies = [
556
+ "memchr",
557
+ "minimal-lexical",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "nu-ansi-term"
562
+ version = "0.46.0"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
565
+ dependencies = [
566
+ "overload",
567
+ "winapi",
568
+ ]
569
+
570
+ [[package]]
571
+ name = "once_cell"
572
+ version = "1.21.3"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
575
+
576
+ [[package]]
577
+ name = "overload"
578
+ version = "0.1.1"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
581
+
582
+ [[package]]
583
+ name = "path-clean"
584
+ version = "1.0.1"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "17359afc20d7ab31fdb42bb844c8b3bb1dabd7dcf7e68428492da7f16966fcef"
587
+
588
+ [[package]]
589
+ name = "pin-project-lite"
590
+ version = "0.2.16"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
593
+
594
+ [[package]]
595
+ name = "proc-macro2"
596
+ version = "1.0.95"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
599
+ dependencies = [
600
+ "unicode-ident",
601
+ ]
602
+
603
+ [[package]]
604
+ name = "quote"
605
+ version = "1.0.40"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
608
+ dependencies = [
609
+ "proc-macro2",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "r-efi"
614
+ version = "5.2.0"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
617
+
618
+ [[package]]
619
+ name = "rayon"
620
+ version = "1.10.0"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
623
+ dependencies = [
624
+ "either",
625
+ "rayon-core",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "rayon-core"
630
+ version = "1.12.1"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
633
+ dependencies = [
634
+ "crossbeam-deque",
635
+ "crossbeam-utils",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "rb-sys"
640
+ version = "0.9.111"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "becea799ce051c16fb140be80f5e7cf781070f99ca099332383c2b17861249af"
643
+ dependencies = [
644
+ "rb-sys-build",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "rb-sys-build"
649
+ version = "0.9.111"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "64691175abc704862f60a9ca8ef06174080cc50615f2bf1d4759f46db18b4d29"
652
+ dependencies = [
653
+ "bindgen",
654
+ "lazy_static",
655
+ "proc-macro2",
656
+ "quote",
657
+ "regex",
658
+ "shell-words",
659
+ "syn 2.0.101",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "rb-sys-env"
664
+ version = "0.1.2"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
667
+
668
+ [[package]]
669
+ name = "regex"
670
+ version = "1.11.1"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
673
+ dependencies = [
674
+ "aho-corasick",
675
+ "memchr",
676
+ "regex-automata 0.4.9",
677
+ "regex-syntax 0.8.5",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "regex-automata"
682
+ version = "0.1.10"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
685
+ dependencies = [
686
+ "regex-syntax 0.6.29",
687
+ ]
688
+
689
+ [[package]]
690
+ name = "regex-automata"
691
+ version = "0.4.9"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
694
+ dependencies = [
695
+ "aho-corasick",
696
+ "memchr",
697
+ "regex-syntax 0.8.5",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "regex-syntax"
702
+ version = "0.6.29"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
705
+
706
+ [[package]]
707
+ name = "regex-syntax"
708
+ version = "0.8.5"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
711
+
712
+ [[package]]
713
+ name = "rustc-hash"
714
+ version = "1.1.0"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
717
+
718
+ [[package]]
719
+ name = "rustc_version"
720
+ version = "0.4.1"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
723
+ dependencies = [
724
+ "semver",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "rustix"
729
+ version = "1.0.5"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
732
+ dependencies = [
733
+ "bitflags",
734
+ "errno",
735
+ "libc",
736
+ "linux-raw-sys",
737
+ "windows-sys",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "ryu"
742
+ version = "1.0.20"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
745
+
746
+ [[package]]
747
+ name = "same-file"
748
+ version = "1.0.6"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
751
+ dependencies = [
752
+ "winapi-util",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "semver"
757
+ version = "1.0.26"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
760
+
761
+ [[package]]
762
+ name = "seq-macro"
763
+ version = "0.3.6"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
766
+
767
+ [[package]]
768
+ name = "serde"
769
+ version = "1.0.219"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
772
+ dependencies = [
773
+ "serde_derive",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "serde_derive"
778
+ version = "1.0.219"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
781
+ dependencies = [
782
+ "proc-macro2",
783
+ "quote",
784
+ "syn 2.0.101",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "serde_json"
789
+ version = "1.0.140"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
792
+ dependencies = [
793
+ "itoa",
794
+ "memchr",
795
+ "ryu",
796
+ "serde",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "serde_magnus"
801
+ version = "0.9.0"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "51b8b945a2dadb221f1c5490cfb411cab6c3821446b8eca50ee07e5a3893ec51"
804
+ dependencies = [
805
+ "magnus",
806
+ "serde",
807
+ "tap",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "serde_yaml"
812
+ version = "0.9.34+deprecated"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
815
+ dependencies = [
816
+ "indexmap",
817
+ "itoa",
818
+ "ryu",
819
+ "serde",
820
+ "unsafe-libyaml",
821
+ ]
822
+
823
+ [[package]]
824
+ name = "sharded-slab"
825
+ version = "0.1.7"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
828
+ dependencies = [
829
+ "lazy_static",
830
+ ]
831
+
832
+ [[package]]
833
+ name = "shell-words"
834
+ version = "1.1.0"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
837
+
838
+ [[package]]
839
+ name = "shlex"
840
+ version = "1.3.0"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
843
+
844
+ [[package]]
845
+ name = "smallvec"
846
+ version = "1.15.0"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
849
+
850
+ [[package]]
851
+ name = "strsim"
852
+ version = "0.11.1"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
855
+
856
+ [[package]]
857
+ name = "syn"
858
+ version = "1.0.109"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
861
+ dependencies = [
862
+ "proc-macro2",
863
+ "quote",
864
+ "unicode-ident",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "syn"
869
+ version = "2.0.101"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
872
+ dependencies = [
873
+ "proc-macro2",
874
+ "quote",
875
+ "unicode-ident",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "tap"
880
+ version = "1.0.1"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
883
+
884
+ [[package]]
885
+ name = "tempfile"
886
+ version = "3.19.1"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
889
+ dependencies = [
890
+ "fastrand",
891
+ "getrandom 0.3.2",
892
+ "once_cell",
893
+ "rustix",
894
+ "windows-sys",
895
+ ]
896
+
897
+ [[package]]
898
+ name = "thread_local"
899
+ version = "1.1.8"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
902
+ dependencies = [
903
+ "cfg-if",
904
+ "once_cell",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "tracing"
909
+ version = "0.1.41"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
912
+ dependencies = [
913
+ "pin-project-lite",
914
+ "tracing-attributes",
915
+ "tracing-core",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "tracing-attributes"
920
+ version = "0.1.28"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
923
+ dependencies = [
924
+ "proc-macro2",
925
+ "quote",
926
+ "syn 2.0.101",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "tracing-core"
931
+ version = "0.1.33"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
934
+ dependencies = [
935
+ "once_cell",
936
+ "valuable",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "tracing-log"
941
+ version = "0.2.0"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
944
+ dependencies = [
945
+ "log",
946
+ "once_cell",
947
+ "tracing-core",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "tracing-subscriber"
952
+ version = "0.3.19"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
955
+ dependencies = [
956
+ "matchers",
957
+ "nu-ansi-term",
958
+ "once_cell",
959
+ "regex",
960
+ "sharded-slab",
961
+ "smallvec",
962
+ "thread_local",
963
+ "tracing",
964
+ "tracing-core",
965
+ "tracing-log",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "unicode-ident"
970
+ version = "1.0.18"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
973
+
974
+ [[package]]
975
+ name = "unsafe-libyaml"
976
+ version = "0.2.11"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
979
+
980
+ [[package]]
981
+ name = "utf8parse"
982
+ version = "0.2.2"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
985
+
986
+ [[package]]
987
+ name = "valuable"
988
+ version = "0.1.1"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
991
+
992
+ [[package]]
993
+ name = "version_check"
994
+ version = "0.9.5"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
997
+
998
+ [[package]]
999
+ name = "walkdir"
1000
+ version = "2.5.0"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1003
+ dependencies = [
1004
+ "same-file",
1005
+ "winapi-util",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "wasi"
1010
+ version = "0.11.0+wasi-snapshot-preview1"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1013
+
1014
+ [[package]]
1015
+ name = "wasi"
1016
+ version = "0.14.2+wasi-0.2.4"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
1019
+ dependencies = [
1020
+ "wit-bindgen-rt",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "winapi"
1025
+ version = "0.3.9"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1028
+ dependencies = [
1029
+ "winapi-i686-pc-windows-gnu",
1030
+ "winapi-x86_64-pc-windows-gnu",
1031
+ ]
1032
+
1033
+ [[package]]
1034
+ name = "winapi-i686-pc-windows-gnu"
1035
+ version = "0.4.0"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1038
+
1039
+ [[package]]
1040
+ name = "winapi-util"
1041
+ version = "0.1.9"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
1044
+ dependencies = [
1045
+ "windows-sys",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "winapi-x86_64-pc-windows-gnu"
1050
+ version = "0.4.0"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1053
+
1054
+ [[package]]
1055
+ name = "windows-sys"
1056
+ version = "0.59.0"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1059
+ dependencies = [
1060
+ "windows-targets",
1061
+ ]
1062
+
1063
+ [[package]]
1064
+ name = "windows-targets"
1065
+ version = "0.52.6"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1068
+ dependencies = [
1069
+ "windows_aarch64_gnullvm",
1070
+ "windows_aarch64_msvc",
1071
+ "windows_i686_gnu",
1072
+ "windows_i686_gnullvm",
1073
+ "windows_i686_msvc",
1074
+ "windows_x86_64_gnu",
1075
+ "windows_x86_64_gnullvm",
1076
+ "windows_x86_64_msvc",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "windows_aarch64_gnullvm"
1081
+ version = "0.52.6"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1084
+
1085
+ [[package]]
1086
+ name = "windows_aarch64_msvc"
1087
+ version = "0.52.6"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1090
+
1091
+ [[package]]
1092
+ name = "windows_i686_gnu"
1093
+ version = "0.52.6"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1096
+
1097
+ [[package]]
1098
+ name = "windows_i686_gnullvm"
1099
+ version = "0.52.6"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1102
+
1103
+ [[package]]
1104
+ name = "windows_i686_msvc"
1105
+ version = "0.52.6"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1108
+
1109
+ [[package]]
1110
+ name = "windows_x86_64_gnu"
1111
+ version = "0.52.6"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1114
+
1115
+ [[package]]
1116
+ name = "windows_x86_64_gnullvm"
1117
+ version = "0.52.6"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1120
+
1121
+ [[package]]
1122
+ name = "windows_x86_64_msvc"
1123
+ version = "0.52.6"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1126
+
1127
+ [[package]]
1128
+ name = "wit-bindgen-rt"
1129
+ version = "0.39.0"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
1132
+ dependencies = [
1133
+ "bitflags",
1134
+ ]