@repokit/core 3.0.2 → 3.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/Cargo.lock +1056 -2
  2. package/Cargo.toml +4 -1
  3. package/dist/CommandParser.mjs +3 -3
  4. package/externals/CommandParser.ts +3 -3
  5. package/installation/install.sh +1 -1
  6. package/internals/configuration/configuration.rs +3 -2
  7. package/internals/configuration/mod.rs +2 -0
  8. package/internals/configuration/recovery.rs +42 -0
  9. package/internals/{internal_commands → configuration}/typescript_command.rs +20 -22
  10. package/internals/executables/internal_executable_definition.rs +1 -1
  11. package/internals/executables/mod.rs +1 -2
  12. package/internals/executor/executor.rs +13 -0
  13. package/internals/internal_commands/help.rs +5 -2
  14. package/internals/internal_commands/internal_registry.rs +6 -4
  15. package/internals/internal_commands/list_commands.rs +2 -2
  16. package/internals/internal_commands/list_owners.rs +2 -2
  17. package/internals/internal_commands/list_themes.rs +1 -1
  18. package/internals/internal_commands/list_version.rs +60 -0
  19. package/internals/internal_commands/locate_command.rs +5 -4
  20. package/internals/internal_commands/mod.rs +1 -1
  21. package/internals/internal_commands/onboarder.rs +1 -1
  22. package/internals/internal_commands/register_command.rs +3 -3
  23. package/internals/internal_commands/search_commands.rs +2 -2
  24. package/internals/internal_commands/upgrade_repokit.rs +37 -34
  25. package/internals/internal_filesystem/file_builder.rs +4 -0
  26. package/internals/internal_filesystem/internal_filesystem.rs +101 -9
  27. package/internals/logger/logger.rs +26 -14
  28. package/internals/main.rs +6 -3
  29. package/internals/post_processing/mod.rs +1 -0
  30. package/internals/post_processing/post_processor.rs +37 -0
  31. package/internals/repokit/command_definition.rs +11 -0
  32. package/internals/repokit/mod.rs +5 -1
  33. package/internals/repokit/repokit.rs +10 -14
  34. package/internals/repokit/repokit_command.rs +96 -0
  35. package/internals/repokit/repokit_config.rs +75 -0
  36. package/internals/repokit/repokit_construct_validator.rs +14 -0
  37. package/internals/repokit/runtime_compiler.rs +61 -0
  38. package/internals/themes/theme_inputs.rs +3 -2
  39. package/internals/validations/command_validations.rs +4 -5
  40. package/package.json +1 -1
  41. package/internals/executables/external_executable.rs +0 -4
  42. package/internals/repokit/interfaces.rs +0 -48
  43. /package/internals/executables/{intenal_executable.rs → internal_executable.rs} +0 -0
package/Cargo.lock CHANGED
@@ -2,6 +2,20 @@
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
+ "getrandom 0.3.4",
13
+ "once_cell",
14
+ "serde",
15
+ "version_check",
16
+ "zerocopy",
17
+ ]
18
+
5
19
  [[package]]
6
20
  name = "aho-corasick"
7
21
  version = "1.1.4"
@@ -11,12 +25,80 @@ dependencies = [
11
25
  "memchr",
12
26
  ]
13
27
 
28
+ [[package]]
29
+ name = "allocator-api2"
30
+ version = "0.2.21"
31
+ source = "registry+https://github.com/rust-lang/crates.io-index"
32
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
33
+
14
34
  [[package]]
15
35
  name = "alphanumeric-sort"
16
36
  version = "1.5.5"
17
37
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
38
  checksum = "774ffdfeac16e9b4d75e41225dc2545d9c2082a0634b5d7f6f70e168546eecb1"
19
39
 
40
+ [[package]]
41
+ name = "ansi-colors-macro"
42
+ version = "0.1.2"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "f4c2afa84a2916e88ff06df6fd84e7c89e374a726e392f72dc5e32d6db3c3cf6"
45
+
46
+ [[package]]
47
+ name = "anyhow"
48
+ version = "1.0.102"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
51
+
52
+ [[package]]
53
+ name = "atty"
54
+ version = "0.2.14"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
57
+ dependencies = [
58
+ "hermit-abi",
59
+ "libc",
60
+ "winapi",
61
+ ]
62
+
63
+ [[package]]
64
+ name = "autocfg"
65
+ version = "1.5.0"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
68
+
69
+ [[package]]
70
+ name = "bit-set"
71
+ version = "0.8.0"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
74
+ dependencies = [
75
+ "bit-vec",
76
+ ]
77
+
78
+ [[package]]
79
+ name = "bit-vec"
80
+ version = "0.8.0"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
83
+
84
+ [[package]]
85
+ name = "bitflags"
86
+ version = "1.3.2"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
89
+
90
+ [[package]]
91
+ name = "bitflags"
92
+ version = "2.11.0"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
95
+
96
+ [[package]]
97
+ name = "borrow-or-share"
98
+ version = "0.2.4"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "dc0b364ead1874514c8c2855ab558056ebfeb775653e7ae45ff72f28f8f3166c"
101
+
20
102
  [[package]]
21
103
  name = "bstr"
22
104
  version = "1.12.1"
@@ -27,6 +109,18 @@ dependencies = [
27
109
  "serde",
28
110
  ]
29
111
 
112
+ [[package]]
113
+ name = "bumpalo"
114
+ version = "3.20.2"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
117
+
118
+ [[package]]
119
+ name = "bytecount"
120
+ version = "0.6.9"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
123
+
30
124
  [[package]]
31
125
  name = "cfg-if"
32
126
  version = "1.0.4"
@@ -67,6 +161,37 @@ version = "0.8.21"
67
161
  source = "registry+https://github.com/rust-lang/crates.io-index"
68
162
  checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
69
163
 
164
+ [[package]]
165
+ name = "crossterm"
166
+ version = "0.22.1"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "c85525306c4291d1b73ce93c8acf9c339f9b213aef6c1d85c3830cbf1c16325c"
169
+ dependencies = [
170
+ "bitflags 1.3.2",
171
+ "crossterm_winapi",
172
+ "libc",
173
+ "mio",
174
+ "parking_lot 0.11.2",
175
+ "signal-hook",
176
+ "signal-hook-mio",
177
+ "winapi",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "crossterm_winapi"
182
+ version = "0.9.1"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
185
+ dependencies = [
186
+ "winapi",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "data-encoding"
191
+ version = "2.10.0"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
194
+
70
195
  [[package]]
71
196
  name = "dirs"
72
197
  version = "6.0.0"
@@ -88,6 +213,86 @@ dependencies = [
88
213
  "windows-sys",
89
214
  ]
90
215
 
216
+ [[package]]
217
+ name = "displaydoc"
218
+ version = "0.2.5"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
221
+ dependencies = [
222
+ "proc-macro2",
223
+ "quote",
224
+ "syn",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "dyn-clone"
229
+ version = "1.0.20"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
232
+
233
+ [[package]]
234
+ name = "email_address"
235
+ version = "0.2.9"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449"
238
+ dependencies = [
239
+ "serde",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "equivalent"
244
+ version = "1.0.2"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
247
+
248
+ [[package]]
249
+ name = "errno"
250
+ version = "0.3.14"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
253
+ dependencies = [
254
+ "libc",
255
+ "windows-sys",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "fancy-regex"
260
+ version = "0.17.0"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "72cf461f865c862bb7dc573f643dd6a2b6842f7c30b07882b56bd148cc2761b8"
263
+ dependencies = [
264
+ "bit-set",
265
+ "regex-automata",
266
+ "regex-syntax",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "fluent-uri"
271
+ version = "0.4.1"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "bc74ac4d8359ae70623506d512209619e5cf8f347124910440dbc221714b328e"
274
+ dependencies = [
275
+ "borrow-or-share",
276
+ "ref-cast",
277
+ "serde",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "foldhash"
282
+ version = "0.2.0"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
285
+
286
+ [[package]]
287
+ name = "fraction"
288
+ version = "0.15.3"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "0f158e3ff0a1b334408dc9fb811cd99b446986f4d8b741bb08f9df1604085ae7"
291
+ dependencies = [
292
+ "lazy_static",
293
+ "num",
294
+ ]
295
+
91
296
  [[package]]
92
297
  name = "getrandom"
93
298
  version = "0.2.17"
@@ -99,6 +304,20 @@ dependencies = [
99
304
  "wasi",
100
305
  ]
101
306
 
307
+ [[package]]
308
+ name = "getrandom"
309
+ version = "0.3.4"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
312
+ dependencies = [
313
+ "cfg-if",
314
+ "js-sys",
315
+ "libc",
316
+ "r-efi",
317
+ "wasip2",
318
+ "wasm-bindgen",
319
+ ]
320
+
102
321
  [[package]]
103
322
  name = "globset"
104
323
  version = "0.4.18"
@@ -112,6 +331,137 @@ dependencies = [
112
331
  "regex-syntax",
113
332
  ]
114
333
 
334
+ [[package]]
335
+ name = "hashbrown"
336
+ version = "0.16.1"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
339
+ dependencies = [
340
+ "allocator-api2",
341
+ "equivalent",
342
+ "foldhash",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "heck"
347
+ version = "0.3.3"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
350
+ dependencies = [
351
+ "unicode-segmentation",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "hermit-abi"
356
+ version = "0.1.19"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
359
+ dependencies = [
360
+ "libc",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "icu_collections"
365
+ version = "2.1.1"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
368
+ dependencies = [
369
+ "displaydoc",
370
+ "potential_utf",
371
+ "yoke",
372
+ "zerofrom",
373
+ "zerovec",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "icu_locale_core"
378
+ version = "2.1.1"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
381
+ dependencies = [
382
+ "displaydoc",
383
+ "litemap",
384
+ "tinystr",
385
+ "writeable",
386
+ "zerovec",
387
+ ]
388
+
389
+ [[package]]
390
+ name = "icu_normalizer"
391
+ version = "2.1.1"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
394
+ dependencies = [
395
+ "icu_collections",
396
+ "icu_normalizer_data",
397
+ "icu_properties",
398
+ "icu_provider",
399
+ "smallvec",
400
+ "zerovec",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "icu_normalizer_data"
405
+ version = "2.1.1"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
408
+
409
+ [[package]]
410
+ name = "icu_properties"
411
+ version = "2.1.2"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
414
+ dependencies = [
415
+ "icu_collections",
416
+ "icu_locale_core",
417
+ "icu_properties_data",
418
+ "icu_provider",
419
+ "zerotrie",
420
+ "zerovec",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "icu_properties_data"
425
+ version = "2.1.2"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
428
+
429
+ [[package]]
430
+ name = "icu_provider"
431
+ version = "2.1.1"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
434
+ dependencies = [
435
+ "displaydoc",
436
+ "icu_locale_core",
437
+ "writeable",
438
+ "yoke",
439
+ "zerofrom",
440
+ "zerotrie",
441
+ "zerovec",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "idna"
446
+ version = "1.1.0"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
449
+ dependencies = [
450
+ "idna_adapter",
451
+ "smallvec",
452
+ "utf8_iter",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "idna_adapter"
457
+ version = "1.2.1"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
460
+ dependencies = [
461
+ "icu_normalizer",
462
+ "icu_properties",
463
+ ]
464
+
115
465
  [[package]]
116
466
  name = "ignore"
117
467
  version = "0.4.25"
@@ -128,12 +478,64 @@ dependencies = [
128
478
  "winapi-util",
129
479
  ]
130
480
 
481
+ [[package]]
482
+ name = "instant"
483
+ version = "0.1.13"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
486
+ dependencies = [
487
+ "cfg-if",
488
+ ]
489
+
131
490
  [[package]]
132
491
  name = "itoa"
133
492
  version = "1.0.17"
134
493
  source = "registry+https://github.com/rust-lang/crates.io-index"
135
494
  checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
136
495
 
496
+ [[package]]
497
+ name = "js-sys"
498
+ version = "0.3.94"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
501
+ dependencies = [
502
+ "once_cell",
503
+ "wasm-bindgen",
504
+ ]
505
+
506
+ [[package]]
507
+ name = "jsonschema"
508
+ version = "0.45.0"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "6f29616f6e19415398eb186964fb7cbbeef572c79bede3622a8277667924bbe3"
511
+ dependencies = [
512
+ "ahash",
513
+ "bytecount",
514
+ "data-encoding",
515
+ "email_address",
516
+ "fancy-regex",
517
+ "fraction",
518
+ "getrandom 0.3.4",
519
+ "idna",
520
+ "itoa",
521
+ "num-cmp",
522
+ "num-traits",
523
+ "percent-encoding",
524
+ "referencing",
525
+ "regex",
526
+ "regex-syntax",
527
+ "serde",
528
+ "serde_json",
529
+ "unicode-general-category",
530
+ "uuid-simd",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "lazy_static"
535
+ version = "1.5.0"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
538
+
137
539
  [[package]]
138
540
  name = "libc"
139
541
  version = "0.2.183"
@@ -149,6 +551,21 @@ dependencies = [
149
551
  "libc",
150
552
  ]
151
553
 
554
+ [[package]]
555
+ name = "litemap"
556
+ version = "0.8.1"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
559
+
560
+ [[package]]
561
+ name = "lock_api"
562
+ version = "0.4.14"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
565
+ dependencies = [
566
+ "scopeguard",
567
+ ]
568
+
152
569
  [[package]]
153
570
  name = "log"
154
571
  version = "0.4.29"
@@ -161,24 +578,209 @@ version = "2.7.6"
161
578
  source = "registry+https://github.com/rust-lang/crates.io-index"
162
579
  checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
163
580
 
581
+ [[package]]
582
+ name = "mio"
583
+ version = "0.7.14"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
586
+ dependencies = [
587
+ "libc",
588
+ "log",
589
+ "miow",
590
+ "ntapi",
591
+ "winapi",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "miow"
596
+ version = "0.3.7"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
599
+ dependencies = [
600
+ "winapi",
601
+ ]
602
+
164
603
  [[package]]
165
604
  name = "normalize-path"
166
605
  version = "0.2.1"
167
606
  source = "registry+https://github.com/rust-lang/crates.io-index"
168
607
  checksum = "f5438dd2b2ff4c6df6e1ce22d825ed2fa93ee2922235cc45186991717f0a892d"
169
608
 
609
+ [[package]]
610
+ name = "ntapi"
611
+ version = "0.3.7"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
614
+ dependencies = [
615
+ "winapi",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "num"
620
+ version = "0.4.3"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
623
+ dependencies = [
624
+ "num-bigint",
625
+ "num-complex",
626
+ "num-integer",
627
+ "num-iter",
628
+ "num-rational",
629
+ "num-traits",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "num-bigint"
634
+ version = "0.4.6"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
637
+ dependencies = [
638
+ "num-integer",
639
+ "num-traits",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "num-cmp"
644
+ version = "0.1.0"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa"
647
+
648
+ [[package]]
649
+ name = "num-complex"
650
+ version = "0.4.6"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
653
+ dependencies = [
654
+ "num-traits",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "num-integer"
659
+ version = "0.1.46"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
662
+ dependencies = [
663
+ "num-traits",
664
+ ]
665
+
666
+ [[package]]
667
+ name = "num-iter"
668
+ version = "0.1.45"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
671
+ dependencies = [
672
+ "autocfg",
673
+ "num-integer",
674
+ "num-traits",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "num-rational"
679
+ version = "0.4.2"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
682
+ dependencies = [
683
+ "num-bigint",
684
+ "num-integer",
685
+ "num-traits",
686
+ ]
687
+
688
+ [[package]]
689
+ name = "num-traits"
690
+ version = "0.2.19"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
693
+ dependencies = [
694
+ "autocfg",
695
+ ]
696
+
697
+ [[package]]
698
+ name = "once_cell"
699
+ version = "1.21.4"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
702
+
170
703
  [[package]]
171
704
  name = "option-ext"
172
705
  version = "0.2.0"
173
706
  source = "registry+https://github.com/rust-lang/crates.io-index"
174
707
  checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
175
708
 
709
+ [[package]]
710
+ name = "outref"
711
+ version = "0.5.2"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
714
+
715
+ [[package]]
716
+ name = "parking_lot"
717
+ version = "0.11.2"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
720
+ dependencies = [
721
+ "instant",
722
+ "lock_api",
723
+ "parking_lot_core 0.8.6",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "parking_lot"
728
+ version = "0.12.5"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
731
+ dependencies = [
732
+ "lock_api",
733
+ "parking_lot_core 0.9.12",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "parking_lot_core"
738
+ version = "0.8.6"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
741
+ dependencies = [
742
+ "cfg-if",
743
+ "instant",
744
+ "libc",
745
+ "redox_syscall 0.2.16",
746
+ "smallvec",
747
+ "winapi",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "parking_lot_core"
752
+ version = "0.9.12"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
755
+ dependencies = [
756
+ "cfg-if",
757
+ "libc",
758
+ "redox_syscall 0.5.18",
759
+ "smallvec",
760
+ "windows-link",
761
+ ]
762
+
763
+ [[package]]
764
+ name = "percent-encoding"
765
+ version = "2.3.2"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
768
+
176
769
  [[package]]
177
770
  name = "pin-project-lite"
178
771
  version = "0.2.16"
179
772
  source = "registry+https://github.com/rust-lang/crates.io-index"
180
773
  checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
181
774
 
775
+ [[package]]
776
+ name = "potential_utf"
777
+ version = "0.1.4"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
780
+ dependencies = [
781
+ "zerovec",
782
+ ]
783
+
182
784
  [[package]]
183
785
  name = "proc-macro2"
184
786
  version = "1.0.106"
@@ -197,17 +799,76 @@ dependencies = [
197
799
  "proc-macro2",
198
800
  ]
199
801
 
802
+ [[package]]
803
+ name = "r-efi"
804
+ version = "5.3.0"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
807
+
808
+ [[package]]
809
+ name = "redox_syscall"
810
+ version = "0.2.16"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
813
+ dependencies = [
814
+ "bitflags 1.3.2",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "redox_syscall"
819
+ version = "0.5.18"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
822
+ dependencies = [
823
+ "bitflags 2.11.0",
824
+ ]
825
+
200
826
  [[package]]
201
827
  name = "redox_users"
202
828
  version = "0.5.2"
203
829
  source = "registry+https://github.com/rust-lang/crates.io-index"
204
830
  checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
205
831
  dependencies = [
206
- "getrandom",
832
+ "getrandom 0.2.17",
207
833
  "libredox",
208
834
  "thiserror",
209
835
  ]
210
836
 
837
+ [[package]]
838
+ name = "ref-cast"
839
+ version = "1.0.25"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
842
+ dependencies = [
843
+ "ref-cast-impl",
844
+ ]
845
+
846
+ [[package]]
847
+ name = "ref-cast-impl"
848
+ version = "1.0.25"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
851
+ dependencies = [
852
+ "proc-macro2",
853
+ "quote",
854
+ "syn",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "referencing"
859
+ version = "0.45.0"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "b8a618c14f8ba29d8193bb55e2bf13e4fb2b1115313ecb7ae94b43100c7ac7d5"
862
+ dependencies = [
863
+ "ahash",
864
+ "fluent-uri",
865
+ "getrandom 0.3.4",
866
+ "hashbrown",
867
+ "parking_lot 0.12.5",
868
+ "percent-encoding",
869
+ "serde_json",
870
+ ]
871
+
211
872
  [[package]]
212
873
  name = "regex"
213
874
  version = "1.12.3"
@@ -239,19 +900,28 @@ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
239
900
 
240
901
  [[package]]
241
902
  name = "repokit"
242
- version = "3.0.2"
903
+ version = "3.0.3"
243
904
  dependencies = [
244
905
  "alphanumeric-sort",
245
906
  "colored",
246
907
  "ignore",
908
+ "jsonschema",
247
909
  "normalize-path",
248
910
  "regex",
911
+ "schemars",
249
912
  "serde",
250
913
  "serde_json",
251
914
  "shellexpand",
915
+ "terminal-spinners",
252
916
  "tokio",
253
917
  ]
254
918
 
919
+ [[package]]
920
+ name = "rustversion"
921
+ version = "1.0.22"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
924
+
255
925
  [[package]]
256
926
  name = "same-file"
257
927
  version = "1.0.6"
@@ -261,6 +931,37 @@ dependencies = [
261
931
  "winapi-util",
262
932
  ]
263
933
 
934
+ [[package]]
935
+ name = "schemars"
936
+ version = "1.2.1"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
939
+ dependencies = [
940
+ "dyn-clone",
941
+ "ref-cast",
942
+ "schemars_derive",
943
+ "serde",
944
+ "serde_json",
945
+ ]
946
+
947
+ [[package]]
948
+ name = "schemars_derive"
949
+ version = "1.2.1"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
952
+ dependencies = [
953
+ "proc-macro2",
954
+ "quote",
955
+ "serde_derive_internals",
956
+ "syn",
957
+ ]
958
+
959
+ [[package]]
960
+ name = "scopeguard"
961
+ version = "1.2.0"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
964
+
264
965
  [[package]]
265
966
  name = "serde"
266
967
  version = "1.0.228"
@@ -291,6 +992,17 @@ dependencies = [
291
992
  "syn",
292
993
  ]
293
994
 
995
+ [[package]]
996
+ name = "serde_derive_internals"
997
+ version = "0.29.1"
998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
999
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
1000
+ dependencies = [
1001
+ "proc-macro2",
1002
+ "quote",
1003
+ "syn",
1004
+ ]
1005
+
294
1006
  [[package]]
295
1007
  name = "serde_json"
296
1008
  version = "1.0.149"
@@ -313,6 +1025,49 @@ dependencies = [
313
1025
  "dirs",
314
1026
  ]
315
1027
 
1028
+ [[package]]
1029
+ name = "signal-hook"
1030
+ version = "0.3.18"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
1033
+ dependencies = [
1034
+ "libc",
1035
+ "signal-hook-registry",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "signal-hook-mio"
1040
+ version = "0.2.5"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
1043
+ dependencies = [
1044
+ "libc",
1045
+ "mio",
1046
+ "signal-hook",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "signal-hook-registry"
1051
+ version = "1.4.8"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1054
+ dependencies = [
1055
+ "errno",
1056
+ "libc",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "smallvec"
1061
+ version = "1.15.1"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1064
+
1065
+ [[package]]
1066
+ name = "stable_deref_trait"
1067
+ version = "1.2.1"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1070
+
316
1071
  [[package]]
317
1072
  name = "syn"
318
1073
  version = "2.0.117"
@@ -324,6 +1079,70 @@ dependencies = [
324
1079
  "unicode-ident",
325
1080
  ]
326
1081
 
1082
+ [[package]]
1083
+ name = "synstructure"
1084
+ version = "0.13.2"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1087
+ dependencies = [
1088
+ "proc-macro2",
1089
+ "quote",
1090
+ "syn",
1091
+ ]
1092
+
1093
+ [[package]]
1094
+ name = "terminal-emoji"
1095
+ version = "0.4.1"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "8143568e8d5270b3b8f573ab8bb11a556a5c9e4becdc12241a7eef4c54a55170"
1098
+ dependencies = [
1099
+ "terminal-supports-emoji",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "terminal-log-symbols"
1104
+ version = "0.1.6"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "b7569386670bad024a2729d194542c42500615fca75f1139c99b697704f7e46f"
1107
+ dependencies = [
1108
+ "ansi-colors-macro",
1109
+ "terminal-emoji",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "terminal-spinner-data"
1114
+ version = "0.1.2"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "3aadcf9cbc909865c51ff9ced167a1065201b9b35d7254d530c9520b687ef3f4"
1117
+ dependencies = [
1118
+ "anyhow",
1119
+ "heck",
1120
+ "quote",
1121
+ "serde",
1122
+ "serde_json",
1123
+ ]
1124
+
1125
+ [[package]]
1126
+ name = "terminal-spinners"
1127
+ version = "0.3.2"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "d8a1f23d549659993743823e9f54d6dd0502e6e6466894a0e1c254262c0e0e93"
1130
+ dependencies = [
1131
+ "crossterm",
1132
+ "terminal-log-symbols",
1133
+ "terminal-spinner-data",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "terminal-supports-emoji"
1138
+ version = "0.1.3"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "c8873a7a1f2d286cfedc10663a722309b1c74092852cf149aee738cbe901c6eb"
1141
+ dependencies = [
1142
+ "atty",
1143
+ "lazy_static",
1144
+ ]
1145
+
327
1146
  [[package]]
328
1147
  name = "thiserror"
329
1148
  version = "2.0.18"
@@ -344,6 +1163,16 @@ dependencies = [
344
1163
  "syn",
345
1164
  ]
346
1165
 
1166
+ [[package]]
1167
+ name = "tinystr"
1168
+ version = "0.8.2"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1171
+ dependencies = [
1172
+ "displaydoc",
1173
+ "zerovec",
1174
+ ]
1175
+
347
1176
  [[package]]
348
1177
  name = "tokio"
349
1178
  version = "1.50.0"
@@ -353,12 +1182,52 @@ dependencies = [
353
1182
  "pin-project-lite",
354
1183
  ]
355
1184
 
1185
+ [[package]]
1186
+ name = "unicode-general-category"
1187
+ version = "1.1.0"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "0b993bddc193ae5bd0d623b49ec06ac3e9312875fdae725a975c51db1cc1677f"
1190
+
356
1191
  [[package]]
357
1192
  name = "unicode-ident"
358
1193
  version = "1.0.22"
359
1194
  source = "registry+https://github.com/rust-lang/crates.io-index"
360
1195
  checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
361
1196
 
1197
+ [[package]]
1198
+ name = "unicode-segmentation"
1199
+ version = "1.13.2"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
1202
+
1203
+ [[package]]
1204
+ name = "utf8_iter"
1205
+ version = "1.0.4"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1208
+
1209
+ [[package]]
1210
+ name = "uuid-simd"
1211
+ version = "0.8.0"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "23b082222b4f6619906941c17eb2297fff4c2fb96cb60164170522942a200bd8"
1214
+ dependencies = [
1215
+ "outref",
1216
+ "vsimd",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "version_check"
1221
+ version = "0.9.5"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1224
+
1225
+ [[package]]
1226
+ name = "vsimd"
1227
+ version = "0.8.0"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
1230
+
362
1231
  [[package]]
363
1232
  name = "walkdir"
364
1233
  version = "2.5.0"
@@ -375,6 +1244,76 @@ version = "0.11.1+wasi-snapshot-preview1"
375
1244
  source = "registry+https://github.com/rust-lang/crates.io-index"
376
1245
  checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
377
1246
 
1247
+ [[package]]
1248
+ name = "wasip2"
1249
+ version = "1.0.2+wasi-0.2.9"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1252
+ dependencies = [
1253
+ "wit-bindgen",
1254
+ ]
1255
+
1256
+ [[package]]
1257
+ name = "wasm-bindgen"
1258
+ version = "0.2.117"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
1261
+ dependencies = [
1262
+ "cfg-if",
1263
+ "once_cell",
1264
+ "rustversion",
1265
+ "wasm-bindgen-macro",
1266
+ "wasm-bindgen-shared",
1267
+ ]
1268
+
1269
+ [[package]]
1270
+ name = "wasm-bindgen-macro"
1271
+ version = "0.2.117"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
1274
+ dependencies = [
1275
+ "quote",
1276
+ "wasm-bindgen-macro-support",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "wasm-bindgen-macro-support"
1281
+ version = "0.2.117"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
1284
+ dependencies = [
1285
+ "bumpalo",
1286
+ "proc-macro2",
1287
+ "quote",
1288
+ "syn",
1289
+ "wasm-bindgen-shared",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "wasm-bindgen-shared"
1294
+ version = "0.2.117"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
1297
+ dependencies = [
1298
+ "unicode-ident",
1299
+ ]
1300
+
1301
+ [[package]]
1302
+ name = "winapi"
1303
+ version = "0.3.9"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1306
+ dependencies = [
1307
+ "winapi-i686-pc-windows-gnu",
1308
+ "winapi-x86_64-pc-windows-gnu",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "winapi-i686-pc-windows-gnu"
1313
+ version = "0.4.0"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1316
+
378
1317
  [[package]]
379
1318
  name = "winapi-util"
380
1319
  version = "0.1.11"
@@ -384,6 +1323,12 @@ dependencies = [
384
1323
  "windows-sys",
385
1324
  ]
386
1325
 
1326
+ [[package]]
1327
+ name = "winapi-x86_64-pc-windows-gnu"
1328
+ version = "0.4.0"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1331
+
387
1332
  [[package]]
388
1333
  name = "windows-link"
389
1334
  version = "0.2.1"
@@ -399,6 +1344,115 @@ dependencies = [
399
1344
  "windows-link",
400
1345
  ]
401
1346
 
1347
+ [[package]]
1348
+ name = "wit-bindgen"
1349
+ version = "0.51.0"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1352
+
1353
+ [[package]]
1354
+ name = "writeable"
1355
+ version = "0.6.2"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
1358
+
1359
+ [[package]]
1360
+ name = "yoke"
1361
+ version = "0.8.1"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
1364
+ dependencies = [
1365
+ "stable_deref_trait",
1366
+ "yoke-derive",
1367
+ "zerofrom",
1368
+ ]
1369
+
1370
+ [[package]]
1371
+ name = "yoke-derive"
1372
+ version = "0.8.1"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
1375
+ dependencies = [
1376
+ "proc-macro2",
1377
+ "quote",
1378
+ "syn",
1379
+ "synstructure",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "zerocopy"
1384
+ version = "0.8.48"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1387
+ dependencies = [
1388
+ "zerocopy-derive",
1389
+ ]
1390
+
1391
+ [[package]]
1392
+ name = "zerocopy-derive"
1393
+ version = "0.8.48"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1396
+ dependencies = [
1397
+ "proc-macro2",
1398
+ "quote",
1399
+ "syn",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "zerofrom"
1404
+ version = "0.1.6"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
1407
+ dependencies = [
1408
+ "zerofrom-derive",
1409
+ ]
1410
+
1411
+ [[package]]
1412
+ name = "zerofrom-derive"
1413
+ version = "0.1.6"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
1416
+ dependencies = [
1417
+ "proc-macro2",
1418
+ "quote",
1419
+ "syn",
1420
+ "synstructure",
1421
+ ]
1422
+
1423
+ [[package]]
1424
+ name = "zerotrie"
1425
+ version = "0.2.3"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
1428
+ dependencies = [
1429
+ "displaydoc",
1430
+ "yoke",
1431
+ "zerofrom",
1432
+ ]
1433
+
1434
+ [[package]]
1435
+ name = "zerovec"
1436
+ version = "0.11.5"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
1439
+ dependencies = [
1440
+ "yoke",
1441
+ "zerofrom",
1442
+ "zerovec-derive",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "zerovec-derive"
1447
+ version = "0.11.2"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
1450
+ dependencies = [
1451
+ "proc-macro2",
1452
+ "quote",
1453
+ "syn",
1454
+ ]
1455
+
402
1456
  [[package]]
403
1457
  name = "zmij"
404
1458
  version = "1.0.17"