agentdir 0.1.1__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 (47) hide show
  1. agentdir-0.1.1/Cargo.lock +1485 -0
  2. agentdir-0.1.1/Cargo.toml +22 -0
  3. agentdir-0.1.1/PKG-INFO +15 -0
  4. agentdir-0.1.1/bindings/python/Cargo.toml +14 -0
  5. agentdir-0.1.1/bindings/python/src/lib.rs +247 -0
  6. agentdir-0.1.1/bindings/python/tests/conftest.py +35 -0
  7. agentdir-0.1.1/bindings/python/tests/test_batch_map.py +56 -0
  8. agentdir-0.1.1/bindings/python/tests/test_error_handling.py +42 -0
  9. agentdir-0.1.1/bindings/python/tests/test_export_mapping.py +42 -0
  10. agentdir-0.1.1/bindings/python/tests/test_init_open.py +61 -0
  11. agentdir-0.1.1/bindings/python/tests/test_map_unmap.py +55 -0
  12. agentdir-0.1.1/bindings/python/tests/test_query_apis.py +84 -0
  13. agentdir-0.1.1/bindings/python/tests/test_refresh.py +55 -0
  14. agentdir-0.1.1/bindings/python/tests/test_snapshot.py +12 -0
  15. agentdir-0.1.1/bindings/python/tests/test_strategy.py +78 -0
  16. agentdir-0.1.1/bindings/python/tests/test_virtual_ops.py +94 -0
  17. agentdir-0.1.1/bindings/python/uv.lock +366 -0
  18. agentdir-0.1.1/crates/agentdir/Cargo.toml +28 -0
  19. agentdir-0.1.1/crates/agentdir/src/backend/local.rs +275 -0
  20. agentdir-0.1.1/crates/agentdir/src/backend/mod.rs +104 -0
  21. agentdir-0.1.1/crates/agentdir/src/catalog.rs +603 -0
  22. agentdir-0.1.1/crates/agentdir/src/error.rs +36 -0
  23. agentdir-0.1.1/crates/agentdir/src/lib.rs +24 -0
  24. agentdir-0.1.1/crates/agentdir/src/manifest.rs +141 -0
  25. agentdir-0.1.1/crates/agentdir/src/materializer.rs +609 -0
  26. agentdir-0.1.1/crates/agentdir/src/reconciler.rs +883 -0
  27. agentdir-0.1.1/crates/agentdir/src/reflink.rs +190 -0
  28. agentdir-0.1.1/crates/agentdir/src/snapshot.rs +293 -0
  29. agentdir-0.1.1/crates/agentdir/src/types.rs +335 -0
  30. agentdir-0.1.1/crates/agentdir/src/watcher.rs +126 -0
  31. agentdir-0.1.1/crates/agentdir/src/workspace.rs +810 -0
  32. agentdir-0.1.1/crates/agentdir/tests/batch_map.rs +271 -0
  33. agentdir-0.1.1/crates/agentdir/tests/edge_agent_scenarios.rs +337 -0
  34. agentdir-0.1.1/crates/agentdir/tests/edge_fs.rs +310 -0
  35. agentdir-0.1.1/crates/agentdir/tests/edge_known_issues.rs +216 -0
  36. agentdir-0.1.1/crates/agentdir/tests/edge_persistence.rs +197 -0
  37. agentdir-0.1.1/crates/agentdir/tests/edge_reconciliation.rs +417 -0
  38. agentdir-0.1.1/crates/agentdir/tests/edge_virtual_paths.rs +173 -0
  39. agentdir-0.1.1/crates/agentdir/tests/export_mapping.rs +283 -0
  40. agentdir-0.1.1/crates/agentdir/tests/integration.rs +401 -0
  41. agentdir-0.1.1/crates/agentdir/tests/query_apis.rs +180 -0
  42. agentdir-0.1.1/crates/agentdir/tests/snapshot.rs +237 -0
  43. agentdir-0.1.1/crates/agentdir/tests/symlink_materialization.rs +223 -0
  44. agentdir-0.1.1/pyproject.toml +48 -0
  45. agentdir-0.1.1/python/agentdir/__init__.py +5 -0
  46. agentdir-0.1.1/python/agentdir/_agentdir.pyi +149 -0
  47. agentdir-0.1.1/python/agentdir/py.typed +0 -0
@@ -0,0 +1,1485 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "agentdir"
7
+ version = "0.1.1"
8
+ dependencies = [
9
+ "async-trait",
10
+ "globset",
11
+ "notify",
12
+ "notify-debouncer-full",
13
+ "reflink-copy",
14
+ "serde",
15
+ "serde_json",
16
+ "sha2",
17
+ "tempfile",
18
+ "thiserror",
19
+ "tokio",
20
+ "tokio-util",
21
+ "tracing",
22
+ "tracing-subscriber",
23
+ "walkdir",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "agentdir-cli"
28
+ version = "0.1.1"
29
+ dependencies = [
30
+ "agentdir",
31
+ "clap",
32
+ "serde_json",
33
+ "tokio",
34
+ "tracing",
35
+ "tracing-subscriber",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "agentdir-python"
40
+ version = "0.1.1"
41
+ dependencies = [
42
+ "agentdir",
43
+ "pyo3",
44
+ "serde_json",
45
+ "tokio",
46
+ ]
47
+
48
+ [[package]]
49
+ name = "aho-corasick"
50
+ version = "1.1.4"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
53
+ dependencies = [
54
+ "memchr",
55
+ ]
56
+
57
+ [[package]]
58
+ name = "anstream"
59
+ version = "1.0.0"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
62
+ dependencies = [
63
+ "anstyle",
64
+ "anstyle-parse",
65
+ "anstyle-query",
66
+ "anstyle-wincon",
67
+ "colorchoice",
68
+ "is_terminal_polyfill",
69
+ "utf8parse",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "anstyle"
74
+ version = "1.0.14"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
77
+
78
+ [[package]]
79
+ name = "anstyle-parse"
80
+ version = "1.0.0"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
83
+ dependencies = [
84
+ "utf8parse",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "anstyle-query"
89
+ version = "1.1.5"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
92
+ dependencies = [
93
+ "windows-sys 0.61.2",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "anstyle-wincon"
98
+ version = "3.0.11"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
101
+ dependencies = [
102
+ "anstyle",
103
+ "once_cell_polyfill",
104
+ "windows-sys 0.61.2",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "anyhow"
109
+ version = "1.0.102"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
112
+
113
+ [[package]]
114
+ name = "async-trait"
115
+ version = "0.1.89"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
118
+ dependencies = [
119
+ "proc-macro2",
120
+ "quote",
121
+ "syn",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "autocfg"
126
+ version = "1.5.1"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
129
+
130
+ [[package]]
131
+ name = "bitflags"
132
+ version = "2.11.1"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
135
+
136
+ [[package]]
137
+ name = "block-buffer"
138
+ version = "0.10.4"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
141
+ dependencies = [
142
+ "generic-array",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "bstr"
147
+ version = "1.12.1"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
150
+ dependencies = [
151
+ "memchr",
152
+ "serde",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "bytes"
157
+ version = "1.11.1"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
160
+
161
+ [[package]]
162
+ name = "cfg-if"
163
+ version = "1.0.4"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
166
+
167
+ [[package]]
168
+ name = "clap"
169
+ version = "4.6.1"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
172
+ dependencies = [
173
+ "clap_builder",
174
+ "clap_derive",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "clap_builder"
179
+ version = "4.6.0"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
182
+ dependencies = [
183
+ "anstream",
184
+ "anstyle",
185
+ "clap_lex",
186
+ "strsim",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "clap_derive"
191
+ version = "4.6.1"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
194
+ dependencies = [
195
+ "heck",
196
+ "proc-macro2",
197
+ "quote",
198
+ "syn",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "clap_lex"
203
+ version = "1.1.0"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
206
+
207
+ [[package]]
208
+ name = "colorchoice"
209
+ version = "1.0.5"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
212
+
213
+ [[package]]
214
+ name = "cpufeatures"
215
+ version = "0.2.17"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
218
+ dependencies = [
219
+ "libc",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "crypto-common"
224
+ version = "0.1.7"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
227
+ dependencies = [
228
+ "generic-array",
229
+ "typenum",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "digest"
234
+ version = "0.10.7"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
237
+ dependencies = [
238
+ "block-buffer",
239
+ "crypto-common",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "equivalent"
244
+ version = "1.0.2"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
247
+
248
+ [[package]]
249
+ name = "errno"
250
+ version = "0.3.14"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
253
+ dependencies = [
254
+ "libc",
255
+ "windows-sys 0.61.2",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "fastrand"
260
+ version = "2.4.1"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
263
+
264
+ [[package]]
265
+ name = "file-id"
266
+ version = "0.2.3"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "e1fc6a637b6dc58414714eddd9170ff187ecb0933d4c7024d1abbd23a3cc26e9"
269
+ dependencies = [
270
+ "windows-sys 0.60.2",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "foldhash"
275
+ version = "0.1.5"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
278
+
279
+ [[package]]
280
+ name = "fsevent-sys"
281
+ version = "4.1.0"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
284
+ dependencies = [
285
+ "libc",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "futures-core"
290
+ version = "0.3.32"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
293
+
294
+ [[package]]
295
+ name = "futures-macro"
296
+ version = "0.3.32"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
299
+ dependencies = [
300
+ "proc-macro2",
301
+ "quote",
302
+ "syn",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "futures-sink"
307
+ version = "0.3.32"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
310
+
311
+ [[package]]
312
+ name = "futures-task"
313
+ version = "0.3.32"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
316
+
317
+ [[package]]
318
+ name = "futures-util"
319
+ version = "0.3.32"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
322
+ dependencies = [
323
+ "futures-core",
324
+ "futures-macro",
325
+ "futures-task",
326
+ "pin-project-lite",
327
+ "slab",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "generic-array"
332
+ version = "0.14.7"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
335
+ dependencies = [
336
+ "typenum",
337
+ "version_check",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "getrandom"
342
+ version = "0.4.2"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
345
+ dependencies = [
346
+ "cfg-if",
347
+ "libc",
348
+ "r-efi",
349
+ "wasip2",
350
+ "wasip3",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "globset"
355
+ version = "0.4.18"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
358
+ dependencies = [
359
+ "aho-corasick",
360
+ "bstr",
361
+ "log",
362
+ "regex-automata",
363
+ "regex-syntax",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "hashbrown"
368
+ version = "0.15.5"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
371
+ dependencies = [
372
+ "foldhash",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "hashbrown"
377
+ version = "0.17.1"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
380
+
381
+ [[package]]
382
+ name = "heck"
383
+ version = "0.5.0"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
386
+
387
+ [[package]]
388
+ name = "id-arena"
389
+ version = "2.3.0"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
392
+
393
+ [[package]]
394
+ name = "indexmap"
395
+ version = "2.14.0"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
398
+ dependencies = [
399
+ "equivalent",
400
+ "hashbrown 0.17.1",
401
+ "serde",
402
+ "serde_core",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "indoc"
407
+ version = "2.0.7"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
410
+ dependencies = [
411
+ "rustversion",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "inotify"
416
+ version = "0.11.1"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "bd5b3eaf1a28b758ac0faa5a4254e8ab2705605496f1b1f3fbbc3988ad73d199"
419
+ dependencies = [
420
+ "bitflags",
421
+ "inotify-sys",
422
+ "libc",
423
+ ]
424
+
425
+ [[package]]
426
+ name = "inotify-sys"
427
+ version = "0.1.5"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
430
+ dependencies = [
431
+ "libc",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "is_terminal_polyfill"
436
+ version = "1.70.2"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
439
+
440
+ [[package]]
441
+ name = "itoa"
442
+ version = "1.0.18"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
445
+
446
+ [[package]]
447
+ name = "kqueue"
448
+ version = "1.1.1"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
451
+ dependencies = [
452
+ "kqueue-sys",
453
+ "libc",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "kqueue-sys"
458
+ version = "1.1.2"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "07293a4e297ac234359b510362495713f75ea345d5307140414f20c69ffeb087"
461
+ dependencies = [
462
+ "bitflags",
463
+ "libc",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "lazy_static"
468
+ version = "1.5.0"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
471
+
472
+ [[package]]
473
+ name = "leb128fmt"
474
+ version = "0.1.0"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
477
+
478
+ [[package]]
479
+ name = "libc"
480
+ version = "0.2.186"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
483
+
484
+ [[package]]
485
+ name = "linux-raw-sys"
486
+ version = "0.12.1"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
489
+
490
+ [[package]]
491
+ name = "lock_api"
492
+ version = "0.4.14"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
495
+ dependencies = [
496
+ "scopeguard",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "log"
501
+ version = "0.4.29"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
504
+
505
+ [[package]]
506
+ name = "matchers"
507
+ version = "0.2.0"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
510
+ dependencies = [
511
+ "regex-automata",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "memchr"
516
+ version = "2.8.0"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
519
+
520
+ [[package]]
521
+ name = "memoffset"
522
+ version = "0.9.1"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
525
+ dependencies = [
526
+ "autocfg",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "mio"
531
+ version = "1.2.0"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
534
+ dependencies = [
535
+ "libc",
536
+ "log",
537
+ "wasi",
538
+ "windows-sys 0.61.2",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "notify"
543
+ version = "8.2.0"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3"
546
+ dependencies = [
547
+ "bitflags",
548
+ "fsevent-sys",
549
+ "inotify",
550
+ "kqueue",
551
+ "libc",
552
+ "log",
553
+ "mio",
554
+ "notify-types",
555
+ "walkdir",
556
+ "windows-sys 0.60.2",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "notify-debouncer-full"
561
+ version = "0.5.0"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "d2d88b1a7538054351c8258338df7c931a590513fb3745e8c15eb9ff4199b8d1"
564
+ dependencies = [
565
+ "file-id",
566
+ "log",
567
+ "notify",
568
+ "notify-types",
569
+ "walkdir",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "notify-types"
574
+ version = "2.1.0"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "42b8cfee0e339a0337359f3c88165702ac6e600dc01c0cc9579a92d62b08477a"
577
+ dependencies = [
578
+ "bitflags",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "nu-ansi-term"
583
+ version = "0.50.3"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
586
+ dependencies = [
587
+ "windows-sys 0.61.2",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "once_cell"
592
+ version = "1.21.4"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
595
+
596
+ [[package]]
597
+ name = "once_cell_polyfill"
598
+ version = "1.70.2"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
601
+
602
+ [[package]]
603
+ name = "parking_lot"
604
+ version = "0.12.5"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
607
+ dependencies = [
608
+ "lock_api",
609
+ "parking_lot_core",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "parking_lot_core"
614
+ version = "0.9.12"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
617
+ dependencies = [
618
+ "cfg-if",
619
+ "libc",
620
+ "redox_syscall",
621
+ "smallvec",
622
+ "windows-link",
623
+ ]
624
+
625
+ [[package]]
626
+ name = "pin-project-lite"
627
+ version = "0.2.17"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
630
+
631
+ [[package]]
632
+ name = "portable-atomic"
633
+ version = "1.13.1"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
636
+
637
+ [[package]]
638
+ name = "prettyplease"
639
+ version = "0.2.37"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
642
+ dependencies = [
643
+ "proc-macro2",
644
+ "syn",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "proc-macro2"
649
+ version = "1.0.106"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
652
+ dependencies = [
653
+ "unicode-ident",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "pyo3"
658
+ version = "0.23.5"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
661
+ dependencies = [
662
+ "cfg-if",
663
+ "indoc",
664
+ "libc",
665
+ "memoffset",
666
+ "once_cell",
667
+ "portable-atomic",
668
+ "pyo3-build-config",
669
+ "pyo3-ffi",
670
+ "pyo3-macros",
671
+ "unindent",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "pyo3-build-config"
676
+ version = "0.23.5"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
679
+ dependencies = [
680
+ "once_cell",
681
+ "target-lexicon",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "pyo3-ffi"
686
+ version = "0.23.5"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
689
+ dependencies = [
690
+ "libc",
691
+ "pyo3-build-config",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "pyo3-macros"
696
+ version = "0.23.5"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
699
+ dependencies = [
700
+ "proc-macro2",
701
+ "pyo3-macros-backend",
702
+ "quote",
703
+ "syn",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "pyo3-macros-backend"
708
+ version = "0.23.5"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
711
+ dependencies = [
712
+ "heck",
713
+ "proc-macro2",
714
+ "pyo3-build-config",
715
+ "quote",
716
+ "syn",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "quote"
721
+ version = "1.0.45"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
724
+ dependencies = [
725
+ "proc-macro2",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "r-efi"
730
+ version = "6.0.0"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
733
+
734
+ [[package]]
735
+ name = "redox_syscall"
736
+ version = "0.5.18"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
739
+ dependencies = [
740
+ "bitflags",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "reflink-copy"
745
+ version = "0.1.29"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "13362233b147e57674c37b802d216b7c5e3dcccbed8967c84f0d8d223868ae27"
748
+ dependencies = [
749
+ "cfg-if",
750
+ "libc",
751
+ "rustix",
752
+ "windows",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "regex-automata"
757
+ version = "0.4.14"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
760
+ dependencies = [
761
+ "aho-corasick",
762
+ "memchr",
763
+ "regex-syntax",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "regex-syntax"
768
+ version = "0.8.10"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
771
+
772
+ [[package]]
773
+ name = "rustix"
774
+ version = "1.1.4"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
777
+ dependencies = [
778
+ "bitflags",
779
+ "errno",
780
+ "libc",
781
+ "linux-raw-sys",
782
+ "windows-sys 0.61.2",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "rustversion"
787
+ version = "1.0.22"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
790
+
791
+ [[package]]
792
+ name = "same-file"
793
+ version = "1.0.6"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
796
+ dependencies = [
797
+ "winapi-util",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "scopeguard"
802
+ version = "1.2.0"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
805
+
806
+ [[package]]
807
+ name = "semver"
808
+ version = "1.0.28"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
811
+
812
+ [[package]]
813
+ name = "serde"
814
+ version = "1.0.228"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
817
+ dependencies = [
818
+ "serde_core",
819
+ "serde_derive",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "serde_core"
824
+ version = "1.0.228"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
827
+ dependencies = [
828
+ "serde_derive",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "serde_derive"
833
+ version = "1.0.228"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
836
+ dependencies = [
837
+ "proc-macro2",
838
+ "quote",
839
+ "syn",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "serde_json"
844
+ version = "1.0.150"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
847
+ dependencies = [
848
+ "itoa",
849
+ "memchr",
850
+ "serde",
851
+ "serde_core",
852
+ "zmij",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "sha2"
857
+ version = "0.10.9"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
860
+ dependencies = [
861
+ "cfg-if",
862
+ "cpufeatures",
863
+ "digest",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "sharded-slab"
868
+ version = "0.1.7"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
871
+ dependencies = [
872
+ "lazy_static",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "signal-hook-registry"
877
+ version = "1.4.8"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
880
+ dependencies = [
881
+ "errno",
882
+ "libc",
883
+ ]
884
+
885
+ [[package]]
886
+ name = "slab"
887
+ version = "0.4.12"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
890
+
891
+ [[package]]
892
+ name = "smallvec"
893
+ version = "1.15.1"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
896
+
897
+ [[package]]
898
+ name = "socket2"
899
+ version = "0.6.3"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
902
+ dependencies = [
903
+ "libc",
904
+ "windows-sys 0.61.2",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "strsim"
909
+ version = "0.11.1"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
912
+
913
+ [[package]]
914
+ name = "syn"
915
+ version = "2.0.117"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
918
+ dependencies = [
919
+ "proc-macro2",
920
+ "quote",
921
+ "unicode-ident",
922
+ ]
923
+
924
+ [[package]]
925
+ name = "target-lexicon"
926
+ version = "0.12.16"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
929
+
930
+ [[package]]
931
+ name = "tempfile"
932
+ version = "3.27.0"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
935
+ dependencies = [
936
+ "fastrand",
937
+ "getrandom",
938
+ "once_cell",
939
+ "rustix",
940
+ "windows-sys 0.61.2",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "thiserror"
945
+ version = "2.0.18"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
948
+ dependencies = [
949
+ "thiserror-impl",
950
+ ]
951
+
952
+ [[package]]
953
+ name = "thiserror-impl"
954
+ version = "2.0.18"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
957
+ dependencies = [
958
+ "proc-macro2",
959
+ "quote",
960
+ "syn",
961
+ ]
962
+
963
+ [[package]]
964
+ name = "thread_local"
965
+ version = "1.1.9"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
968
+ dependencies = [
969
+ "cfg-if",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "tokio"
974
+ version = "1.52.3"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
977
+ dependencies = [
978
+ "bytes",
979
+ "libc",
980
+ "mio",
981
+ "parking_lot",
982
+ "pin-project-lite",
983
+ "signal-hook-registry",
984
+ "socket2",
985
+ "tokio-macros",
986
+ "windows-sys 0.61.2",
987
+ ]
988
+
989
+ [[package]]
990
+ name = "tokio-macros"
991
+ version = "2.7.0"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
994
+ dependencies = [
995
+ "proc-macro2",
996
+ "quote",
997
+ "syn",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "tokio-util"
1002
+ version = "0.7.18"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1005
+ dependencies = [
1006
+ "bytes",
1007
+ "futures-core",
1008
+ "futures-sink",
1009
+ "futures-util",
1010
+ "pin-project-lite",
1011
+ "tokio",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "tracing"
1016
+ version = "0.1.44"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1019
+ dependencies = [
1020
+ "pin-project-lite",
1021
+ "tracing-attributes",
1022
+ "tracing-core",
1023
+ ]
1024
+
1025
+ [[package]]
1026
+ name = "tracing-attributes"
1027
+ version = "0.1.31"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1030
+ dependencies = [
1031
+ "proc-macro2",
1032
+ "quote",
1033
+ "syn",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "tracing-core"
1038
+ version = "0.1.36"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1041
+ dependencies = [
1042
+ "once_cell",
1043
+ "valuable",
1044
+ ]
1045
+
1046
+ [[package]]
1047
+ name = "tracing-log"
1048
+ version = "0.2.0"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1051
+ dependencies = [
1052
+ "log",
1053
+ "once_cell",
1054
+ "tracing-core",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "tracing-subscriber"
1059
+ version = "0.3.23"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1062
+ dependencies = [
1063
+ "matchers",
1064
+ "nu-ansi-term",
1065
+ "once_cell",
1066
+ "regex-automata",
1067
+ "sharded-slab",
1068
+ "smallvec",
1069
+ "thread_local",
1070
+ "tracing",
1071
+ "tracing-core",
1072
+ "tracing-log",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "typenum"
1077
+ version = "1.20.0"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
1080
+
1081
+ [[package]]
1082
+ name = "unicode-ident"
1083
+ version = "1.0.24"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1086
+
1087
+ [[package]]
1088
+ name = "unicode-xid"
1089
+ version = "0.2.6"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1092
+
1093
+ [[package]]
1094
+ name = "unindent"
1095
+ version = "0.2.4"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1098
+
1099
+ [[package]]
1100
+ name = "utf8parse"
1101
+ version = "0.2.2"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1104
+
1105
+ [[package]]
1106
+ name = "valuable"
1107
+ version = "0.1.1"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1110
+
1111
+ [[package]]
1112
+ name = "version_check"
1113
+ version = "0.9.5"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1116
+
1117
+ [[package]]
1118
+ name = "walkdir"
1119
+ version = "2.5.0"
1120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1121
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1122
+ dependencies = [
1123
+ "same-file",
1124
+ "winapi-util",
1125
+ ]
1126
+
1127
+ [[package]]
1128
+ name = "wasi"
1129
+ version = "0.11.1+wasi-snapshot-preview1"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1132
+
1133
+ [[package]]
1134
+ name = "wasip2"
1135
+ version = "1.0.3+wasi-0.2.9"
1136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1137
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1138
+ dependencies = [
1139
+ "wit-bindgen 0.57.1",
1140
+ ]
1141
+
1142
+ [[package]]
1143
+ name = "wasip3"
1144
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1147
+ dependencies = [
1148
+ "wit-bindgen 0.51.0",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "wasm-encoder"
1153
+ version = "0.244.0"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1156
+ dependencies = [
1157
+ "leb128fmt",
1158
+ "wasmparser",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "wasm-metadata"
1163
+ version = "0.244.0"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1166
+ dependencies = [
1167
+ "anyhow",
1168
+ "indexmap",
1169
+ "wasm-encoder",
1170
+ "wasmparser",
1171
+ ]
1172
+
1173
+ [[package]]
1174
+ name = "wasmparser"
1175
+ version = "0.244.0"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1178
+ dependencies = [
1179
+ "bitflags",
1180
+ "hashbrown 0.15.5",
1181
+ "indexmap",
1182
+ "semver",
1183
+ ]
1184
+
1185
+ [[package]]
1186
+ name = "winapi-util"
1187
+ version = "0.1.11"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1190
+ dependencies = [
1191
+ "windows-sys 0.61.2",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "windows"
1196
+ version = "0.62.2"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
1199
+ dependencies = [
1200
+ "windows-collections",
1201
+ "windows-core",
1202
+ "windows-future",
1203
+ "windows-numerics",
1204
+ ]
1205
+
1206
+ [[package]]
1207
+ name = "windows-collections"
1208
+ version = "0.3.2"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
1211
+ dependencies = [
1212
+ "windows-core",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "windows-core"
1217
+ version = "0.62.2"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1220
+ dependencies = [
1221
+ "windows-implement",
1222
+ "windows-interface",
1223
+ "windows-link",
1224
+ "windows-result",
1225
+ "windows-strings",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "windows-future"
1230
+ version = "0.3.2"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
1233
+ dependencies = [
1234
+ "windows-core",
1235
+ "windows-link",
1236
+ "windows-threading",
1237
+ ]
1238
+
1239
+ [[package]]
1240
+ name = "windows-implement"
1241
+ version = "0.60.2"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1244
+ dependencies = [
1245
+ "proc-macro2",
1246
+ "quote",
1247
+ "syn",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "windows-interface"
1252
+ version = "0.59.3"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1255
+ dependencies = [
1256
+ "proc-macro2",
1257
+ "quote",
1258
+ "syn",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "windows-link"
1263
+ version = "0.2.1"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1266
+
1267
+ [[package]]
1268
+ name = "windows-numerics"
1269
+ version = "0.3.1"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
1272
+ dependencies = [
1273
+ "windows-core",
1274
+ "windows-link",
1275
+ ]
1276
+
1277
+ [[package]]
1278
+ name = "windows-result"
1279
+ version = "0.4.1"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1282
+ dependencies = [
1283
+ "windows-link",
1284
+ ]
1285
+
1286
+ [[package]]
1287
+ name = "windows-strings"
1288
+ version = "0.5.1"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1291
+ dependencies = [
1292
+ "windows-link",
1293
+ ]
1294
+
1295
+ [[package]]
1296
+ name = "windows-sys"
1297
+ version = "0.60.2"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1300
+ dependencies = [
1301
+ "windows-targets",
1302
+ ]
1303
+
1304
+ [[package]]
1305
+ name = "windows-sys"
1306
+ version = "0.61.2"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1309
+ dependencies = [
1310
+ "windows-link",
1311
+ ]
1312
+
1313
+ [[package]]
1314
+ name = "windows-targets"
1315
+ version = "0.53.5"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1318
+ dependencies = [
1319
+ "windows-link",
1320
+ "windows_aarch64_gnullvm",
1321
+ "windows_aarch64_msvc",
1322
+ "windows_i686_gnu",
1323
+ "windows_i686_gnullvm",
1324
+ "windows_i686_msvc",
1325
+ "windows_x86_64_gnu",
1326
+ "windows_x86_64_gnullvm",
1327
+ "windows_x86_64_msvc",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "windows-threading"
1332
+ version = "0.2.1"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
1335
+ dependencies = [
1336
+ "windows-link",
1337
+ ]
1338
+
1339
+ [[package]]
1340
+ name = "windows_aarch64_gnullvm"
1341
+ version = "0.53.1"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1344
+
1345
+ [[package]]
1346
+ name = "windows_aarch64_msvc"
1347
+ version = "0.53.1"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1350
+
1351
+ [[package]]
1352
+ name = "windows_i686_gnu"
1353
+ version = "0.53.1"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1356
+
1357
+ [[package]]
1358
+ name = "windows_i686_gnullvm"
1359
+ version = "0.53.1"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1362
+
1363
+ [[package]]
1364
+ name = "windows_i686_msvc"
1365
+ version = "0.53.1"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1368
+
1369
+ [[package]]
1370
+ name = "windows_x86_64_gnu"
1371
+ version = "0.53.1"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1374
+
1375
+ [[package]]
1376
+ name = "windows_x86_64_gnullvm"
1377
+ version = "0.53.1"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1380
+
1381
+ [[package]]
1382
+ name = "windows_x86_64_msvc"
1383
+ version = "0.53.1"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1386
+
1387
+ [[package]]
1388
+ name = "wit-bindgen"
1389
+ version = "0.51.0"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1392
+ dependencies = [
1393
+ "wit-bindgen-rust-macro",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "wit-bindgen"
1398
+ version = "0.57.1"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1401
+
1402
+ [[package]]
1403
+ name = "wit-bindgen-core"
1404
+ version = "0.51.0"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1407
+ dependencies = [
1408
+ "anyhow",
1409
+ "heck",
1410
+ "wit-parser",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "wit-bindgen-rust"
1415
+ version = "0.51.0"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1418
+ dependencies = [
1419
+ "anyhow",
1420
+ "heck",
1421
+ "indexmap",
1422
+ "prettyplease",
1423
+ "syn",
1424
+ "wasm-metadata",
1425
+ "wit-bindgen-core",
1426
+ "wit-component",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "wit-bindgen-rust-macro"
1431
+ version = "0.51.0"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1434
+ dependencies = [
1435
+ "anyhow",
1436
+ "prettyplease",
1437
+ "proc-macro2",
1438
+ "quote",
1439
+ "syn",
1440
+ "wit-bindgen-core",
1441
+ "wit-bindgen-rust",
1442
+ ]
1443
+
1444
+ [[package]]
1445
+ name = "wit-component"
1446
+ version = "0.244.0"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1449
+ dependencies = [
1450
+ "anyhow",
1451
+ "bitflags",
1452
+ "indexmap",
1453
+ "log",
1454
+ "serde",
1455
+ "serde_derive",
1456
+ "serde_json",
1457
+ "wasm-encoder",
1458
+ "wasm-metadata",
1459
+ "wasmparser",
1460
+ "wit-parser",
1461
+ ]
1462
+
1463
+ [[package]]
1464
+ name = "wit-parser"
1465
+ version = "0.244.0"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1468
+ dependencies = [
1469
+ "anyhow",
1470
+ "id-arena",
1471
+ "indexmap",
1472
+ "log",
1473
+ "semver",
1474
+ "serde",
1475
+ "serde_derive",
1476
+ "serde_json",
1477
+ "unicode-xid",
1478
+ "wasmparser",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "zmij"
1483
+ version = "1.0.21"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"