changepacks 0.1.4__tar.gz

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 (68) hide show
  1. changepacks-0.1.4/Cargo.lock +3368 -0
  2. changepacks-0.1.4/Cargo.toml +3 -0
  3. changepacks-0.1.4/PKG-INFO +7 -0
  4. changepacks-0.1.4/bridge/python/.cargo/config.toml +36 -0
  5. changepacks-0.1.4/bridge/python/.gitignore +72 -0
  6. changepacks-0.1.4/bridge/python/Cargo.toml +18 -0
  7. changepacks-0.1.4/bridge/python/build.rs +41 -0
  8. changepacks-0.1.4/bridge/python/changepacks/__main__.py +88 -0
  9. changepacks-0.1.4/bridge/python/src/endian_helper.c +40 -0
  10. changepacks-0.1.4/bridge/python/src/main.rs +4 -0
  11. changepacks-0.1.4/bridge/python/uv.lock +8 -0
  12. changepacks-0.1.4/changepacks/__main__.py +88 -0
  13. changepacks-0.1.4/crates/cli/Cargo.toml +20 -0
  14. changepacks-0.1.4/crates/cli/src/commands/changepacks.rs +127 -0
  15. changepacks-0.1.4/crates/cli/src/commands/check.rs +91 -0
  16. changepacks-0.1.4/crates/cli/src/commands/config.rs +15 -0
  17. changepacks-0.1.4/crates/cli/src/commands/init.rs +44 -0
  18. changepacks-0.1.4/crates/cli/src/commands/mod.rs +16 -0
  19. changepacks-0.1.4/crates/cli/src/commands/update.rs +135 -0
  20. changepacks-0.1.4/crates/cli/src/finders.rs +26 -0
  21. changepacks-0.1.4/crates/cli/src/lib.rs +53 -0
  22. changepacks-0.1.4/crates/cli/src/options/filter_options.rs +7 -0
  23. changepacks-0.1.4/crates/cli/src/options/format_options.rs +9 -0
  24. changepacks-0.1.4/crates/cli/src/options/mod.rs +4 -0
  25. changepacks-0.1.4/crates/core/Cargo.toml +12 -0
  26. changepacks-0.1.4/crates/core/src/changepack_result.rs +48 -0
  27. changepacks-0.1.4/crates/core/src/config.rs +28 -0
  28. changepacks-0.1.4/crates/core/src/language.rs +25 -0
  29. changepacks-0.1.4/crates/core/src/lib.rs +20 -0
  30. changepacks-0.1.4/crates/core/src/package.rs +28 -0
  31. changepacks-0.1.4/crates/core/src/proejct_finder.rs +22 -0
  32. changepacks-0.1.4/crates/core/src/project.rs +153 -0
  33. changepacks-0.1.4/crates/core/src/update_log.rs +31 -0
  34. changepacks-0.1.4/crates/core/src/update_type.rs +24 -0
  35. changepacks-0.1.4/crates/core/src/workspace.rs +31 -0
  36. changepacks-0.1.4/crates/dart/Cargo.toml +15 -0
  37. changepacks-0.1.4/crates/dart/src/finder.rs +107 -0
  38. changepacks-0.1.4/crates/dart/src/lib.rs +5 -0
  39. changepacks-0.1.4/crates/dart/src/package.rs +77 -0
  40. changepacks-0.1.4/crates/dart/src/workspace.rs +85 -0
  41. changepacks-0.1.4/crates/node/Cargo.toml +13 -0
  42. changepacks-0.1.4/crates/node/src/finder.rs +105 -0
  43. changepacks-0.1.4/crates/node/src/lib.rs +5 -0
  44. changepacks-0.1.4/crates/node/src/package.rs +67 -0
  45. changepacks-0.1.4/crates/node/src/workspace.rs +80 -0
  46. changepacks-0.1.4/crates/python/Cargo.toml +13 -0
  47. changepacks-0.1.4/crates/python/src/finder.rs +107 -0
  48. changepacks-0.1.4/crates/python/src/lib.rs +5 -0
  49. changepacks-0.1.4/crates/python/src/package.rs +69 -0
  50. changepacks-0.1.4/crates/python/src/workspace.rs +80 -0
  51. changepacks-0.1.4/crates/rust/Cargo.toml +13 -0
  52. changepacks-0.1.4/crates/rust/src/finder.rs +105 -0
  53. changepacks-0.1.4/crates/rust/src/lib.rs +5 -0
  54. changepacks-0.1.4/crates/rust/src/package.rs +68 -0
  55. changepacks-0.1.4/crates/rust/src/workspace.rs +85 -0
  56. changepacks-0.1.4/crates/utils/Cargo.toml +19 -0
  57. changepacks-0.1.4/crates/utils/src/clear_update_logs.rs +79 -0
  58. changepacks-0.1.4/crates/utils/src/display_update.rs +47 -0
  59. changepacks-0.1.4/crates/utils/src/filter_project_dirs.rs +122 -0
  60. changepacks-0.1.4/crates/utils/src/find_current_git_repo.rs +55 -0
  61. changepacks-0.1.4/crates/utils/src/gen_changepack_result_map.rs +44 -0
  62. changepacks-0.1.4/crates/utils/src/gen_update_map.rs +155 -0
  63. changepacks-0.1.4/crates/utils/src/get_changepacks_config.rs +137 -0
  64. changepacks-0.1.4/crates/utils/src/get_changepacks_dir.rs +134 -0
  65. changepacks-0.1.4/crates/utils/src/get_relative_path.rs +66 -0
  66. changepacks-0.1.4/crates/utils/src/lib.rs +21 -0
  67. changepacks-0.1.4/crates/utils/src/next_version.rs +79 -0
  68. changepacks-0.1.4/pyproject.toml +18 -0
@@ -0,0 +1,3368 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.3"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "allocator-api2"
22
+ version = "0.2.21"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
25
+
26
+ [[package]]
27
+ name = "android_system_properties"
28
+ version = "0.1.5"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
31
+ dependencies = [
32
+ "libc",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstream"
37
+ version = "0.6.21"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
40
+ dependencies = [
41
+ "anstyle",
42
+ "anstyle-parse",
43
+ "anstyle-query",
44
+ "anstyle-wincon",
45
+ "colorchoice",
46
+ "is_terminal_polyfill",
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle"
52
+ version = "1.0.13"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
55
+
56
+ [[package]]
57
+ name = "anstyle-parse"
58
+ version = "0.2.7"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
61
+ dependencies = [
62
+ "utf8parse",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "anstyle-query"
67
+ version = "1.1.4"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
70
+ dependencies = [
71
+ "windows-sys 0.60.2",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "anstyle-wincon"
76
+ version = "3.0.10"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
79
+ dependencies = [
80
+ "anstyle",
81
+ "once_cell_polyfill",
82
+ "windows-sys 0.60.2",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "anyhow"
87
+ version = "1.0.100"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
90
+
91
+ [[package]]
92
+ name = "arc-swap"
93
+ version = "1.7.1"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
96
+
97
+ [[package]]
98
+ name = "async-trait"
99
+ version = "0.1.89"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
102
+ dependencies = [
103
+ "proc-macro2",
104
+ "quote",
105
+ "syn",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "autocfg"
110
+ version = "1.5.0"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
113
+
114
+ [[package]]
115
+ name = "bitflags"
116
+ version = "2.9.4"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
119
+
120
+ [[package]]
121
+ name = "block-buffer"
122
+ version = "0.10.4"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
125
+ dependencies = [
126
+ "generic-array",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "bstr"
131
+ version = "1.12.0"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
134
+ dependencies = [
135
+ "memchr",
136
+ "regex-automata",
137
+ "serde",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "bumpalo"
142
+ version = "3.19.0"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
145
+
146
+ [[package]]
147
+ name = "byteorder"
148
+ version = "1.5.0"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
151
+
152
+ [[package]]
153
+ name = "cc"
154
+ version = "1.2.40"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "e1d05d92f4b1fd76aad469d46cdd858ca761576082cd37df81416691e50199fb"
157
+ dependencies = [
158
+ "find-msvc-tools",
159
+ "shlex",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "cfg-if"
164
+ version = "1.0.3"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
167
+
168
+ [[package]]
169
+ name = "changepacks"
170
+ version = "0.1.4"
171
+ dependencies = [
172
+ "anyhow",
173
+ "cli",
174
+ "tokio",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "changepacks-core"
179
+ version = "0.1.1"
180
+ dependencies = [
181
+ "anyhow",
182
+ "async-trait",
183
+ "chrono",
184
+ "colored",
185
+ "serde",
186
+ "tokio",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "chrono"
191
+ version = "0.4.42"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
194
+ dependencies = [
195
+ "iana-time-zone",
196
+ "js-sys",
197
+ "num-traits",
198
+ "serde",
199
+ "wasm-bindgen",
200
+ "windows-link",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "clap"
205
+ version = "4.5.48"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "e2134bb3ea021b78629caa971416385309e0131b351b25e01dc16fb54e1b5fae"
208
+ dependencies = [
209
+ "clap_builder",
210
+ "clap_derive",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "clap_builder"
215
+ version = "4.5.48"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "c2ba64afa3c0a6df7fa517765e31314e983f51dda798ffba27b988194fb65dc9"
218
+ dependencies = [
219
+ "anstream",
220
+ "anstyle",
221
+ "clap_lex",
222
+ "strsim",
223
+ ]
224
+
225
+ [[package]]
226
+ name = "clap_derive"
227
+ version = "4.5.47"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c"
230
+ dependencies = [
231
+ "heck",
232
+ "proc-macro2",
233
+ "quote",
234
+ "syn",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "clap_lex"
239
+ version = "0.7.5"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
242
+
243
+ [[package]]
244
+ name = "cli"
245
+ version = "0.1.1"
246
+ dependencies = [
247
+ "anyhow",
248
+ "changepacks-core",
249
+ "clap",
250
+ "colored",
251
+ "dart",
252
+ "futures",
253
+ "inquire",
254
+ "nanoid",
255
+ "node",
256
+ "python",
257
+ "rust",
258
+ "serde_json",
259
+ "tokio",
260
+ "utils",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "clru"
265
+ version = "0.6.2"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "cbd0f76e066e64fdc5631e3bb46381254deab9ef1158292f27c8c57e3bf3fe59"
268
+
269
+ [[package]]
270
+ name = "colorchoice"
271
+ version = "1.0.4"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
274
+
275
+ [[package]]
276
+ name = "colored"
277
+ version = "3.0.0"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e"
280
+ dependencies = [
281
+ "windows-sys 0.59.0",
282
+ ]
283
+
284
+ [[package]]
285
+ name = "convert_case"
286
+ version = "0.7.1"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "bb402b8d4c85569410425650ce3eddc7d698ed96d39a73f941b08fb63082f1e7"
289
+ dependencies = [
290
+ "unicode-segmentation",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "convert_case"
295
+ version = "0.8.0"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f"
298
+ dependencies = [
299
+ "unicode-segmentation",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "core-foundation-sys"
304
+ version = "0.8.7"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
307
+
308
+ [[package]]
309
+ name = "cpufeatures"
310
+ version = "0.2.17"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
313
+ dependencies = [
314
+ "libc",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "crc32fast"
319
+ version = "1.5.0"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
322
+ dependencies = [
323
+ "cfg-if",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "crossbeam-channel"
328
+ version = "0.5.15"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
331
+ dependencies = [
332
+ "crossbeam-utils",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "crossbeam-deque"
337
+ version = "0.8.6"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
340
+ dependencies = [
341
+ "crossbeam-epoch",
342
+ "crossbeam-utils",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "crossbeam-epoch"
347
+ version = "0.9.18"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
350
+ dependencies = [
351
+ "crossbeam-utils",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "crossbeam-utils"
356
+ version = "0.8.21"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
359
+
360
+ [[package]]
361
+ name = "crossterm"
362
+ version = "0.29.0"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
365
+ dependencies = [
366
+ "bitflags",
367
+ "crossterm_winapi",
368
+ "derive_more",
369
+ "document-features",
370
+ "mio",
371
+ "parking_lot",
372
+ "rustix",
373
+ "signal-hook",
374
+ "signal-hook-mio",
375
+ "winapi",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "crossterm_winapi"
380
+ version = "0.9.1"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
383
+ dependencies = [
384
+ "winapi",
385
+ ]
386
+
387
+ [[package]]
388
+ name = "crypto-common"
389
+ version = "0.1.6"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
392
+ dependencies = [
393
+ "generic-array",
394
+ "typenum",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "ctor"
399
+ version = "0.5.0"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "67773048316103656a637612c4a62477603b777d91d9c62ff2290f9cde178fdb"
402
+ dependencies = [
403
+ "ctor-proc-macro",
404
+ "dtor",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "ctor-proc-macro"
409
+ version = "0.0.6"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "e2931af7e13dc045d8e9d26afccc6fa115d64e115c9c84b1166288b46f6782c2"
412
+
413
+ [[package]]
414
+ name = "dart"
415
+ version = "0.1.1"
416
+ dependencies = [
417
+ "anyhow",
418
+ "async-trait",
419
+ "changepacks-core",
420
+ "serde",
421
+ "serde_yaml",
422
+ "tokio",
423
+ "utils",
424
+ "yamlpatch",
425
+ "yamlpath",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "dashmap"
430
+ version = "6.1.0"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
433
+ dependencies = [
434
+ "cfg-if",
435
+ "crossbeam-utils",
436
+ "hashbrown 0.14.5",
437
+ "lock_api",
438
+ "once_cell",
439
+ "parking_lot_core",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "derive_more"
444
+ version = "2.0.1"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
447
+ dependencies = [
448
+ "derive_more-impl",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "derive_more-impl"
453
+ version = "2.0.1"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
456
+ dependencies = [
457
+ "convert_case 0.7.1",
458
+ "proc-macro2",
459
+ "quote",
460
+ "syn",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "digest"
465
+ version = "0.10.7"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
468
+ dependencies = [
469
+ "block-buffer",
470
+ "crypto-common",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "displaydoc"
475
+ version = "0.2.5"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
478
+ dependencies = [
479
+ "proc-macro2",
480
+ "quote",
481
+ "syn",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "document-features"
486
+ version = "0.2.11"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d"
489
+ dependencies = [
490
+ "litrs",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "dtor"
495
+ version = "0.1.0"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "e58a0764cddb55ab28955347b45be00ade43d4d6f3ba4bf3dc354e4ec9432934"
498
+ dependencies = [
499
+ "dtor-proc-macro",
500
+ ]
501
+
502
+ [[package]]
503
+ name = "dtor-proc-macro"
504
+ version = "0.0.6"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
507
+
508
+ [[package]]
509
+ name = "dunce"
510
+ version = "1.0.5"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
513
+
514
+ [[package]]
515
+ name = "dyn-clone"
516
+ version = "1.0.20"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
519
+
520
+ [[package]]
521
+ name = "encoding_rs"
522
+ version = "0.8.35"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
525
+ dependencies = [
526
+ "cfg-if",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "equivalent"
531
+ version = "1.0.2"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
534
+
535
+ [[package]]
536
+ name = "errno"
537
+ version = "0.3.14"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
540
+ dependencies = [
541
+ "libc",
542
+ "windows-sys 0.61.2",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "faster-hex"
547
+ version = "0.10.0"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "7223ae2d2f179b803433d9c830478527e92b8117eab39460edae7f1614d9fb73"
550
+ dependencies = [
551
+ "heapless",
552
+ "serde",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "fastrand"
557
+ version = "2.3.0"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
560
+
561
+ [[package]]
562
+ name = "filetime"
563
+ version = "0.2.26"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
566
+ dependencies = [
567
+ "cfg-if",
568
+ "libc",
569
+ "libredox",
570
+ "windows-sys 0.60.2",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "find-msvc-tools"
575
+ version = "0.1.3"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "0399f9d26e5191ce32c498bebd31e7a3ceabc2745f0ac54af3f335126c3f24b3"
578
+
579
+ [[package]]
580
+ name = "flate2"
581
+ version = "1.1.4"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "dc5a4e564e38c699f2880d3fda590bedc2e69f3f84cd48b457bd892ce61d0aa9"
584
+ dependencies = [
585
+ "crc32fast",
586
+ "libz-rs-sys",
587
+ "miniz_oxide",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "fnv"
592
+ version = "1.0.7"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
595
+
596
+ [[package]]
597
+ name = "foldhash"
598
+ version = "0.1.5"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
601
+
602
+ [[package]]
603
+ name = "form_urlencoded"
604
+ version = "1.2.2"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
607
+ dependencies = [
608
+ "percent-encoding",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "futures"
613
+ version = "0.3.31"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
616
+ dependencies = [
617
+ "futures-channel",
618
+ "futures-core",
619
+ "futures-executor",
620
+ "futures-io",
621
+ "futures-sink",
622
+ "futures-task",
623
+ "futures-util",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "futures-channel"
628
+ version = "0.3.31"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
631
+ dependencies = [
632
+ "futures-core",
633
+ "futures-sink",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "futures-core"
638
+ version = "0.3.31"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
641
+
642
+ [[package]]
643
+ name = "futures-executor"
644
+ version = "0.3.31"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
647
+ dependencies = [
648
+ "futures-core",
649
+ "futures-task",
650
+ "futures-util",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "futures-io"
655
+ version = "0.3.31"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
658
+
659
+ [[package]]
660
+ name = "futures-macro"
661
+ version = "0.3.31"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
664
+ dependencies = [
665
+ "proc-macro2",
666
+ "quote",
667
+ "syn",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "futures-sink"
672
+ version = "0.3.31"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
675
+
676
+ [[package]]
677
+ name = "futures-task"
678
+ version = "0.3.31"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
681
+
682
+ [[package]]
683
+ name = "futures-timer"
684
+ version = "3.0.3"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
687
+
688
+ [[package]]
689
+ name = "futures-util"
690
+ version = "0.3.31"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
693
+ dependencies = [
694
+ "futures-channel",
695
+ "futures-core",
696
+ "futures-io",
697
+ "futures-macro",
698
+ "futures-sink",
699
+ "futures-task",
700
+ "memchr",
701
+ "pin-project-lite",
702
+ "pin-utils",
703
+ "slab",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "fuzzy-matcher"
708
+ version = "0.3.7"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "54614a3312934d066701a80f20f15fa3b56d67ac7722b39eea5b4c9dd1d66c94"
711
+ dependencies = [
712
+ "thread_local",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "generic-array"
717
+ version = "0.14.7"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
720
+ dependencies = [
721
+ "typenum",
722
+ "version_check",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "getrandom"
727
+ version = "0.2.16"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
730
+ dependencies = [
731
+ "cfg-if",
732
+ "libc",
733
+ "wasi 0.11.1+wasi-snapshot-preview1",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "getrandom"
738
+ version = "0.3.3"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
741
+ dependencies = [
742
+ "cfg-if",
743
+ "libc",
744
+ "r-efi",
745
+ "wasi 0.14.7+wasi-0.2.4",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "gix"
750
+ version = "0.73.0"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "514c29cc879bdc0286b0cbc205585a49b252809eb86c69df4ce4f855ee75f635"
753
+ dependencies = [
754
+ "gix-actor",
755
+ "gix-attributes",
756
+ "gix-command",
757
+ "gix-commitgraph",
758
+ "gix-config",
759
+ "gix-date",
760
+ "gix-diff",
761
+ "gix-dir",
762
+ "gix-discover",
763
+ "gix-features",
764
+ "gix-filter",
765
+ "gix-fs",
766
+ "gix-glob",
767
+ "gix-hash",
768
+ "gix-hashtable",
769
+ "gix-ignore",
770
+ "gix-index",
771
+ "gix-lock",
772
+ "gix-object",
773
+ "gix-odb",
774
+ "gix-pack",
775
+ "gix-path",
776
+ "gix-pathspec",
777
+ "gix-protocol",
778
+ "gix-ref",
779
+ "gix-refspec",
780
+ "gix-revision",
781
+ "gix-revwalk",
782
+ "gix-sec",
783
+ "gix-shallow",
784
+ "gix-status",
785
+ "gix-submodule",
786
+ "gix-tempfile",
787
+ "gix-trace",
788
+ "gix-traverse",
789
+ "gix-url",
790
+ "gix-utils",
791
+ "gix-validate",
792
+ "gix-worktree",
793
+ "once_cell",
794
+ "smallvec",
795
+ "thiserror",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "gix-actor"
800
+ version = "0.35.4"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "2d36dcf9efe32b51b12dfa33cedff8414926124e760a32f9e7a6b5580d280967"
803
+ dependencies = [
804
+ "bstr",
805
+ "gix-date",
806
+ "gix-utils",
807
+ "itoa",
808
+ "thiserror",
809
+ "winnow",
810
+ ]
811
+
812
+ [[package]]
813
+ name = "gix-attributes"
814
+ version = "0.27.0"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "45442188216d08a5959af195f659cb1f244a50d7d2d0c3873633b1cd7135f638"
817
+ dependencies = [
818
+ "bstr",
819
+ "gix-glob",
820
+ "gix-path",
821
+ "gix-quote",
822
+ "gix-trace",
823
+ "kstring",
824
+ "smallvec",
825
+ "thiserror",
826
+ "unicode-bom",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "gix-bitmap"
831
+ version = "0.2.14"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "b1db9765c69502650da68f0804e3dc2b5f8ccc6a2d104ca6c85bc40700d37540"
834
+ dependencies = [
835
+ "thiserror",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "gix-chunk"
840
+ version = "0.4.11"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "0b1f1d8764958699dc764e3f727cef280ff4d1bd92c107bbf8acd85b30c1bd6f"
843
+ dependencies = [
844
+ "thiserror",
845
+ ]
846
+
847
+ [[package]]
848
+ name = "gix-command"
849
+ version = "0.6.2"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "6b31b65ca48a352ae86312b27a514a0c661935f96b481ac8b4371f65815eb196"
852
+ dependencies = [
853
+ "bstr",
854
+ "gix-path",
855
+ "gix-quote",
856
+ "gix-trace",
857
+ "shell-words",
858
+ ]
859
+
860
+ [[package]]
861
+ name = "gix-commitgraph"
862
+ version = "0.29.0"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "6bb23121e952f43a5b07e3e80890336cb847297467a410475036242732980d06"
865
+ dependencies = [
866
+ "bstr",
867
+ "gix-chunk",
868
+ "gix-hash",
869
+ "memmap2",
870
+ "thiserror",
871
+ ]
872
+
873
+ [[package]]
874
+ name = "gix-config"
875
+ version = "0.46.0"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "5dfb898c5b695fd4acfc3c0ab638525a65545d47706064dcf7b5ead6cdb136c0"
878
+ dependencies = [
879
+ "bstr",
880
+ "gix-config-value",
881
+ "gix-features",
882
+ "gix-glob",
883
+ "gix-path",
884
+ "gix-ref",
885
+ "gix-sec",
886
+ "memchr",
887
+ "once_cell",
888
+ "smallvec",
889
+ "thiserror",
890
+ "unicode-bom",
891
+ "winnow",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "gix-config-value"
896
+ version = "0.15.1"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "9f012703eb67e263c6c1fc96649fec47694dd3e5d2a91abfc65e4a6a6dc85309"
899
+ dependencies = [
900
+ "bitflags",
901
+ "bstr",
902
+ "gix-path",
903
+ "libc",
904
+ "thiserror",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "gix-date"
909
+ version = "0.10.5"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "996b6b90bafb287330af92b274c3e64309dc78359221d8612d11cd10c8b9fe1c"
912
+ dependencies = [
913
+ "bstr",
914
+ "itoa",
915
+ "jiff",
916
+ "smallvec",
917
+ "thiserror",
918
+ ]
919
+
920
+ [[package]]
921
+ name = "gix-diff"
922
+ version = "0.53.0"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "de854852010d44a317f30c92d67a983e691c9478c8a3fb4117c1f48626bcdea8"
925
+ dependencies = [
926
+ "bstr",
927
+ "gix-attributes",
928
+ "gix-command",
929
+ "gix-filter",
930
+ "gix-fs",
931
+ "gix-hash",
932
+ "gix-index",
933
+ "gix-object",
934
+ "gix-path",
935
+ "gix-pathspec",
936
+ "gix-tempfile",
937
+ "gix-trace",
938
+ "gix-traverse",
939
+ "gix-worktree",
940
+ "imara-diff",
941
+ "thiserror",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "gix-dir"
946
+ version = "0.15.0"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "dad34e4f373f94902df1ba1d2a1df3a1b29eacd15e316ac5972d842e31422dd7"
949
+ dependencies = [
950
+ "bstr",
951
+ "gix-discover",
952
+ "gix-fs",
953
+ "gix-ignore",
954
+ "gix-index",
955
+ "gix-object",
956
+ "gix-path",
957
+ "gix-pathspec",
958
+ "gix-trace",
959
+ "gix-utils",
960
+ "gix-worktree",
961
+ "thiserror",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "gix-discover"
966
+ version = "0.41.0"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "ffb180c91ca1a2cf53e828bb63d8d8f8fa7526f49b83b33d7f46cbeb5d79d30a"
969
+ dependencies = [
970
+ "bstr",
971
+ "dunce",
972
+ "gix-fs",
973
+ "gix-hash",
974
+ "gix-path",
975
+ "gix-ref",
976
+ "gix-sec",
977
+ "thiserror",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "gix-features"
982
+ version = "0.43.1"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "cd1543cd9b8abcbcebaa1a666a5c168ee2cda4dea50d3961ee0e6d1c42f81e5b"
985
+ dependencies = [
986
+ "crc32fast",
987
+ "crossbeam-channel",
988
+ "flate2",
989
+ "gix-path",
990
+ "gix-trace",
991
+ "gix-utils",
992
+ "libc",
993
+ "once_cell",
994
+ "parking_lot",
995
+ "prodash",
996
+ "thiserror",
997
+ "walkdir",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "gix-filter"
1002
+ version = "0.20.0"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "aa6571a3927e7ab10f64279a088e0dae08e8da05547771796d7389bbe28ad9ff"
1005
+ dependencies = [
1006
+ "bstr",
1007
+ "encoding_rs",
1008
+ "gix-attributes",
1009
+ "gix-command",
1010
+ "gix-hash",
1011
+ "gix-object",
1012
+ "gix-packetline-blocking",
1013
+ "gix-path",
1014
+ "gix-quote",
1015
+ "gix-trace",
1016
+ "gix-utils",
1017
+ "smallvec",
1018
+ "thiserror",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "gix-fs"
1023
+ version = "0.16.1"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "9a4d90307d064fa7230e0f87b03231be28f8ba63b913fc15346f489519d0c304"
1026
+ dependencies = [
1027
+ "bstr",
1028
+ "fastrand",
1029
+ "gix-features",
1030
+ "gix-path",
1031
+ "gix-utils",
1032
+ "thiserror",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "gix-glob"
1037
+ version = "0.21.0"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "b947db8366823e7a750c254f6bb29e27e17f27e457bf336ba79b32423db62cd5"
1040
+ dependencies = [
1041
+ "bitflags",
1042
+ "bstr",
1043
+ "gix-features",
1044
+ "gix-path",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "gix-hash"
1049
+ version = "0.19.0"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "251fad79796a731a2a7664d9ea95ee29a9e99474de2769e152238d4fdb69d50e"
1052
+ dependencies = [
1053
+ "faster-hex",
1054
+ "gix-features",
1055
+ "sha1-checked",
1056
+ "thiserror",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "gix-hashtable"
1061
+ version = "0.9.0"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "c35300b54896153e55d53f4180460931ccd69b7e8d2f6b9d6401122cdedc4f07"
1064
+ dependencies = [
1065
+ "gix-hash",
1066
+ "hashbrown 0.15.5",
1067
+ "parking_lot",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "gix-ignore"
1072
+ version = "0.16.0"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "564d6fddf46e2c981f571b23d6ad40cb08bddcaf6fc7458b1d49727ad23c2870"
1075
+ dependencies = [
1076
+ "bstr",
1077
+ "gix-glob",
1078
+ "gix-path",
1079
+ "gix-trace",
1080
+ "unicode-bom",
1081
+ ]
1082
+
1083
+ [[package]]
1084
+ name = "gix-index"
1085
+ version = "0.41.0"
1086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1087
+ checksum = "2af39fde3ce4ce11371d9ce826f2936ec347318f2d1972fe98c2e7134e267e25"
1088
+ dependencies = [
1089
+ "bitflags",
1090
+ "bstr",
1091
+ "filetime",
1092
+ "fnv",
1093
+ "gix-bitmap",
1094
+ "gix-features",
1095
+ "gix-fs",
1096
+ "gix-hash",
1097
+ "gix-lock",
1098
+ "gix-object",
1099
+ "gix-traverse",
1100
+ "gix-utils",
1101
+ "gix-validate",
1102
+ "hashbrown 0.15.5",
1103
+ "itoa",
1104
+ "libc",
1105
+ "memmap2",
1106
+ "rustix",
1107
+ "smallvec",
1108
+ "thiserror",
1109
+ ]
1110
+
1111
+ [[package]]
1112
+ name = "gix-lock"
1113
+ version = "18.0.0"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "b9fa71da90365668a621e184eb5b979904471af1b3b09b943a84bc50e8ad42ed"
1116
+ dependencies = [
1117
+ "gix-tempfile",
1118
+ "gix-utils",
1119
+ "thiserror",
1120
+ ]
1121
+
1122
+ [[package]]
1123
+ name = "gix-object"
1124
+ version = "0.50.2"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "d69ce108ab67b65fbd4fb7e1331502429d78baeb2eee10008bdef55765397c07"
1127
+ dependencies = [
1128
+ "bstr",
1129
+ "gix-actor",
1130
+ "gix-date",
1131
+ "gix-features",
1132
+ "gix-hash",
1133
+ "gix-hashtable",
1134
+ "gix-path",
1135
+ "gix-utils",
1136
+ "gix-validate",
1137
+ "itoa",
1138
+ "smallvec",
1139
+ "thiserror",
1140
+ "winnow",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "gix-odb"
1145
+ version = "0.70.0"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "9c9d7af10fda9df0bb4f7f9bd507963560b3c66cb15a5b825caf752e0eb109ac"
1148
+ dependencies = [
1149
+ "arc-swap",
1150
+ "gix-date",
1151
+ "gix-features",
1152
+ "gix-fs",
1153
+ "gix-hash",
1154
+ "gix-hashtable",
1155
+ "gix-object",
1156
+ "gix-pack",
1157
+ "gix-path",
1158
+ "gix-quote",
1159
+ "parking_lot",
1160
+ "tempfile",
1161
+ "thiserror",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "gix-pack"
1166
+ version = "0.60.0"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "d8571df89bfca5abb49c3e3372393f7af7e6f8b8dbe2b96303593cef5b263019"
1169
+ dependencies = [
1170
+ "clru",
1171
+ "gix-chunk",
1172
+ "gix-features",
1173
+ "gix-hash",
1174
+ "gix-hashtable",
1175
+ "gix-object",
1176
+ "gix-path",
1177
+ "memmap2",
1178
+ "smallvec",
1179
+ "thiserror",
1180
+ ]
1181
+
1182
+ [[package]]
1183
+ name = "gix-packetline"
1184
+ version = "0.19.1"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "2592fbd36249a2fea11056f7055cc376301ef38d903d157de41998335bbf1f93"
1187
+ dependencies = [
1188
+ "bstr",
1189
+ "faster-hex",
1190
+ "gix-trace",
1191
+ "thiserror",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "gix-packetline-blocking"
1196
+ version = "0.19.1"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "fc4e706f328cd494cc8f932172e123a72b9a4711b0db5e411681432a89bd4c94"
1199
+ dependencies = [
1200
+ "bstr",
1201
+ "faster-hex",
1202
+ "gix-trace",
1203
+ "thiserror",
1204
+ ]
1205
+
1206
+ [[package]]
1207
+ name = "gix-path"
1208
+ version = "0.10.20"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "06d37034a4c67bbdda76f7bcd037b2f7bc0fba0c09a6662b19697a5716e7b2fd"
1211
+ dependencies = [
1212
+ "bstr",
1213
+ "gix-trace",
1214
+ "gix-validate",
1215
+ "home",
1216
+ "once_cell",
1217
+ "thiserror",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "gix-pathspec"
1222
+ version = "0.12.0"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "daedead611c9bd1f3640dc90a9012b45f790201788af4d659f28d94071da7fba"
1225
+ dependencies = [
1226
+ "bitflags",
1227
+ "bstr",
1228
+ "gix-attributes",
1229
+ "gix-config-value",
1230
+ "gix-glob",
1231
+ "gix-path",
1232
+ "thiserror",
1233
+ ]
1234
+
1235
+ [[package]]
1236
+ name = "gix-protocol"
1237
+ version = "0.51.0"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "12b4b807c47ffcf7c1e5b8119585368a56449f3493da93b931e1d4239364e922"
1240
+ dependencies = [
1241
+ "bstr",
1242
+ "gix-date",
1243
+ "gix-features",
1244
+ "gix-hash",
1245
+ "gix-ref",
1246
+ "gix-shallow",
1247
+ "gix-transport",
1248
+ "gix-utils",
1249
+ "maybe-async",
1250
+ "thiserror",
1251
+ "winnow",
1252
+ ]
1253
+
1254
+ [[package]]
1255
+ name = "gix-quote"
1256
+ version = "0.6.0"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "4a375a75b4d663e8bafe3bf4940a18a23755644c13582fa326e99f8f987d83fd"
1259
+ dependencies = [
1260
+ "bstr",
1261
+ "gix-utils",
1262
+ "thiserror",
1263
+ ]
1264
+
1265
+ [[package]]
1266
+ name = "gix-ref"
1267
+ version = "0.53.1"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "b966f578079a42f4a51413b17bce476544cca1cf605753466669082f94721758"
1270
+ dependencies = [
1271
+ "gix-actor",
1272
+ "gix-features",
1273
+ "gix-fs",
1274
+ "gix-hash",
1275
+ "gix-lock",
1276
+ "gix-object",
1277
+ "gix-path",
1278
+ "gix-tempfile",
1279
+ "gix-utils",
1280
+ "gix-validate",
1281
+ "memmap2",
1282
+ "thiserror",
1283
+ "winnow",
1284
+ ]
1285
+
1286
+ [[package]]
1287
+ name = "gix-refspec"
1288
+ version = "0.31.0"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "7d29cae1ae31108826e7156a5e60bffacab405f4413f5bc0375e19772cce0055"
1291
+ dependencies = [
1292
+ "bstr",
1293
+ "gix-hash",
1294
+ "gix-revision",
1295
+ "gix-validate",
1296
+ "smallvec",
1297
+ "thiserror",
1298
+ ]
1299
+
1300
+ [[package]]
1301
+ name = "gix-revision"
1302
+ version = "0.35.0"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "f651f2b1742f760bb8161d6743229206e962b73d9c33c41f4e4aefa6586cbd3d"
1305
+ dependencies = [
1306
+ "bstr",
1307
+ "gix-commitgraph",
1308
+ "gix-date",
1309
+ "gix-hash",
1310
+ "gix-object",
1311
+ "gix-revwalk",
1312
+ "thiserror",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "gix-revwalk"
1317
+ version = "0.21.0"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "06e74f91709729e099af6721bd0fa7d62f243f2005085152301ca5cdd86ec02c"
1320
+ dependencies = [
1321
+ "gix-commitgraph",
1322
+ "gix-date",
1323
+ "gix-hash",
1324
+ "gix-hashtable",
1325
+ "gix-object",
1326
+ "smallvec",
1327
+ "thiserror",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "gix-sec"
1332
+ version = "0.12.0"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "09f7053ed7c66633b56c57bc6ed3377be3166eaf3dc2df9f1c5ec446df6fdf2c"
1335
+ dependencies = [
1336
+ "bitflags",
1337
+ "gix-path",
1338
+ "libc",
1339
+ "windows-sys 0.59.0",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "gix-shallow"
1344
+ version = "0.5.0"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "d936745103243ae4c510f19e0760ce73fb0f08096588fdbe0f0d7fb7ce8944b7"
1347
+ dependencies = [
1348
+ "bstr",
1349
+ "gix-hash",
1350
+ "gix-lock",
1351
+ "thiserror",
1352
+ ]
1353
+
1354
+ [[package]]
1355
+ name = "gix-status"
1356
+ version = "0.20.0"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "2a4afff9b34eeececa8bdc32b42fb318434b6b1391d9f8d45fe455af08dc2d35"
1359
+ dependencies = [
1360
+ "bstr",
1361
+ "filetime",
1362
+ "gix-diff",
1363
+ "gix-dir",
1364
+ "gix-features",
1365
+ "gix-filter",
1366
+ "gix-fs",
1367
+ "gix-hash",
1368
+ "gix-index",
1369
+ "gix-object",
1370
+ "gix-path",
1371
+ "gix-pathspec",
1372
+ "gix-worktree",
1373
+ "portable-atomic",
1374
+ "thiserror",
1375
+ ]
1376
+
1377
+ [[package]]
1378
+ name = "gix-submodule"
1379
+ version = "0.20.0"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "657cc5dd43cbc7a14d9c5aaf02cfbe9c2a15d077cded3f304adb30ef78852d3e"
1382
+ dependencies = [
1383
+ "bstr",
1384
+ "gix-config",
1385
+ "gix-path",
1386
+ "gix-pathspec",
1387
+ "gix-refspec",
1388
+ "gix-url",
1389
+ "thiserror",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "gix-tempfile"
1394
+ version = "18.0.0"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "666c0041bcdedf5fa05e9bef663c897debab24b7dc1741605742412d1d47da57"
1397
+ dependencies = [
1398
+ "dashmap",
1399
+ "gix-fs",
1400
+ "libc",
1401
+ "once_cell",
1402
+ "parking_lot",
1403
+ "tempfile",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "gix-trace"
1408
+ version = "0.1.13"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "e2ccaf54b0b1743a695b482ca0ab9d7603744d8d10b2e5d1a332fef337bee658"
1411
+
1412
+ [[package]]
1413
+ name = "gix-transport"
1414
+ version = "0.48.0"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "12f7cc0179fc89d53c54e1f9ce51229494864ab4bf136132d69db1b011741ca3"
1417
+ dependencies = [
1418
+ "bstr",
1419
+ "gix-command",
1420
+ "gix-features",
1421
+ "gix-packetline",
1422
+ "gix-quote",
1423
+ "gix-sec",
1424
+ "gix-url",
1425
+ "thiserror",
1426
+ ]
1427
+
1428
+ [[package]]
1429
+ name = "gix-traverse"
1430
+ version = "0.47.0"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "c7cdc82509d792ba0ad815f86f6b469c7afe10f94362e96c4494525a6601bdd5"
1433
+ dependencies = [
1434
+ "bitflags",
1435
+ "gix-commitgraph",
1436
+ "gix-date",
1437
+ "gix-hash",
1438
+ "gix-hashtable",
1439
+ "gix-object",
1440
+ "gix-revwalk",
1441
+ "smallvec",
1442
+ "thiserror",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "gix-url"
1447
+ version = "0.32.0"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "1b76a9d266254ad287ffd44467cd88e7868799b08f4d52e02d942b93e514d16f"
1450
+ dependencies = [
1451
+ "bstr",
1452
+ "gix-features",
1453
+ "gix-path",
1454
+ "percent-encoding",
1455
+ "thiserror",
1456
+ "url",
1457
+ ]
1458
+
1459
+ [[package]]
1460
+ name = "gix-utils"
1461
+ version = "0.3.0"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "5351af2b172caf41a3728eb4455326d84e0d70fe26fc4de74ab0bd37df4191c5"
1464
+ dependencies = [
1465
+ "bstr",
1466
+ "fastrand",
1467
+ "unicode-normalization",
1468
+ ]
1469
+
1470
+ [[package]]
1471
+ name = "gix-validate"
1472
+ version = "0.10.0"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "77b9e00cacde5b51388d28ed746c493b18a6add1f19b5e01d686b3b9ece66d4d"
1475
+ dependencies = [
1476
+ "bstr",
1477
+ "thiserror",
1478
+ ]
1479
+
1480
+ [[package]]
1481
+ name = "gix-worktree"
1482
+ version = "0.42.0"
1483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1484
+ checksum = "55f625ac9126c19bef06dbc6d2703cdd7987e21e35b497bb265ac37d383877b1"
1485
+ dependencies = [
1486
+ "bstr",
1487
+ "gix-attributes",
1488
+ "gix-features",
1489
+ "gix-fs",
1490
+ "gix-glob",
1491
+ "gix-hash",
1492
+ "gix-ignore",
1493
+ "gix-index",
1494
+ "gix-object",
1495
+ "gix-path",
1496
+ "gix-validate",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "glob"
1501
+ version = "0.3.3"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1504
+
1505
+ [[package]]
1506
+ name = "globset"
1507
+ version = "0.4.18"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
1510
+ dependencies = [
1511
+ "aho-corasick",
1512
+ "bstr",
1513
+ "log",
1514
+ "regex-automata",
1515
+ "regex-syntax",
1516
+ ]
1517
+
1518
+ [[package]]
1519
+ name = "hash32"
1520
+ version = "0.3.1"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
1523
+ dependencies = [
1524
+ "byteorder",
1525
+ ]
1526
+
1527
+ [[package]]
1528
+ name = "hashbrown"
1529
+ version = "0.14.5"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1532
+
1533
+ [[package]]
1534
+ name = "hashbrown"
1535
+ version = "0.15.5"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1538
+ dependencies = [
1539
+ "allocator-api2",
1540
+ "equivalent",
1541
+ "foldhash",
1542
+ ]
1543
+
1544
+ [[package]]
1545
+ name = "hashbrown"
1546
+ version = "0.16.0"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
1549
+
1550
+ [[package]]
1551
+ name = "heapless"
1552
+ version = "0.8.0"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
1555
+ dependencies = [
1556
+ "hash32",
1557
+ "stable_deref_trait",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "heck"
1562
+ version = "0.5.0"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1565
+
1566
+ [[package]]
1567
+ name = "home"
1568
+ version = "0.5.11"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
1571
+ dependencies = [
1572
+ "windows-sys 0.59.0",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "iana-time-zone"
1577
+ version = "0.1.64"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
1580
+ dependencies = [
1581
+ "android_system_properties",
1582
+ "core-foundation-sys",
1583
+ "iana-time-zone-haiku",
1584
+ "js-sys",
1585
+ "log",
1586
+ "wasm-bindgen",
1587
+ "windows-core",
1588
+ ]
1589
+
1590
+ [[package]]
1591
+ name = "iana-time-zone-haiku"
1592
+ version = "0.1.2"
1593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1595
+ dependencies = [
1596
+ "cc",
1597
+ ]
1598
+
1599
+ [[package]]
1600
+ name = "icu_collections"
1601
+ version = "2.0.0"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
1604
+ dependencies = [
1605
+ "displaydoc",
1606
+ "potential_utf",
1607
+ "yoke",
1608
+ "zerofrom",
1609
+ "zerovec",
1610
+ ]
1611
+
1612
+ [[package]]
1613
+ name = "icu_locale_core"
1614
+ version = "2.0.0"
1615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1616
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1617
+ dependencies = [
1618
+ "displaydoc",
1619
+ "litemap",
1620
+ "tinystr",
1621
+ "writeable",
1622
+ "zerovec",
1623
+ ]
1624
+
1625
+ [[package]]
1626
+ name = "icu_normalizer"
1627
+ version = "2.0.0"
1628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1630
+ dependencies = [
1631
+ "displaydoc",
1632
+ "icu_collections",
1633
+ "icu_normalizer_data",
1634
+ "icu_properties",
1635
+ "icu_provider",
1636
+ "smallvec",
1637
+ "zerovec",
1638
+ ]
1639
+
1640
+ [[package]]
1641
+ name = "icu_normalizer_data"
1642
+ version = "2.0.0"
1643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1644
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1645
+
1646
+ [[package]]
1647
+ name = "icu_properties"
1648
+ version = "2.0.1"
1649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1650
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1651
+ dependencies = [
1652
+ "displaydoc",
1653
+ "icu_collections",
1654
+ "icu_locale_core",
1655
+ "icu_properties_data",
1656
+ "icu_provider",
1657
+ "potential_utf",
1658
+ "zerotrie",
1659
+ "zerovec",
1660
+ ]
1661
+
1662
+ [[package]]
1663
+ name = "icu_properties_data"
1664
+ version = "2.0.1"
1665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1667
+
1668
+ [[package]]
1669
+ name = "icu_provider"
1670
+ version = "2.0.0"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1673
+ dependencies = [
1674
+ "displaydoc",
1675
+ "icu_locale_core",
1676
+ "stable_deref_trait",
1677
+ "tinystr",
1678
+ "writeable",
1679
+ "yoke",
1680
+ "zerofrom",
1681
+ "zerotrie",
1682
+ "zerovec",
1683
+ ]
1684
+
1685
+ [[package]]
1686
+ name = "idna"
1687
+ version = "1.1.0"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1690
+ dependencies = [
1691
+ "idna_adapter",
1692
+ "smallvec",
1693
+ "utf8_iter",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "idna_adapter"
1698
+ version = "1.2.1"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1701
+ dependencies = [
1702
+ "icu_normalizer",
1703
+ "icu_properties",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "ignore"
1708
+ version = "0.4.25"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
1711
+ dependencies = [
1712
+ "crossbeam-deque",
1713
+ "globset",
1714
+ "log",
1715
+ "memchr",
1716
+ "regex-automata",
1717
+ "same-file",
1718
+ "walkdir",
1719
+ "winapi-util",
1720
+ ]
1721
+
1722
+ [[package]]
1723
+ name = "imara-diff"
1724
+ version = "0.1.8"
1725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1726
+ checksum = "17d34b7d42178945f775e84bc4c36dde7c1c6cdfea656d3354d009056f2bb3d2"
1727
+ dependencies = [
1728
+ "hashbrown 0.15.5",
1729
+ ]
1730
+
1731
+ [[package]]
1732
+ name = "indexmap"
1733
+ version = "2.11.4"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5"
1736
+ dependencies = [
1737
+ "equivalent",
1738
+ "hashbrown 0.16.0",
1739
+ "serde",
1740
+ "serde_core",
1741
+ ]
1742
+
1743
+ [[package]]
1744
+ name = "inquire"
1745
+ version = "0.9.1"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "2628910d0114e9139056161d8644a2026be7b117f8498943f9437748b04c9e0a"
1748
+ dependencies = [
1749
+ "bitflags",
1750
+ "crossterm",
1751
+ "dyn-clone",
1752
+ "fuzzy-matcher",
1753
+ "unicode-segmentation",
1754
+ "unicode-width",
1755
+ ]
1756
+
1757
+ [[package]]
1758
+ name = "is_terminal_polyfill"
1759
+ version = "1.70.1"
1760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1761
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1762
+
1763
+ [[package]]
1764
+ name = "itoa"
1765
+ version = "1.0.15"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1768
+
1769
+ [[package]]
1770
+ name = "jiff"
1771
+ version = "0.2.15"
1772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+ checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"
1774
+ dependencies = [
1775
+ "jiff-static",
1776
+ "jiff-tzdb-platform",
1777
+ "log",
1778
+ "portable-atomic",
1779
+ "portable-atomic-util",
1780
+ "serde",
1781
+ "windows-sys 0.59.0",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "jiff-static"
1786
+ version = "0.2.15"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"
1789
+ dependencies = [
1790
+ "proc-macro2",
1791
+ "quote",
1792
+ "syn",
1793
+ ]
1794
+
1795
+ [[package]]
1796
+ name = "jiff-tzdb"
1797
+ version = "0.1.4"
1798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1799
+ checksum = "c1283705eb0a21404d2bfd6eef2a7593d240bc42a0bdb39db0ad6fa2ec026524"
1800
+
1801
+ [[package]]
1802
+ name = "jiff-tzdb-platform"
1803
+ version = "0.1.3"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
1806
+ dependencies = [
1807
+ "jiff-tzdb",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "js-sys"
1812
+ version = "0.3.81"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305"
1815
+ dependencies = [
1816
+ "once_cell",
1817
+ "wasm-bindgen",
1818
+ ]
1819
+
1820
+ [[package]]
1821
+ name = "kstring"
1822
+ version = "2.0.2"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "558bf9508a558512042d3095138b1f7b8fe90c5467d94f9f1da28b3731c5dbd1"
1825
+ dependencies = [
1826
+ "static_assertions",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "libc"
1831
+ version = "0.2.177"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
1834
+
1835
+ [[package]]
1836
+ name = "libloading"
1837
+ version = "0.8.9"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1840
+ dependencies = [
1841
+ "cfg-if",
1842
+ "windows-link",
1843
+ ]
1844
+
1845
+ [[package]]
1846
+ name = "libredox"
1847
+ version = "0.1.10"
1848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1849
+ checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
1850
+ dependencies = [
1851
+ "bitflags",
1852
+ "libc",
1853
+ "redox_syscall",
1854
+ ]
1855
+
1856
+ [[package]]
1857
+ name = "libz-rs-sys"
1858
+ version = "0.5.2"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd"
1861
+ dependencies = [
1862
+ "zlib-rs",
1863
+ ]
1864
+
1865
+ [[package]]
1866
+ name = "line-index"
1867
+ version = "0.1.2"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "3e27e0ed5a392a7f5ba0b3808a2afccff16c64933312c84b57618b49d1209bd2"
1870
+ dependencies = [
1871
+ "nohash-hasher",
1872
+ "text-size",
1873
+ ]
1874
+
1875
+ [[package]]
1876
+ name = "linux-raw-sys"
1877
+ version = "0.11.0"
1878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1879
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1880
+
1881
+ [[package]]
1882
+ name = "litemap"
1883
+ version = "0.8.0"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1886
+
1887
+ [[package]]
1888
+ name = "litrs"
1889
+ version = "0.4.2"
1890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1891
+ checksum = "f5e54036fe321fd421e10d732f155734c4e4afd610dd556d9a82833ab3ee0bed"
1892
+
1893
+ [[package]]
1894
+ name = "lock_api"
1895
+ version = "0.4.14"
1896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1897
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1898
+ dependencies = [
1899
+ "scopeguard",
1900
+ ]
1901
+
1902
+ [[package]]
1903
+ name = "log"
1904
+ version = "0.4.28"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
1907
+
1908
+ [[package]]
1909
+ name = "maybe-async"
1910
+ version = "0.2.10"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "5cf92c10c7e361d6b99666ec1c6f9805b0bea2c3bd8c78dc6fe98ac5bd78db11"
1913
+ dependencies = [
1914
+ "proc-macro2",
1915
+ "quote",
1916
+ "syn",
1917
+ ]
1918
+
1919
+ [[package]]
1920
+ name = "memchr"
1921
+ version = "2.7.6"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1924
+
1925
+ [[package]]
1926
+ name = "memmap2"
1927
+ version = "0.9.8"
1928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1929
+ checksum = "843a98750cd611cc2965a8213b53b43e715f13c37a9e096c6408e69990961db7"
1930
+ dependencies = [
1931
+ "libc",
1932
+ ]
1933
+
1934
+ [[package]]
1935
+ name = "miniz_oxide"
1936
+ version = "0.8.9"
1937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1939
+ dependencies = [
1940
+ "adler2",
1941
+ "simd-adler32",
1942
+ ]
1943
+
1944
+ [[package]]
1945
+ name = "mio"
1946
+ version = "1.0.4"
1947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1948
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
1949
+ dependencies = [
1950
+ "libc",
1951
+ "log",
1952
+ "wasi 0.11.1+wasi-snapshot-preview1",
1953
+ "windows-sys 0.59.0",
1954
+ ]
1955
+
1956
+ [[package]]
1957
+ name = "nanoid"
1958
+ version = "0.4.0"
1959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1960
+ checksum = "3ffa00dec017b5b1a8b7cf5e2c008bfda1aa7e0697ac1508b491fdf2622fb4d8"
1961
+ dependencies = [
1962
+ "rand",
1963
+ ]
1964
+
1965
+ [[package]]
1966
+ name = "napi"
1967
+ version = "3.3.0"
1968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1969
+ checksum = "f1b74e3dce5230795bb4d2821b941706dee733c7308752507254b0497f39cad7"
1970
+ dependencies = [
1971
+ "bitflags",
1972
+ "ctor",
1973
+ "napi-build",
1974
+ "napi-sys",
1975
+ "nohash-hasher",
1976
+ "rustc-hash",
1977
+ "tokio",
1978
+ ]
1979
+
1980
+ [[package]]
1981
+ name = "napi-build"
1982
+ version = "2.2.3"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "dcae8ad5609d14afb3a3b91dee88c757016261b151e9dcecabf1b2a31a6cab14"
1985
+
1986
+ [[package]]
1987
+ name = "napi-derive"
1988
+ version = "3.2.5"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "7552d5a579b834614bbd496db5109f1b9f1c758f08224b0dee1e408333adf0d0"
1991
+ dependencies = [
1992
+ "convert_case 0.8.0",
1993
+ "ctor",
1994
+ "napi-derive-backend",
1995
+ "proc-macro2",
1996
+ "quote",
1997
+ "syn",
1998
+ ]
1999
+
2000
+ [[package]]
2001
+ name = "napi-derive-backend"
2002
+ version = "2.2.0"
2003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2004
+ checksum = "5f6a81ac7486b70f2532a289603340862c06eea5a1e650c1ffeda2ce1238516a"
2005
+ dependencies = [
2006
+ "convert_case 0.8.0",
2007
+ "proc-macro2",
2008
+ "quote",
2009
+ "semver",
2010
+ "syn",
2011
+ ]
2012
+
2013
+ [[package]]
2014
+ name = "napi-sys"
2015
+ version = "3.0.0"
2016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2017
+ checksum = "3e4e7135a8f97aa0f1509cce21a8a1f9dcec1b50d8dee006b48a5adb69a9d64d"
2018
+ dependencies = [
2019
+ "libloading",
2020
+ ]
2021
+
2022
+ [[package]]
2023
+ name = "node"
2024
+ version = "0.1.1"
2025
+ dependencies = [
2026
+ "anyhow",
2027
+ "async-trait",
2028
+ "changepacks-core",
2029
+ "serde",
2030
+ "serde_json",
2031
+ "tokio",
2032
+ "utils",
2033
+ ]
2034
+
2035
+ [[package]]
2036
+ name = "node-cli"
2037
+ version = "0.1.1"
2038
+ dependencies = [
2039
+ "cli",
2040
+ "napi",
2041
+ "napi-build",
2042
+ "napi-derive",
2043
+ "tokio",
2044
+ ]
2045
+
2046
+ [[package]]
2047
+ name = "nohash-hasher"
2048
+ version = "0.2.0"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
2051
+
2052
+ [[package]]
2053
+ name = "num-traits"
2054
+ version = "0.2.19"
2055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2056
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2057
+ dependencies = [
2058
+ "autocfg",
2059
+ ]
2060
+
2061
+ [[package]]
2062
+ name = "once_cell"
2063
+ version = "1.21.3"
2064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2065
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2066
+
2067
+ [[package]]
2068
+ name = "once_cell_polyfill"
2069
+ version = "1.70.1"
2070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2071
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
2072
+
2073
+ [[package]]
2074
+ name = "parking_lot"
2075
+ version = "0.12.5"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2078
+ dependencies = [
2079
+ "lock_api",
2080
+ "parking_lot_core",
2081
+ ]
2082
+
2083
+ [[package]]
2084
+ name = "parking_lot_core"
2085
+ version = "0.9.12"
2086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2087
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2088
+ dependencies = [
2089
+ "cfg-if",
2090
+ "libc",
2091
+ "redox_syscall",
2092
+ "smallvec",
2093
+ "windows-link",
2094
+ ]
2095
+
2096
+ [[package]]
2097
+ name = "percent-encoding"
2098
+ version = "2.3.2"
2099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2100
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2101
+
2102
+ [[package]]
2103
+ name = "pin-project-lite"
2104
+ version = "0.2.16"
2105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2106
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2107
+
2108
+ [[package]]
2109
+ name = "pin-utils"
2110
+ version = "0.1.0"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2113
+
2114
+ [[package]]
2115
+ name = "portable-atomic"
2116
+ version = "1.11.1"
2117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2118
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2119
+
2120
+ [[package]]
2121
+ name = "portable-atomic-util"
2122
+ version = "0.2.4"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
2125
+ dependencies = [
2126
+ "portable-atomic",
2127
+ ]
2128
+
2129
+ [[package]]
2130
+ name = "potential_utf"
2131
+ version = "0.1.3"
2132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2133
+ checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
2134
+ dependencies = [
2135
+ "zerovec",
2136
+ ]
2137
+
2138
+ [[package]]
2139
+ name = "ppv-lite86"
2140
+ version = "0.2.21"
2141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2143
+ dependencies = [
2144
+ "zerocopy",
2145
+ ]
2146
+
2147
+ [[package]]
2148
+ name = "proc-macro-crate"
2149
+ version = "3.4.0"
2150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2151
+ checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
2152
+ dependencies = [
2153
+ "toml_edit",
2154
+ ]
2155
+
2156
+ [[package]]
2157
+ name = "proc-macro2"
2158
+ version = "1.0.101"
2159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2160
+ checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
2161
+ dependencies = [
2162
+ "unicode-ident",
2163
+ ]
2164
+
2165
+ [[package]]
2166
+ name = "prodash"
2167
+ version = "30.0.1"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "5a6efc566849d3d9d737c5cb06cc50e48950ebe3d3f9d70631490fff3a07b139"
2170
+ dependencies = [
2171
+ "parking_lot",
2172
+ ]
2173
+
2174
+ [[package]]
2175
+ name = "python"
2176
+ version = "0.1.1"
2177
+ dependencies = [
2178
+ "anyhow",
2179
+ "async-trait",
2180
+ "changepacks-core",
2181
+ "tokio",
2182
+ "toml",
2183
+ "toml_edit",
2184
+ "utils",
2185
+ ]
2186
+
2187
+ [[package]]
2188
+ name = "python-cli"
2189
+ version = "0.1.1"
2190
+ dependencies = [
2191
+ "anyhow",
2192
+ "cc",
2193
+ "cli",
2194
+ "tokio",
2195
+ ]
2196
+
2197
+ [[package]]
2198
+ name = "quote"
2199
+ version = "1.0.41"
2200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2201
+ checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
2202
+ dependencies = [
2203
+ "proc-macro2",
2204
+ ]
2205
+
2206
+ [[package]]
2207
+ name = "r-efi"
2208
+ version = "5.3.0"
2209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2210
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2211
+
2212
+ [[package]]
2213
+ name = "rand"
2214
+ version = "0.8.5"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2217
+ dependencies = [
2218
+ "libc",
2219
+ "rand_chacha",
2220
+ "rand_core",
2221
+ ]
2222
+
2223
+ [[package]]
2224
+ name = "rand_chacha"
2225
+ version = "0.3.1"
2226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2227
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2228
+ dependencies = [
2229
+ "ppv-lite86",
2230
+ "rand_core",
2231
+ ]
2232
+
2233
+ [[package]]
2234
+ name = "rand_core"
2235
+ version = "0.6.4"
2236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2237
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2238
+ dependencies = [
2239
+ "getrandom 0.2.16",
2240
+ ]
2241
+
2242
+ [[package]]
2243
+ name = "redox_syscall"
2244
+ version = "0.5.18"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2247
+ dependencies = [
2248
+ "bitflags",
2249
+ ]
2250
+
2251
+ [[package]]
2252
+ name = "regex"
2253
+ version = "1.12.2"
2254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2255
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
2256
+ dependencies = [
2257
+ "aho-corasick",
2258
+ "memchr",
2259
+ "regex-automata",
2260
+ "regex-syntax",
2261
+ ]
2262
+
2263
+ [[package]]
2264
+ name = "regex-automata"
2265
+ version = "0.4.13"
2266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2267
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
2268
+ dependencies = [
2269
+ "aho-corasick",
2270
+ "memchr",
2271
+ "regex-syntax",
2272
+ ]
2273
+
2274
+ [[package]]
2275
+ name = "regex-syntax"
2276
+ version = "0.8.7"
2277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2278
+ checksum = "c3160422bbd54dd5ecfdca71e5fd59b7b8fe2b1697ab2baf64f6d05dcc66d298"
2279
+
2280
+ [[package]]
2281
+ name = "relative-path"
2282
+ version = "1.9.3"
2283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284
+ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
2285
+
2286
+ [[package]]
2287
+ name = "rstest"
2288
+ version = "0.26.1"
2289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2290
+ checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49"
2291
+ dependencies = [
2292
+ "futures-timer",
2293
+ "futures-util",
2294
+ "rstest_macros",
2295
+ ]
2296
+
2297
+ [[package]]
2298
+ name = "rstest_macros"
2299
+ version = "0.26.1"
2300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2301
+ checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0"
2302
+ dependencies = [
2303
+ "cfg-if",
2304
+ "glob",
2305
+ "proc-macro-crate",
2306
+ "proc-macro2",
2307
+ "quote",
2308
+ "regex",
2309
+ "relative-path",
2310
+ "rustc_version",
2311
+ "syn",
2312
+ "unicode-ident",
2313
+ ]
2314
+
2315
+ [[package]]
2316
+ name = "rust"
2317
+ version = "0.1.1"
2318
+ dependencies = [
2319
+ "anyhow",
2320
+ "async-trait",
2321
+ "changepacks-core",
2322
+ "tokio",
2323
+ "toml",
2324
+ "toml_edit",
2325
+ "utils",
2326
+ ]
2327
+
2328
+ [[package]]
2329
+ name = "rustc-hash"
2330
+ version = "2.1.1"
2331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2332
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2333
+
2334
+ [[package]]
2335
+ name = "rustc_version"
2336
+ version = "0.4.1"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2339
+ dependencies = [
2340
+ "semver",
2341
+ ]
2342
+
2343
+ [[package]]
2344
+ name = "rustix"
2345
+ version = "1.1.2"
2346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2347
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
2348
+ dependencies = [
2349
+ "bitflags",
2350
+ "errno",
2351
+ "libc",
2352
+ "linux-raw-sys",
2353
+ "windows-sys 0.61.2",
2354
+ ]
2355
+
2356
+ [[package]]
2357
+ name = "rustversion"
2358
+ version = "1.0.22"
2359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2360
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2361
+
2362
+ [[package]]
2363
+ name = "ryu"
2364
+ version = "1.0.20"
2365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2366
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2367
+
2368
+ [[package]]
2369
+ name = "same-file"
2370
+ version = "1.0.6"
2371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2372
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2373
+ dependencies = [
2374
+ "winapi-util",
2375
+ ]
2376
+
2377
+ [[package]]
2378
+ name = "scopeguard"
2379
+ version = "1.2.0"
2380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2381
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2382
+
2383
+ [[package]]
2384
+ name = "self_cell"
2385
+ version = "1.2.1"
2386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2387
+ checksum = "16c2f82143577edb4921b71ede051dac62ca3c16084e918bf7b40c96ae10eb33"
2388
+
2389
+ [[package]]
2390
+ name = "semver"
2391
+ version = "1.0.27"
2392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2393
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2394
+
2395
+ [[package]]
2396
+ name = "serde"
2397
+ version = "1.0.228"
2398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2399
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2400
+ dependencies = [
2401
+ "serde_core",
2402
+ "serde_derive",
2403
+ ]
2404
+
2405
+ [[package]]
2406
+ name = "serde_core"
2407
+ version = "1.0.228"
2408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2409
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2410
+ dependencies = [
2411
+ "serde_derive",
2412
+ ]
2413
+
2414
+ [[package]]
2415
+ name = "serde_derive"
2416
+ version = "1.0.228"
2417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2418
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2419
+ dependencies = [
2420
+ "proc-macro2",
2421
+ "quote",
2422
+ "syn",
2423
+ ]
2424
+
2425
+ [[package]]
2426
+ name = "serde_json"
2427
+ version = "1.0.145"
2428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2429
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
2430
+ dependencies = [
2431
+ "indexmap",
2432
+ "itoa",
2433
+ "memchr",
2434
+ "ryu",
2435
+ "serde",
2436
+ "serde_core",
2437
+ ]
2438
+
2439
+ [[package]]
2440
+ name = "serde_spanned"
2441
+ version = "1.0.3"
2442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2443
+ checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
2444
+ dependencies = [
2445
+ "serde_core",
2446
+ ]
2447
+
2448
+ [[package]]
2449
+ name = "serde_yaml"
2450
+ version = "0.9.34+deprecated"
2451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2452
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
2453
+ dependencies = [
2454
+ "indexmap",
2455
+ "itoa",
2456
+ "ryu",
2457
+ "serde",
2458
+ "unsafe-libyaml",
2459
+ ]
2460
+
2461
+ [[package]]
2462
+ name = "sha1"
2463
+ version = "0.10.6"
2464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2465
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2466
+ dependencies = [
2467
+ "cfg-if",
2468
+ "cpufeatures",
2469
+ "digest",
2470
+ ]
2471
+
2472
+ [[package]]
2473
+ name = "sha1-checked"
2474
+ version = "0.10.0"
2475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2476
+ checksum = "89f599ac0c323ebb1c6082821a54962b839832b03984598375bff3975b804423"
2477
+ dependencies = [
2478
+ "digest",
2479
+ "sha1",
2480
+ ]
2481
+
2482
+ [[package]]
2483
+ name = "shell-words"
2484
+ version = "1.1.0"
2485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2486
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
2487
+
2488
+ [[package]]
2489
+ name = "shlex"
2490
+ version = "1.3.0"
2491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2492
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2493
+
2494
+ [[package]]
2495
+ name = "signal-hook"
2496
+ version = "0.3.18"
2497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2498
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
2499
+ dependencies = [
2500
+ "libc",
2501
+ "signal-hook-registry",
2502
+ ]
2503
+
2504
+ [[package]]
2505
+ name = "signal-hook-mio"
2506
+ version = "0.2.4"
2507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2508
+ checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd"
2509
+ dependencies = [
2510
+ "libc",
2511
+ "mio",
2512
+ "signal-hook",
2513
+ ]
2514
+
2515
+ [[package]]
2516
+ name = "signal-hook-registry"
2517
+ version = "1.4.6"
2518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2519
+ checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
2520
+ dependencies = [
2521
+ "libc",
2522
+ ]
2523
+
2524
+ [[package]]
2525
+ name = "simd-adler32"
2526
+ version = "0.3.7"
2527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2528
+ checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
2529
+
2530
+ [[package]]
2531
+ name = "slab"
2532
+ version = "0.4.11"
2533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2534
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
2535
+
2536
+ [[package]]
2537
+ name = "smallvec"
2538
+ version = "1.15.1"
2539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2540
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2541
+
2542
+ [[package]]
2543
+ name = "stable_deref_trait"
2544
+ version = "1.2.1"
2545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2546
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2547
+
2548
+ [[package]]
2549
+ name = "static_assertions"
2550
+ version = "1.1.0"
2551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2552
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2553
+
2554
+ [[package]]
2555
+ name = "streaming-iterator"
2556
+ version = "0.1.9"
2557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2558
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
2559
+
2560
+ [[package]]
2561
+ name = "strsim"
2562
+ version = "0.11.1"
2563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2564
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2565
+
2566
+ [[package]]
2567
+ name = "subfeature"
2568
+ version = "0.0.4"
2569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2570
+ checksum = "46cafa37a988fbf02105b92826360798f64d97378034f09bafabc8fd6ad0a13a"
2571
+ dependencies = [
2572
+ "memchr",
2573
+ "regex",
2574
+ "serde",
2575
+ ]
2576
+
2577
+ [[package]]
2578
+ name = "syn"
2579
+ version = "2.0.106"
2580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2581
+ checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
2582
+ dependencies = [
2583
+ "proc-macro2",
2584
+ "quote",
2585
+ "unicode-ident",
2586
+ ]
2587
+
2588
+ [[package]]
2589
+ name = "synstructure"
2590
+ version = "0.13.2"
2591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2592
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2593
+ dependencies = [
2594
+ "proc-macro2",
2595
+ "quote",
2596
+ "syn",
2597
+ ]
2598
+
2599
+ [[package]]
2600
+ name = "tempfile"
2601
+ version = "3.23.0"
2602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2603
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
2604
+ dependencies = [
2605
+ "fastrand",
2606
+ "getrandom 0.3.3",
2607
+ "once_cell",
2608
+ "rustix",
2609
+ "windows-sys 0.61.2",
2610
+ ]
2611
+
2612
+ [[package]]
2613
+ name = "text-size"
2614
+ version = "1.1.1"
2615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2616
+ checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
2617
+
2618
+ [[package]]
2619
+ name = "thiserror"
2620
+ version = "2.0.17"
2621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2622
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
2623
+ dependencies = [
2624
+ "thiserror-impl",
2625
+ ]
2626
+
2627
+ [[package]]
2628
+ name = "thiserror-impl"
2629
+ version = "2.0.17"
2630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2631
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
2632
+ dependencies = [
2633
+ "proc-macro2",
2634
+ "quote",
2635
+ "syn",
2636
+ ]
2637
+
2638
+ [[package]]
2639
+ name = "thread_local"
2640
+ version = "1.1.9"
2641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2642
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2643
+ dependencies = [
2644
+ "cfg-if",
2645
+ ]
2646
+
2647
+ [[package]]
2648
+ name = "tinystr"
2649
+ version = "0.8.1"
2650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2651
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
2652
+ dependencies = [
2653
+ "displaydoc",
2654
+ "zerovec",
2655
+ ]
2656
+
2657
+ [[package]]
2658
+ name = "tinyvec"
2659
+ version = "1.10.0"
2660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2661
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
2662
+ dependencies = [
2663
+ "tinyvec_macros",
2664
+ ]
2665
+
2666
+ [[package]]
2667
+ name = "tinyvec_macros"
2668
+ version = "0.1.1"
2669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2670
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2671
+
2672
+ [[package]]
2673
+ name = "tokio"
2674
+ version = "1.48.0"
2675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2676
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
2677
+ dependencies = [
2678
+ "pin-project-lite",
2679
+ "tokio-macros",
2680
+ ]
2681
+
2682
+ [[package]]
2683
+ name = "tokio-macros"
2684
+ version = "2.6.0"
2685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2686
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
2687
+ dependencies = [
2688
+ "proc-macro2",
2689
+ "quote",
2690
+ "syn",
2691
+ ]
2692
+
2693
+ [[package]]
2694
+ name = "toml"
2695
+ version = "0.9.8"
2696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2697
+ checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
2698
+ dependencies = [
2699
+ "indexmap",
2700
+ "serde_core",
2701
+ "serde_spanned",
2702
+ "toml_datetime",
2703
+ "toml_parser",
2704
+ "toml_writer",
2705
+ "winnow",
2706
+ ]
2707
+
2708
+ [[package]]
2709
+ name = "toml_datetime"
2710
+ version = "0.7.3"
2711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2712
+ checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
2713
+ dependencies = [
2714
+ "serde_core",
2715
+ ]
2716
+
2717
+ [[package]]
2718
+ name = "toml_edit"
2719
+ version = "0.23.7"
2720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2721
+ checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d"
2722
+ dependencies = [
2723
+ "indexmap",
2724
+ "toml_datetime",
2725
+ "toml_parser",
2726
+ "toml_writer",
2727
+ "winnow",
2728
+ ]
2729
+
2730
+ [[package]]
2731
+ name = "toml_parser"
2732
+ version = "1.0.4"
2733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2734
+ checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
2735
+ dependencies = [
2736
+ "winnow",
2737
+ ]
2738
+
2739
+ [[package]]
2740
+ name = "toml_writer"
2741
+ version = "1.0.4"
2742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2743
+ checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
2744
+
2745
+ [[package]]
2746
+ name = "tree-sitter"
2747
+ version = "0.25.10"
2748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2749
+ checksum = "78f873475d258561b06f1c595d93308a7ed124d9977cb26b148c2084a4a3cc87"
2750
+ dependencies = [
2751
+ "cc",
2752
+ "regex",
2753
+ "regex-syntax",
2754
+ "serde_json",
2755
+ "streaming-iterator",
2756
+ "tree-sitter-language",
2757
+ ]
2758
+
2759
+ [[package]]
2760
+ name = "tree-sitter-iter"
2761
+ version = "0.0.2"
2762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2763
+ checksum = "ebca76d4df0f303da3db67246229d0c6f39fcd7516021ef8a110e0db7b8913a0"
2764
+ dependencies = [
2765
+ "tree-sitter",
2766
+ ]
2767
+
2768
+ [[package]]
2769
+ name = "tree-sitter-language"
2770
+ version = "0.1.5"
2771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2772
+ checksum = "c4013970217383f67b18aef68f6fb2e8d409bc5755227092d32efb0422ba24b8"
2773
+
2774
+ [[package]]
2775
+ name = "tree-sitter-yaml"
2776
+ version = "0.7.2"
2777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2778
+ checksum = "53c223db85f05e34794f065454843b0668ebc15d240ada63e2b5939f43ce7c97"
2779
+ dependencies = [
2780
+ "cc",
2781
+ "tree-sitter-language",
2782
+ ]
2783
+
2784
+ [[package]]
2785
+ name = "typenum"
2786
+ version = "1.19.0"
2787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2788
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2789
+
2790
+ [[package]]
2791
+ name = "unicode-bom"
2792
+ version = "2.0.3"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "7eec5d1121208364f6793f7d2e222bf75a915c19557537745b195b253dd64217"
2795
+
2796
+ [[package]]
2797
+ name = "unicode-ident"
2798
+ version = "1.0.19"
2799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2800
+ checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
2801
+
2802
+ [[package]]
2803
+ name = "unicode-normalization"
2804
+ version = "0.1.24"
2805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2806
+ checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
2807
+ dependencies = [
2808
+ "tinyvec",
2809
+ ]
2810
+
2811
+ [[package]]
2812
+ name = "unicode-segmentation"
2813
+ version = "1.12.0"
2814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2815
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
2816
+
2817
+ [[package]]
2818
+ name = "unicode-width"
2819
+ version = "0.2.2"
2820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2821
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2822
+
2823
+ [[package]]
2824
+ name = "unsafe-libyaml"
2825
+ version = "0.2.11"
2826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2827
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
2828
+
2829
+ [[package]]
2830
+ name = "url"
2831
+ version = "2.5.7"
2832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2833
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
2834
+ dependencies = [
2835
+ "form_urlencoded",
2836
+ "idna",
2837
+ "percent-encoding",
2838
+ "serde",
2839
+ ]
2840
+
2841
+ [[package]]
2842
+ name = "utf8_iter"
2843
+ version = "1.0.4"
2844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2845
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2846
+
2847
+ [[package]]
2848
+ name = "utf8parse"
2849
+ version = "0.2.2"
2850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2851
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2852
+
2853
+ [[package]]
2854
+ name = "utils"
2855
+ version = "0.1.1"
2856
+ dependencies = [
2857
+ "anyhow",
2858
+ "changepacks-core",
2859
+ "colored",
2860
+ "futures",
2861
+ "gix",
2862
+ "ignore",
2863
+ "rstest",
2864
+ "serde_json",
2865
+ "tempfile",
2866
+ "tokio",
2867
+ ]
2868
+
2869
+ [[package]]
2870
+ name = "version_check"
2871
+ version = "0.9.5"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2874
+
2875
+ [[package]]
2876
+ name = "walkdir"
2877
+ version = "2.5.0"
2878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2879
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2880
+ dependencies = [
2881
+ "same-file",
2882
+ "winapi-util",
2883
+ ]
2884
+
2885
+ [[package]]
2886
+ name = "wasi"
2887
+ version = "0.11.1+wasi-snapshot-preview1"
2888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2889
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2890
+
2891
+ [[package]]
2892
+ name = "wasi"
2893
+ version = "0.14.7+wasi-0.2.4"
2894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2895
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
2896
+ dependencies = [
2897
+ "wasip2",
2898
+ ]
2899
+
2900
+ [[package]]
2901
+ name = "wasip2"
2902
+ version = "1.0.1+wasi-0.2.4"
2903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2904
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
2905
+ dependencies = [
2906
+ "wit-bindgen",
2907
+ ]
2908
+
2909
+ [[package]]
2910
+ name = "wasm-bindgen"
2911
+ version = "0.2.104"
2912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2913
+ checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d"
2914
+ dependencies = [
2915
+ "cfg-if",
2916
+ "once_cell",
2917
+ "rustversion",
2918
+ "wasm-bindgen-macro",
2919
+ "wasm-bindgen-shared",
2920
+ ]
2921
+
2922
+ [[package]]
2923
+ name = "wasm-bindgen-backend"
2924
+ version = "0.2.104"
2925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2926
+ checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19"
2927
+ dependencies = [
2928
+ "bumpalo",
2929
+ "log",
2930
+ "proc-macro2",
2931
+ "quote",
2932
+ "syn",
2933
+ "wasm-bindgen-shared",
2934
+ ]
2935
+
2936
+ [[package]]
2937
+ name = "wasm-bindgen-macro"
2938
+ version = "0.2.104"
2939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2940
+ checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119"
2941
+ dependencies = [
2942
+ "quote",
2943
+ "wasm-bindgen-macro-support",
2944
+ ]
2945
+
2946
+ [[package]]
2947
+ name = "wasm-bindgen-macro-support"
2948
+ version = "0.2.104"
2949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2950
+ checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7"
2951
+ dependencies = [
2952
+ "proc-macro2",
2953
+ "quote",
2954
+ "syn",
2955
+ "wasm-bindgen-backend",
2956
+ "wasm-bindgen-shared",
2957
+ ]
2958
+
2959
+ [[package]]
2960
+ name = "wasm-bindgen-shared"
2961
+ version = "0.2.104"
2962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2963
+ checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1"
2964
+ dependencies = [
2965
+ "unicode-ident",
2966
+ ]
2967
+
2968
+ [[package]]
2969
+ name = "winapi"
2970
+ version = "0.3.9"
2971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2972
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2973
+ dependencies = [
2974
+ "winapi-i686-pc-windows-gnu",
2975
+ "winapi-x86_64-pc-windows-gnu",
2976
+ ]
2977
+
2978
+ [[package]]
2979
+ name = "winapi-i686-pc-windows-gnu"
2980
+ version = "0.4.0"
2981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2982
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2983
+
2984
+ [[package]]
2985
+ name = "winapi-util"
2986
+ version = "0.1.11"
2987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2989
+ dependencies = [
2990
+ "windows-sys 0.61.2",
2991
+ ]
2992
+
2993
+ [[package]]
2994
+ name = "winapi-x86_64-pc-windows-gnu"
2995
+ version = "0.4.0"
2996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2997
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2998
+
2999
+ [[package]]
3000
+ name = "windows-core"
3001
+ version = "0.62.2"
3002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3003
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3004
+ dependencies = [
3005
+ "windows-implement",
3006
+ "windows-interface",
3007
+ "windows-link",
3008
+ "windows-result",
3009
+ "windows-strings",
3010
+ ]
3011
+
3012
+ [[package]]
3013
+ name = "windows-implement"
3014
+ version = "0.60.2"
3015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3016
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3017
+ dependencies = [
3018
+ "proc-macro2",
3019
+ "quote",
3020
+ "syn",
3021
+ ]
3022
+
3023
+ [[package]]
3024
+ name = "windows-interface"
3025
+ version = "0.59.3"
3026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3027
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3028
+ dependencies = [
3029
+ "proc-macro2",
3030
+ "quote",
3031
+ "syn",
3032
+ ]
3033
+
3034
+ [[package]]
3035
+ name = "windows-link"
3036
+ version = "0.2.1"
3037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3038
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3039
+
3040
+ [[package]]
3041
+ name = "windows-result"
3042
+ version = "0.4.1"
3043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3044
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3045
+ dependencies = [
3046
+ "windows-link",
3047
+ ]
3048
+
3049
+ [[package]]
3050
+ name = "windows-strings"
3051
+ version = "0.5.1"
3052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3053
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3054
+ dependencies = [
3055
+ "windows-link",
3056
+ ]
3057
+
3058
+ [[package]]
3059
+ name = "windows-sys"
3060
+ version = "0.59.0"
3061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3062
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3063
+ dependencies = [
3064
+ "windows-targets 0.52.6",
3065
+ ]
3066
+
3067
+ [[package]]
3068
+ name = "windows-sys"
3069
+ version = "0.60.2"
3070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3071
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3072
+ dependencies = [
3073
+ "windows-targets 0.53.5",
3074
+ ]
3075
+
3076
+ [[package]]
3077
+ name = "windows-sys"
3078
+ version = "0.61.2"
3079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3080
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3081
+ dependencies = [
3082
+ "windows-link",
3083
+ ]
3084
+
3085
+ [[package]]
3086
+ name = "windows-targets"
3087
+ version = "0.52.6"
3088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3089
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3090
+ dependencies = [
3091
+ "windows_aarch64_gnullvm 0.52.6",
3092
+ "windows_aarch64_msvc 0.52.6",
3093
+ "windows_i686_gnu 0.52.6",
3094
+ "windows_i686_gnullvm 0.52.6",
3095
+ "windows_i686_msvc 0.52.6",
3096
+ "windows_x86_64_gnu 0.52.6",
3097
+ "windows_x86_64_gnullvm 0.52.6",
3098
+ "windows_x86_64_msvc 0.52.6",
3099
+ ]
3100
+
3101
+ [[package]]
3102
+ name = "windows-targets"
3103
+ version = "0.53.5"
3104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3105
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3106
+ dependencies = [
3107
+ "windows-link",
3108
+ "windows_aarch64_gnullvm 0.53.1",
3109
+ "windows_aarch64_msvc 0.53.1",
3110
+ "windows_i686_gnu 0.53.1",
3111
+ "windows_i686_gnullvm 0.53.1",
3112
+ "windows_i686_msvc 0.53.1",
3113
+ "windows_x86_64_gnu 0.53.1",
3114
+ "windows_x86_64_gnullvm 0.53.1",
3115
+ "windows_x86_64_msvc 0.53.1",
3116
+ ]
3117
+
3118
+ [[package]]
3119
+ name = "windows_aarch64_gnullvm"
3120
+ version = "0.52.6"
3121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3122
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3123
+
3124
+ [[package]]
3125
+ name = "windows_aarch64_gnullvm"
3126
+ version = "0.53.1"
3127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3128
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3129
+
3130
+ [[package]]
3131
+ name = "windows_aarch64_msvc"
3132
+ version = "0.52.6"
3133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3134
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3135
+
3136
+ [[package]]
3137
+ name = "windows_aarch64_msvc"
3138
+ version = "0.53.1"
3139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3140
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3141
+
3142
+ [[package]]
3143
+ name = "windows_i686_gnu"
3144
+ version = "0.52.6"
3145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3146
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3147
+
3148
+ [[package]]
3149
+ name = "windows_i686_gnu"
3150
+ version = "0.53.1"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3153
+
3154
+ [[package]]
3155
+ name = "windows_i686_gnullvm"
3156
+ version = "0.52.6"
3157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3158
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3159
+
3160
+ [[package]]
3161
+ name = "windows_i686_gnullvm"
3162
+ version = "0.53.1"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3165
+
3166
+ [[package]]
3167
+ name = "windows_i686_msvc"
3168
+ version = "0.52.6"
3169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3170
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3171
+
3172
+ [[package]]
3173
+ name = "windows_i686_msvc"
3174
+ version = "0.53.1"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3177
+
3178
+ [[package]]
3179
+ name = "windows_x86_64_gnu"
3180
+ version = "0.52.6"
3181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3182
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3183
+
3184
+ [[package]]
3185
+ name = "windows_x86_64_gnu"
3186
+ version = "0.53.1"
3187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3188
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3189
+
3190
+ [[package]]
3191
+ name = "windows_x86_64_gnullvm"
3192
+ version = "0.52.6"
3193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3194
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3195
+
3196
+ [[package]]
3197
+ name = "windows_x86_64_gnullvm"
3198
+ version = "0.53.1"
3199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3200
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3201
+
3202
+ [[package]]
3203
+ name = "windows_x86_64_msvc"
3204
+ version = "0.52.6"
3205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3206
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3207
+
3208
+ [[package]]
3209
+ name = "windows_x86_64_msvc"
3210
+ version = "0.53.1"
3211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3212
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3213
+
3214
+ [[package]]
3215
+ name = "winnow"
3216
+ version = "0.7.13"
3217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3218
+ checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
3219
+ dependencies = [
3220
+ "memchr",
3221
+ ]
3222
+
3223
+ [[package]]
3224
+ name = "wit-bindgen"
3225
+ version = "0.46.0"
3226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3227
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
3228
+
3229
+ [[package]]
3230
+ name = "writeable"
3231
+ version = "0.6.1"
3232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3233
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
3234
+
3235
+ [[package]]
3236
+ name = "yamlpatch"
3237
+ version = "0.5.0"
3238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3239
+ checksum = "b035cdad5b25bb77ce2f1c604cdbb45550bd4b3674ddbf75880927ad7eab26ef"
3240
+ dependencies = [
3241
+ "indexmap",
3242
+ "line-index",
3243
+ "serde",
3244
+ "serde_json",
3245
+ "serde_yaml",
3246
+ "subfeature",
3247
+ "thiserror",
3248
+ "yamlpath",
3249
+ ]
3250
+
3251
+ [[package]]
3252
+ name = "yamlpath"
3253
+ version = "0.28.0"
3254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3255
+ checksum = "3ff96f26c7307a5d4e3b3e313f4755ae162da6daea344975ada815b9c6e05e19"
3256
+ dependencies = [
3257
+ "line-index",
3258
+ "self_cell",
3259
+ "serde",
3260
+ "thiserror",
3261
+ "tree-sitter",
3262
+ "tree-sitter-iter",
3263
+ "tree-sitter-yaml",
3264
+ ]
3265
+
3266
+ [[package]]
3267
+ name = "yoke"
3268
+ version = "0.8.0"
3269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3270
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
3271
+ dependencies = [
3272
+ "serde",
3273
+ "stable_deref_trait",
3274
+ "yoke-derive",
3275
+ "zerofrom",
3276
+ ]
3277
+
3278
+ [[package]]
3279
+ name = "yoke-derive"
3280
+ version = "0.8.0"
3281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3282
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
3283
+ dependencies = [
3284
+ "proc-macro2",
3285
+ "quote",
3286
+ "syn",
3287
+ "synstructure",
3288
+ ]
3289
+
3290
+ [[package]]
3291
+ name = "zerocopy"
3292
+ version = "0.8.27"
3293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3294
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
3295
+ dependencies = [
3296
+ "zerocopy-derive",
3297
+ ]
3298
+
3299
+ [[package]]
3300
+ name = "zerocopy-derive"
3301
+ version = "0.8.27"
3302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3303
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
3304
+ dependencies = [
3305
+ "proc-macro2",
3306
+ "quote",
3307
+ "syn",
3308
+ ]
3309
+
3310
+ [[package]]
3311
+ name = "zerofrom"
3312
+ version = "0.1.6"
3313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3314
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3315
+ dependencies = [
3316
+ "zerofrom-derive",
3317
+ ]
3318
+
3319
+ [[package]]
3320
+ name = "zerofrom-derive"
3321
+ version = "0.1.6"
3322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3323
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3324
+ dependencies = [
3325
+ "proc-macro2",
3326
+ "quote",
3327
+ "syn",
3328
+ "synstructure",
3329
+ ]
3330
+
3331
+ [[package]]
3332
+ name = "zerotrie"
3333
+ version = "0.2.2"
3334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3335
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
3336
+ dependencies = [
3337
+ "displaydoc",
3338
+ "yoke",
3339
+ "zerofrom",
3340
+ ]
3341
+
3342
+ [[package]]
3343
+ name = "zerovec"
3344
+ version = "0.11.4"
3345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3346
+ checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
3347
+ dependencies = [
3348
+ "yoke",
3349
+ "zerofrom",
3350
+ "zerovec-derive",
3351
+ ]
3352
+
3353
+ [[package]]
3354
+ name = "zerovec-derive"
3355
+ version = "0.11.1"
3356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3357
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
3358
+ dependencies = [
3359
+ "proc-macro2",
3360
+ "quote",
3361
+ "syn",
3362
+ ]
3363
+
3364
+ [[package]]
3365
+ name = "zlib-rs"
3366
+ version = "0.5.2"
3367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3368
+ checksum = "2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2"