vsh-python 0.3.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 (55) hide show
  1. vsh_python-0.3.1/Cargo.lock +2197 -0
  2. vsh_python-0.3.1/Cargo.toml +55 -0
  3. vsh_python-0.3.1/LICENSE +190 -0
  4. vsh_python-0.3.1/PKG-INFO +199 -0
  5. vsh_python-0.3.1/README.md +168 -0
  6. vsh_python-0.3.1/THIRD_PARTY_NOTICES.md +28 -0
  7. vsh_python-0.3.1/crates/vbash/Cargo.toml +28 -0
  8. vsh_python-0.3.1/crates/vbash/examples/native_benchmark.rs +846 -0
  9. vsh_python-0.3.1/crates/vbash/src/artifact.rs +1081 -0
  10. vsh_python-0.3.1/crates/vbash/src/lib.rs +73 -0
  11. vsh_python-0.3.1/crates/vbash/src/runtime.rs +1721 -0
  12. vsh_python-0.3.1/crates/vsh/Cargo.toml +19 -0
  13. vsh_python-0.3.1/crates/vsh/src/lib.rs +17 -0
  14. vsh_python-0.3.1/crates/vsh-commit/Cargo.toml +25 -0
  15. vsh_python-0.3.1/crates/vsh-commit/src/committer.rs +2656 -0
  16. vsh_python-0.3.1/crates/vsh-commit/src/host.rs +899 -0
  17. vsh_python-0.3.1/crates/vsh-commit/src/journal.rs +377 -0
  18. vsh_python-0.3.1/crates/vsh-commit/src/lib.rs +22 -0
  19. vsh_python-0.3.1/crates/vsh-commit/src/plan.rs +855 -0
  20. vsh_python-0.3.1/crates/vsh-commit/src/tests.rs +1179 -0
  21. vsh_python-0.3.1/crates/vsh-monty/Cargo.toml +29 -0
  22. vsh_python-0.3.1/crates/vsh-monty/src/lib.rs +2316 -0
  23. vsh_python-0.3.1/crates/vsh-monty/src/worker.rs +1175 -0
  24. vsh_python-0.3.1/crates/vsh-policy/Cargo.toml +21 -0
  25. vsh_python-0.3.1/crates/vsh-policy/src/lib.rs +1382 -0
  26. vsh_python-0.3.1/crates/vsh-python/Cargo.toml +27 -0
  27. vsh_python-0.3.1/crates/vsh-python/src/lib.rs +823 -0
  28. vsh_python-0.3.1/crates/vsh-store/Cargo.toml +22 -0
  29. vsh_python-0.3.1/crates/vsh-store/src/directory.rs +483 -0
  30. vsh_python-0.3.1/crates/vsh-store/src/lib.rs +1273 -0
  31. vsh_python-0.3.1/crates/vsh-store/src/persistent.rs +1510 -0
  32. vsh_python-0.3.1/crates/vsh-types/Cargo.toml +17 -0
  33. vsh_python-0.3.1/crates/vsh-types/src/lib.rs +1056 -0
  34. vsh_python-0.3.1/crates/vsh-vfs/Cargo.toml +18 -0
  35. vsh_python-0.3.1/crates/vsh-vfs/src/lib.rs +2467 -0
  36. vsh_python-0.3.1/crates/vsh-worker/Cargo.toml +31 -0
  37. vsh_python-0.3.1/crates/vsh-worker/src/child.rs +468 -0
  38. vsh_python-0.3.1/crates/vsh-worker/src/lib.rs +5 -0
  39. vsh_python-0.3.1/crates/vsh-worker/src/main.rs +94 -0
  40. vsh_python-0.3.1/crates/vsh-worker/tests/subprocess.rs +313 -0
  41. vsh_python-0.3.1/pyproject.toml +214 -0
  42. vsh_python-0.3.1/rust-toolchain.toml +4 -0
  43. vsh_python-0.3.1/scripts/vsh_build_backend.py +120 -0
  44. vsh_python-0.3.1/src/vsh/__init__.py +39 -0
  45. vsh_python-0.3.1/src/vsh/__main__.py +6 -0
  46. vsh_python-0.3.1/src/vsh/_native.pyi +204 -0
  47. vsh_python-0.3.1/src/vsh/_version.py +5 -0
  48. vsh_python-0.3.1/src/vsh/cli.py +56 -0
  49. vsh_python-0.3.1/src/vsh/mcp/__init__.py +5 -0
  50. vsh_python-0.3.1/src/vsh/mcp/codemode_server.py +125 -0
  51. vsh_python-0.3.1/src/vsh/mcp/native_tools.py +157 -0
  52. vsh_python-0.3.1/src/vsh/mcp/prompts.py +32 -0
  53. vsh_python-0.3.1/src/vsh/mcp/server.py +8 -0
  54. vsh_python-0.3.1/src/vsh/mcp/surface.py +17 -0
  55. vsh_python-0.3.1/src/vsh/py.typed +1 -0
@@ -0,0 +1,2197 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "getrandom 0.3.4",
13
+ "once_cell",
14
+ "serde",
15
+ "version_check",
16
+ "zerocopy",
17
+ ]
18
+
19
+ [[package]]
20
+ name = "aho-corasick"
21
+ version = "1.1.5"
22
+ source = "registry+https://github.com/rust-lang/crates.io-index"
23
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
24
+ dependencies = [
25
+ "memchr",
26
+ ]
27
+
28
+ [[package]]
29
+ name = "allocator-api2"
30
+ version = "0.2.21"
31
+ source = "registry+https://github.com/rust-lang/crates.io-index"
32
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
33
+
34
+ [[package]]
35
+ name = "ambient-authority"
36
+ version = "0.0.2"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "e9d4ee0d472d1cd2e28c97dfa124b3d8d992e10eb0a035f33f5d12e3a177ba3b"
39
+
40
+ [[package]]
41
+ name = "android_system_properties"
42
+ version = "0.1.6"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
45
+ dependencies = [
46
+ "libc",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "anyhow"
51
+ version = "1.0.104"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
54
+
55
+ [[package]]
56
+ name = "arrayvec"
57
+ version = "0.7.8"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
60
+
61
+ [[package]]
62
+ name = "atomic-polyfill"
63
+ version = "1.0.3"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4"
66
+ dependencies = [
67
+ "critical-section",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "attribute-derive"
72
+ version = "0.10.5"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "05832cdddc8f2650cc2cc187cc2e952b8c133a48eb055f35211f61ee81502d77"
75
+ dependencies = [
76
+ "attribute-derive-macro",
77
+ "derive-where",
78
+ "manyhow",
79
+ "proc-macro2",
80
+ "quote",
81
+ "syn 2.0.119",
82
+ ]
83
+
84
+ [[package]]
85
+ name = "attribute-derive-macro"
86
+ version = "0.10.5"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "0a7cdbbd4bd005c5d3e2e9c885e6fa575db4f4a3572335b974d8db853b6beb61"
89
+ dependencies = [
90
+ "collection_literals",
91
+ "interpolator",
92
+ "manyhow",
93
+ "proc-macro-utils",
94
+ "proc-macro2",
95
+ "quote",
96
+ "quote-use",
97
+ "syn 2.0.119",
98
+ ]
99
+
100
+ [[package]]
101
+ name = "autocfg"
102
+ version = "1.5.1"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
105
+
106
+ [[package]]
107
+ name = "bit-set"
108
+ version = "0.8.0"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
111
+ dependencies = [
112
+ "bit-vec",
113
+ ]
114
+
115
+ [[package]]
116
+ name = "bit-vec"
117
+ version = "0.8.0"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
120
+
121
+ [[package]]
122
+ name = "bitflags"
123
+ version = "2.13.1"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
126
+
127
+ [[package]]
128
+ name = "bitvec"
129
+ version = "1.1.1"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
132
+ dependencies = [
133
+ "funty",
134
+ "radium",
135
+ "tap",
136
+ "wyz",
137
+ ]
138
+
139
+ [[package]]
140
+ name = "blake3"
141
+ version = "1.8.7"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "6d9e454fc11f76977dc803893aff6304ed33d6a26efae8696573bea74baa27ae"
144
+ dependencies = [
145
+ "arrayvec",
146
+ "cc",
147
+ "cfg-if",
148
+ "constant_time_eq",
149
+ "cpufeatures",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "bstr"
154
+ version = "1.13.1"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "6bb31b46c14244e20ee9984b11bf5c992b91fb6939fea616e3512c8baecdbe5f"
157
+ dependencies = [
158
+ "memchr",
159
+ "regex-automata",
160
+ "serde_core",
161
+ ]
162
+
163
+ [[package]]
164
+ name = "bumpalo"
165
+ version = "3.20.3"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
168
+
169
+ [[package]]
170
+ name = "byteorder"
171
+ version = "1.5.0"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
174
+
175
+ [[package]]
176
+ name = "bytes"
177
+ version = "1.12.1"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
180
+
181
+ [[package]]
182
+ name = "cap-fs-ext"
183
+ version = "4.0.3"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "56ff379b70af8e08307a8f65e7040c7301cb4a572538ade16b4984f0da77847f"
186
+ dependencies = [
187
+ "cap-primitives",
188
+ "cap-std",
189
+ "io-lifetimes 3.0.1",
190
+ "windows-sys 0.61.2",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "cap-primitives"
195
+ version = "4.0.3"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "8b5f74729fd2f44701d1a8eb47e906cdb3ccd9ec0f02baad85a744b791940b18"
198
+ dependencies = [
199
+ "ambient-authority",
200
+ "fs-set-times",
201
+ "io-extras",
202
+ "io-lifetimes 3.0.1",
203
+ "ipnet",
204
+ "maybe-owned",
205
+ "rustix",
206
+ "rustix-linux-procfs",
207
+ "windows-sys 0.61.2",
208
+ "winx",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "cap-std"
213
+ version = "4.0.3"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "c1ec78e242cfa2cfe276807ac2ecc00315a6c97786977414bcd1c3963b6c91b8"
216
+ dependencies = [
217
+ "cap-primitives",
218
+ "io-extras",
219
+ "io-lifetimes 3.0.1",
220
+ "rustix",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "castaway"
225
+ version = "0.2.4"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
228
+ dependencies = [
229
+ "rustversion",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "cc"
234
+ version = "1.4.4"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273"
237
+ dependencies = [
238
+ "find-msvc-tools",
239
+ "shlex",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "cfg-if"
244
+ version = "1.0.4"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
247
+
248
+ [[package]]
249
+ name = "chrono"
250
+ version = "0.4.45"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
253
+ dependencies = [
254
+ "iana-time-zone",
255
+ "js-sys",
256
+ "num-traits",
257
+ "serde",
258
+ "wasm-bindgen",
259
+ "windows-link",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "cobs"
264
+ version = "0.3.0"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
267
+ dependencies = [
268
+ "thiserror",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "collection_literals"
273
+ version = "1.0.3"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "2550f75b8cfac212855f6b1885455df8eaee8fe8e246b647d69146142e016084"
276
+
277
+ [[package]]
278
+ name = "compact_str"
279
+ version = "0.9.1"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab"
282
+ dependencies = [
283
+ "castaway",
284
+ "cfg-if",
285
+ "itoa",
286
+ "rustversion",
287
+ "ryu",
288
+ "static_assertions",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "constant_time_eq"
293
+ version = "0.4.2"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
296
+
297
+ [[package]]
298
+ name = "core-foundation-sys"
299
+ version = "0.8.7"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
302
+
303
+ [[package]]
304
+ name = "cpufeatures"
305
+ version = "0.3.1"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
308
+ dependencies = [
309
+ "libc",
310
+ ]
311
+
312
+ [[package]]
313
+ name = "critical-section"
314
+ version = "1.2.0"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
317
+
318
+ [[package]]
319
+ name = "derive-where"
320
+ version = "1.6.1"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534"
323
+ dependencies = [
324
+ "proc-macro2",
325
+ "quote",
326
+ "syn 2.0.119",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "displaydoc"
331
+ version = "0.2.7"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
334
+ dependencies = [
335
+ "proc-macro2",
336
+ "quote",
337
+ "syn 3.0.4",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "either"
342
+ version = "1.18.0"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
345
+
346
+ [[package]]
347
+ name = "embedded-io"
348
+ version = "0.4.0"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
351
+
352
+ [[package]]
353
+ name = "embedded-io"
354
+ version = "0.6.1"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
357
+
358
+ [[package]]
359
+ name = "equivalent"
360
+ version = "1.0.2"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
363
+
364
+ [[package]]
365
+ name = "errno"
366
+ version = "0.3.14"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
369
+ dependencies = [
370
+ "libc",
371
+ "windows-sys 0.61.2",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "fancy-regex"
376
+ version = "0.17.0"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "72cf461f865c862bb7dc573f643dd6a2b6842f7c30b07882b56bd148cc2761b8"
379
+ dependencies = [
380
+ "bit-set",
381
+ "regex-automata",
382
+ "regex-syntax",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "find-msvc-tools"
387
+ version = "0.1.11"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
390
+
391
+ [[package]]
392
+ name = "foldhash"
393
+ version = "0.2.0"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
396
+
397
+ [[package]]
398
+ name = "fs-set-times"
399
+ version = "0.20.3"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "94e7099f6313ecacbe1256e8ff9d617b75d1bcb16a6fddef94866d225a01a14a"
402
+ dependencies = [
403
+ "io-lifetimes 2.0.4",
404
+ "rustix",
405
+ "windows-sys 0.59.0",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "funty"
410
+ version = "2.0.0"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
413
+
414
+ [[package]]
415
+ name = "futures-core"
416
+ version = "0.3.34"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
419
+
420
+ [[package]]
421
+ name = "futures-task"
422
+ version = "0.3.34"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
425
+
426
+ [[package]]
427
+ name = "futures-util"
428
+ version = "0.3.34"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
431
+ dependencies = [
432
+ "futures-core",
433
+ "futures-task",
434
+ "pin-project-lite",
435
+ "slab",
436
+ ]
437
+
438
+ [[package]]
439
+ name = "get-size-derive2"
440
+ version = "0.10.3"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "c736d226c32e496b8377813b52269e11ad3a48d8373b68862d0364f04fd1229d"
443
+ dependencies = [
444
+ "attribute-derive",
445
+ "quote",
446
+ "syn 2.0.119",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "get-size2"
451
+ version = "0.10.1"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "823645bc6404ae2915707777061a47d3a031a9ee0bff51b34ec973df3d8d2990"
454
+ dependencies = [
455
+ "compact_str",
456
+ "get-size-derive2",
457
+ "hashbrown 0.17.1",
458
+ "ordermap",
459
+ "smallvec",
460
+ "thin-vec",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "getopts"
465
+ version = "0.2.24"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
468
+ dependencies = [
469
+ "unicode-width",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "getrandom"
474
+ version = "0.2.17"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
477
+ dependencies = [
478
+ "cfg-if",
479
+ "libc",
480
+ "wasi",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "getrandom"
485
+ version = "0.3.4"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
488
+ dependencies = [
489
+ "cfg-if",
490
+ "libc",
491
+ "r-efi",
492
+ "wasip2",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "hash32"
497
+ version = "0.2.1"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
500
+ dependencies = [
501
+ "byteorder",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "hashbrown"
506
+ version = "0.16.1"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
509
+ dependencies = [
510
+ "allocator-api2",
511
+ "equivalent",
512
+ "foldhash",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "hashbrown"
517
+ version = "0.17.1"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
520
+
521
+ [[package]]
522
+ name = "heapless"
523
+ version = "0.7.17"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f"
526
+ dependencies = [
527
+ "atomic-polyfill",
528
+ "hash32",
529
+ "rustc_version",
530
+ "serde",
531
+ "spin",
532
+ "stable_deref_trait",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "heck"
537
+ version = "0.5.0"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
540
+
541
+ [[package]]
542
+ name = "iana-time-zone"
543
+ version = "0.1.65"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
546
+ dependencies = [
547
+ "android_system_properties",
548
+ "core-foundation-sys",
549
+ "iana-time-zone-haiku",
550
+ "js-sys",
551
+ "log",
552
+ "wasm-bindgen",
553
+ "windows-core",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "iana-time-zone-haiku"
558
+ version = "0.1.2"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
561
+ dependencies = [
562
+ "cc",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "icu_collections"
567
+ version = "2.3.0"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
570
+ dependencies = [
571
+ "displaydoc",
572
+ "potential_utf",
573
+ "utf8_iter",
574
+ "yoke",
575
+ "zerofrom",
576
+ "zerovec",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "icu_locale_core"
581
+ version = "2.3.0"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
584
+ dependencies = [
585
+ "displaydoc",
586
+ "litemap",
587
+ "tinystr",
588
+ "writeable",
589
+ "zerovec",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "icu_properties"
594
+ version = "2.3.0"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
597
+ dependencies = [
598
+ "displaydoc",
599
+ "icu_collections",
600
+ "icu_locale_core",
601
+ "icu_properties_data",
602
+ "icu_provider",
603
+ "zerotrie",
604
+ "zerovec",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "icu_properties_data"
609
+ version = "2.3.0"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
612
+
613
+ [[package]]
614
+ name = "icu_provider"
615
+ version = "2.3.1"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73"
618
+ dependencies = [
619
+ "displaydoc",
620
+ "icu_locale_core",
621
+ "writeable",
622
+ "yoke",
623
+ "zerofrom",
624
+ "zerotrie",
625
+ "zerovec",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "indexmap"
630
+ version = "2.14.0"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
633
+ dependencies = [
634
+ "equivalent",
635
+ "hashbrown 0.17.1",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "interpolator"
640
+ version = "0.5.0"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
643
+
644
+ [[package]]
645
+ name = "io-extras"
646
+ version = "0.19.0"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "20fd6de4ccfcc187e38bc21cfa543cb5a302cb86a8b114eb7f0bf0dc9f8ac00f"
649
+ dependencies = [
650
+ "io-lifetimes 3.0.1",
651
+ "windows-sys 0.60.2",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "io-lifetimes"
656
+ version = "2.0.4"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "06432fb54d3be7964ecd3649233cddf80db2832f47fec34c01f65b3d9d774983"
659
+
660
+ [[package]]
661
+ name = "io-lifetimes"
662
+ version = "3.0.1"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "2f0fb0570afe1fed943c5c3d4102d5358592d8625fda6a0007fdbe65a92fba96"
665
+
666
+ [[package]]
667
+ name = "ipnet"
668
+ version = "2.12.1"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78"
671
+
672
+ [[package]]
673
+ name = "is-macro"
674
+ version = "0.3.8"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "8267aa6001e25494f3015f9663bbd88a18240c74483afa5f0934a1b3e4c388e9"
677
+ dependencies = [
678
+ "heck",
679
+ "proc-macro2",
680
+ "quote",
681
+ "syn 2.0.119",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "itertools"
686
+ version = "0.14.0"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
689
+ dependencies = [
690
+ "either",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "itertools"
695
+ version = "0.15.0"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
698
+ dependencies = [
699
+ "either",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "itoa"
704
+ version = "1.0.18"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
707
+
708
+ [[package]]
709
+ name = "jiter"
710
+ version = "0.16.0"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "820ddcacd75c9782308d3fa594f3885630ea3f49adba78a8a29abdfe4b81630c"
713
+ dependencies = [
714
+ "ahash",
715
+ "bitvec",
716
+ "lexical-parse-float",
717
+ "num-bigint",
718
+ "num-traits",
719
+ "pyo3",
720
+ "smallvec",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "js-sys"
725
+ version = "0.3.104"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
728
+ dependencies = [
729
+ "cfg-if",
730
+ "futures-util",
731
+ "wasm-bindgen",
732
+ ]
733
+
734
+ [[package]]
735
+ name = "lexical-parse-float"
736
+ version = "1.0.6"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
739
+ dependencies = [
740
+ "lexical-parse-integer",
741
+ "lexical-util",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "lexical-parse-integer"
746
+ version = "1.0.6"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
749
+ dependencies = [
750
+ "lexical-util",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "lexical-util"
755
+ version = "1.0.7"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
758
+
759
+ [[package]]
760
+ name = "libc"
761
+ version = "0.2.189"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
764
+
765
+ [[package]]
766
+ name = "libm"
767
+ version = "0.2.16"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
770
+
771
+ [[package]]
772
+ name = "linux-raw-sys"
773
+ version = "0.12.1"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
776
+
777
+ [[package]]
778
+ name = "litemap"
779
+ version = "0.8.3"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
782
+
783
+ [[package]]
784
+ name = "lock_api"
785
+ version = "0.4.14"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
788
+ dependencies = [
789
+ "scopeguard",
790
+ ]
791
+
792
+ [[package]]
793
+ name = "log"
794
+ version = "0.4.34"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
797
+
798
+ [[package]]
799
+ name = "manyhow"
800
+ version = "0.11.4"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "b33efb3ca6d3b07393750d4030418d594ab1139cee518f0dc88db70fec873587"
803
+ dependencies = [
804
+ "manyhow-macros",
805
+ "proc-macro2",
806
+ "quote",
807
+ "syn 2.0.119",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "manyhow-macros"
812
+ version = "0.11.4"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "46fce34d199b78b6e6073abf984c9cf5fd3e9330145a93ee0738a7443e371495"
815
+ dependencies = [
816
+ "proc-macro-utils",
817
+ "proc-macro2",
818
+ "quote",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "maybe-owned"
823
+ version = "0.3.4"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4"
826
+
827
+ [[package]]
828
+ name = "memchr"
829
+ version = "2.8.3"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
832
+
833
+ [[package]]
834
+ name = "monty"
835
+ version = "0.0.21"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "db44565f603ada5dd98bd580623cd9ce299c8b823bd7195c654826fa536b4d48"
838
+ dependencies = [
839
+ "ahash",
840
+ "chrono",
841
+ "fancy-regex",
842
+ "hashbrown 0.16.1",
843
+ "indexmap",
844
+ "itertools 0.14.0",
845
+ "itoa",
846
+ "jiter",
847
+ "libm",
848
+ "memchr",
849
+ "monty-macros",
850
+ "monty-types",
851
+ "num-bigint",
852
+ "num-integer",
853
+ "num-traits",
854
+ "postcard",
855
+ "ruff_python_ast",
856
+ "ruff_python_codegen",
857
+ "ruff_python_parser",
858
+ "ruff_python_stdlib",
859
+ "ruff_source_file",
860
+ "ruff_text_size",
861
+ "serde",
862
+ "smallvec",
863
+ "speedate",
864
+ "strum",
865
+ "unicode-general-category",
866
+ "unicode-normalization",
867
+ "unicode_names2",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "monty-alloc"
872
+ version = "0.0.21"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "c0116e09c9b26d3ff56bdc9678a2a8704a8e868a58b743d1df947f85109258d2"
875
+ dependencies = [
876
+ "monty-types",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "monty-macros"
881
+ version = "0.0.21"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "40ed428288161f63d2bec7929438563fe31390f08e014e58ce20be96d7ef82ee"
884
+ dependencies = [
885
+ "proc-macro2",
886
+ "quote",
887
+ "syn 2.0.119",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "monty-proto"
892
+ version = "0.0.21"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "b8741cb0a667eebd8bf090affd2f5f92bcf1597b9216f7714e9ea6b2ef6ac556"
895
+ dependencies = [
896
+ "monty-types",
897
+ "num-bigint",
898
+ "prost",
899
+ "pyo3",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "monty-types"
904
+ version = "0.0.21"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "00b4b3318107fee36c5eee05c52f16f6565a63aa29d04f8608ebc221e3fe5dd8"
907
+ dependencies = [
908
+ "chrono",
909
+ "monty-macros",
910
+ "num-bigint",
911
+ "num-traits",
912
+ "serde",
913
+ "strum",
914
+ "unicode-general-category",
915
+ "web-time",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "num-bigint"
920
+ version = "0.4.8"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
923
+ dependencies = [
924
+ "num-integer",
925
+ "num-traits",
926
+ "serde",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "num-integer"
931
+ version = "0.1.47"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
934
+ dependencies = [
935
+ "num-traits",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "num-traits"
940
+ version = "0.2.19"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
943
+ dependencies = [
944
+ "autocfg",
945
+ ]
946
+
947
+ [[package]]
948
+ name = "once_cell"
949
+ version = "1.21.4"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
952
+
953
+ [[package]]
954
+ name = "ordermap"
955
+ version = "1.2.0"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "7f7476a5b122ff1fce7208e7ee9dccd0a516e835f5b8b19b8f3c98a34cf757c1"
958
+ dependencies = [
959
+ "indexmap",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "phf"
964
+ version = "0.11.3"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
967
+ dependencies = [
968
+ "phf_shared",
969
+ ]
970
+
971
+ [[package]]
972
+ name = "phf_codegen"
973
+ version = "0.11.3"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
976
+ dependencies = [
977
+ "phf_generator",
978
+ "phf_shared",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "phf_generator"
983
+ version = "0.11.3"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
986
+ dependencies = [
987
+ "phf_shared",
988
+ "rand",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "phf_shared"
993
+ version = "0.11.3"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
996
+ dependencies = [
997
+ "siphasher",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "pin-project-lite"
1002
+ version = "0.2.17"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1005
+
1006
+ [[package]]
1007
+ name = "portable-atomic"
1008
+ version = "1.15.0"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
1011
+
1012
+ [[package]]
1013
+ name = "postcard"
1014
+ version = "1.1.3"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
1017
+ dependencies = [
1018
+ "cobs",
1019
+ "embedded-io 0.4.0",
1020
+ "embedded-io 0.6.1",
1021
+ "heapless",
1022
+ "serde",
1023
+ ]
1024
+
1025
+ [[package]]
1026
+ name = "potential_utf"
1027
+ version = "0.1.6"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
1030
+ dependencies = [
1031
+ "zerovec",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "ppv-lite86"
1036
+ version = "0.2.21"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1039
+ dependencies = [
1040
+ "zerocopy",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "proc-macro-utils"
1045
+ version = "0.10.0"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
1048
+ dependencies = [
1049
+ "proc-macro2",
1050
+ "quote",
1051
+ "smallvec",
1052
+ ]
1053
+
1054
+ [[package]]
1055
+ name = "proc-macro2"
1056
+ version = "1.0.107"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
1059
+ dependencies = [
1060
+ "unicode-ident",
1061
+ ]
1062
+
1063
+ [[package]]
1064
+ name = "prost"
1065
+ version = "0.14.4"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "528ac67416ff8646872a3c02cad9cc4ee5dc9f9540c9b10771855c95cb2e5ae1"
1068
+ dependencies = [
1069
+ "bytes",
1070
+ "prost-derive",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "prost-derive"
1075
+ version = "0.14.4"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf"
1078
+ dependencies = [
1079
+ "anyhow",
1080
+ "itertools 0.14.0",
1081
+ "proc-macro2",
1082
+ "quote",
1083
+ "syn 2.0.119",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "pyo3"
1088
+ version = "0.29.2"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
1091
+ dependencies = [
1092
+ "libc",
1093
+ "num-bigint",
1094
+ "num-traits",
1095
+ "once_cell",
1096
+ "portable-atomic",
1097
+ "pyo3-build-config",
1098
+ "pyo3-ffi",
1099
+ "pyo3-macros",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "pyo3-build-config"
1104
+ version = "0.29.2"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
1107
+ dependencies = [
1108
+ "target-lexicon",
1109
+ ]
1110
+
1111
+ [[package]]
1112
+ name = "pyo3-ffi"
1113
+ version = "0.29.2"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
1116
+ dependencies = [
1117
+ "libc",
1118
+ "pyo3-build-config",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "pyo3-macros"
1123
+ version = "0.29.2"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
1126
+ dependencies = [
1127
+ "proc-macro2",
1128
+ "pyo3-macros-backend",
1129
+ "quote",
1130
+ "syn 2.0.119",
1131
+ ]
1132
+
1133
+ [[package]]
1134
+ name = "pyo3-macros-backend"
1135
+ version = "0.29.2"
1136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1137
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
1138
+ dependencies = [
1139
+ "heck",
1140
+ "proc-macro2",
1141
+ "quote",
1142
+ "syn 2.0.119",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "quote"
1147
+ version = "1.0.47"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
1150
+ dependencies = [
1151
+ "proc-macro2",
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "quote-use"
1156
+ version = "0.8.4"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "9619db1197b497a36178cfc736dc96b271fe918875fbf1344c436a7e93d0321e"
1159
+ dependencies = [
1160
+ "quote",
1161
+ "quote-use-macros",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "quote-use-macros"
1166
+ version = "0.8.4"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "82ebfb7faafadc06a7ab141a6f67bcfb24cb8beb158c6fe933f2f035afa99f35"
1169
+ dependencies = [
1170
+ "proc-macro-utils",
1171
+ "proc-macro2",
1172
+ "quote",
1173
+ "syn 2.0.119",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "r-efi"
1178
+ version = "5.3.0"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1181
+
1182
+ [[package]]
1183
+ name = "radium"
1184
+ version = "0.7.0"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
1187
+
1188
+ [[package]]
1189
+ name = "rand"
1190
+ version = "0.8.8"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c"
1193
+ dependencies = [
1194
+ "libc",
1195
+ "rand_chacha",
1196
+ "rand_core",
1197
+ ]
1198
+
1199
+ [[package]]
1200
+ name = "rand_chacha"
1201
+ version = "0.3.1"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1204
+ dependencies = [
1205
+ "ppv-lite86",
1206
+ "rand_core",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "rand_core"
1211
+ version = "0.6.4"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1214
+ dependencies = [
1215
+ "getrandom 0.2.17",
1216
+ ]
1217
+
1218
+ [[package]]
1219
+ name = "regex-automata"
1220
+ version = "0.4.18"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
1223
+ dependencies = [
1224
+ "aho-corasick",
1225
+ "memchr",
1226
+ "regex-syntax",
1227
+ ]
1228
+
1229
+ [[package]]
1230
+ name = "regex-syntax"
1231
+ version = "0.8.11"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1234
+
1235
+ [[package]]
1236
+ name = "ruff_python_ast"
1237
+ version = "0.0.3"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "a10ab966362319801f5e85ce5c6aeac69f0cf50936a31e888f5d004e9279f337"
1240
+ dependencies = [
1241
+ "aho-corasick",
1242
+ "arrayvec",
1243
+ "bitflags",
1244
+ "compact_str",
1245
+ "get-size2",
1246
+ "is-macro",
1247
+ "memchr",
1248
+ "ruff_python_trivia",
1249
+ "ruff_source_file",
1250
+ "ruff_text_size",
1251
+ "rustc-hash",
1252
+ "thin-vec",
1253
+ "thiserror",
1254
+ ]
1255
+
1256
+ [[package]]
1257
+ name = "ruff_python_codegen"
1258
+ version = "0.0.3"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "1902d82ae0745be9d3d12a1aee4429acff987c768710dc38a6521eab05990ca0"
1261
+ dependencies = [
1262
+ "ruff_python_ast",
1263
+ "ruff_python_literal",
1264
+ "ruff_python_parser",
1265
+ "ruff_source_file",
1266
+ "ruff_text_size",
1267
+ ]
1268
+
1269
+ [[package]]
1270
+ name = "ruff_python_literal"
1271
+ version = "0.0.3"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "af3e1f868fa58adc12d1fa3ce1b29c6098aa4b101739d9589cbde9fec239af59"
1274
+ dependencies = [
1275
+ "bitflags",
1276
+ "icu_properties",
1277
+ "itertools 0.15.0",
1278
+ "ruff_python_ast",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "ruff_python_parser"
1283
+ version = "0.0.3"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "4e3b8436fb010636ea79ce545acc3e391296ef4e804f7cef336dd5f9c8a4aa3a"
1286
+ dependencies = [
1287
+ "bitflags",
1288
+ "bstr",
1289
+ "compact_str",
1290
+ "get-size2",
1291
+ "memchr",
1292
+ "ruff_python_ast",
1293
+ "ruff_python_trivia",
1294
+ "ruff_text_size",
1295
+ "rustc-hash",
1296
+ "static_assertions",
1297
+ "thin-vec",
1298
+ "unicode-ident",
1299
+ "unicode-normalization",
1300
+ "unicode_names2",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "ruff_python_stdlib"
1305
+ version = "0.0.3"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "8c8860927bf42efdabb31ccb2ac9b8f98ee43897b45536f8023e217b158e49a4"
1308
+ dependencies = [
1309
+ "bitflags",
1310
+ "unicode-ident",
1311
+ ]
1312
+
1313
+ [[package]]
1314
+ name = "ruff_python_trivia"
1315
+ version = "0.0.3"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "969e4a14b2550818efea99b9e2361c714c72e4f1fb94799251d55aed20345189"
1318
+ dependencies = [
1319
+ "itertools 0.15.0",
1320
+ "ruff_source_file",
1321
+ "ruff_text_size",
1322
+ "unicode-ident",
1323
+ ]
1324
+
1325
+ [[package]]
1326
+ name = "ruff_source_file"
1327
+ version = "0.0.3"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "c194e02d121e4a1744464ce3a982c4c196eb039bbf67532d18c8ce09f8da6381"
1330
+ dependencies = [
1331
+ "memchr",
1332
+ "ruff_text_size",
1333
+ ]
1334
+
1335
+ [[package]]
1336
+ name = "ruff_text_size"
1337
+ version = "0.0.3"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "c91652ad39be604bc4d5299a5d19feccdd89e255609d89a031e7bb8e0d0aef9f"
1340
+ dependencies = [
1341
+ "get-size2",
1342
+ ]
1343
+
1344
+ [[package]]
1345
+ name = "rustc-hash"
1346
+ version = "2.1.3"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1349
+
1350
+ [[package]]
1351
+ name = "rustc_version"
1352
+ version = "0.4.1"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1355
+ dependencies = [
1356
+ "semver",
1357
+ ]
1358
+
1359
+ [[package]]
1360
+ name = "rustix"
1361
+ version = "1.1.4"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1364
+ dependencies = [
1365
+ "bitflags",
1366
+ "errno",
1367
+ "libc",
1368
+ "linux-raw-sys",
1369
+ "windows-sys 0.61.2",
1370
+ ]
1371
+
1372
+ [[package]]
1373
+ name = "rustix-linux-procfs"
1374
+ version = "0.1.1"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "2fc84bf7e9aa16c4f2c758f27412dc9841341e16aa682d9c7ac308fe3ee12056"
1377
+ dependencies = [
1378
+ "once_cell",
1379
+ "rustix",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "rustversion"
1384
+ version = "1.0.23"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1387
+
1388
+ [[package]]
1389
+ name = "ryu"
1390
+ version = "1.0.23"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1393
+
1394
+ [[package]]
1395
+ name = "scopeguard"
1396
+ version = "1.2.0"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1399
+
1400
+ [[package]]
1401
+ name = "semver"
1402
+ version = "1.0.28"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1405
+
1406
+ [[package]]
1407
+ name = "serde"
1408
+ version = "1.0.229"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1411
+ dependencies = [
1412
+ "serde_core",
1413
+ "serde_derive",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "serde_core"
1418
+ version = "1.0.229"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1421
+ dependencies = [
1422
+ "serde_derive",
1423
+ ]
1424
+
1425
+ [[package]]
1426
+ name = "serde_derive"
1427
+ version = "1.0.229"
1428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1429
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1430
+ dependencies = [
1431
+ "proc-macro2",
1432
+ "quote",
1433
+ "syn 3.0.4",
1434
+ ]
1435
+
1436
+ [[package]]
1437
+ name = "shlex"
1438
+ version = "2.0.1"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1441
+
1442
+ [[package]]
1443
+ name = "siphasher"
1444
+ version = "1.0.3"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
1447
+
1448
+ [[package]]
1449
+ name = "slab"
1450
+ version = "0.4.12"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1453
+
1454
+ [[package]]
1455
+ name = "smallvec"
1456
+ version = "1.15.2"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1459
+ dependencies = [
1460
+ "serde",
1461
+ ]
1462
+
1463
+ [[package]]
1464
+ name = "speedate"
1465
+ version = "0.17.0"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "aba069c070b5e213f2a094deb7e5ed50ecb092be36102a4f4042e8d2056d060e"
1468
+ dependencies = [
1469
+ "lexical-parse-float",
1470
+ "strum",
1471
+ "strum_macros",
1472
+ ]
1473
+
1474
+ [[package]]
1475
+ name = "spin"
1476
+ version = "0.9.9"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
1479
+ dependencies = [
1480
+ "lock_api",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "stable_deref_trait"
1485
+ version = "1.2.1"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1488
+
1489
+ [[package]]
1490
+ name = "static_assertions"
1491
+ version = "1.1.0"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1494
+
1495
+ [[package]]
1496
+ name = "strum"
1497
+ version = "0.27.2"
1498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1499
+ checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
1500
+ dependencies = [
1501
+ "strum_macros",
1502
+ ]
1503
+
1504
+ [[package]]
1505
+ name = "strum_macros"
1506
+ version = "0.27.2"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
1509
+ dependencies = [
1510
+ "heck",
1511
+ "proc-macro2",
1512
+ "quote",
1513
+ "syn 2.0.119",
1514
+ ]
1515
+
1516
+ [[package]]
1517
+ name = "syn"
1518
+ version = "2.0.119"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1521
+ dependencies = [
1522
+ "proc-macro2",
1523
+ "quote",
1524
+ "unicode-ident",
1525
+ ]
1526
+
1527
+ [[package]]
1528
+ name = "syn"
1529
+ version = "3.0.4"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
1532
+ dependencies = [
1533
+ "proc-macro2",
1534
+ "quote",
1535
+ "unicode-ident",
1536
+ ]
1537
+
1538
+ [[package]]
1539
+ name = "synstructure"
1540
+ version = "0.13.2"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1543
+ dependencies = [
1544
+ "proc-macro2",
1545
+ "quote",
1546
+ "syn 2.0.119",
1547
+ ]
1548
+
1549
+ [[package]]
1550
+ name = "tap"
1551
+ version = "1.0.1"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1554
+
1555
+ [[package]]
1556
+ name = "target-lexicon"
1557
+ version = "0.13.5"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1560
+
1561
+ [[package]]
1562
+ name = "thin-vec"
1563
+ version = "0.2.19"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "79def32ffcd477db1ff26f76dab9e3a91f0bd42a85ca96577089b24623056f9d"
1566
+
1567
+ [[package]]
1568
+ name = "thiserror"
1569
+ version = "2.0.20"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
1572
+ dependencies = [
1573
+ "thiserror-impl",
1574
+ ]
1575
+
1576
+ [[package]]
1577
+ name = "thiserror-impl"
1578
+ version = "2.0.20"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
1581
+ dependencies = [
1582
+ "proc-macro2",
1583
+ "quote",
1584
+ "syn 3.0.4",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "tinystr"
1589
+ version = "0.8.4"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
1592
+ dependencies = [
1593
+ "displaydoc",
1594
+ "zerovec",
1595
+ ]
1596
+
1597
+ [[package]]
1598
+ name = "tinyvec"
1599
+ version = "1.12.0"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
1602
+ dependencies = [
1603
+ "tinyvec_macros",
1604
+ ]
1605
+
1606
+ [[package]]
1607
+ name = "tinyvec_macros"
1608
+ version = "0.1.1"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1611
+
1612
+ [[package]]
1613
+ name = "unicode-general-category"
1614
+ version = "1.1.0"
1615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1616
+ checksum = "0b993bddc193ae5bd0d623b49ec06ac3e9312875fdae725a975c51db1cc1677f"
1617
+
1618
+ [[package]]
1619
+ name = "unicode-ident"
1620
+ version = "1.0.24"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1623
+
1624
+ [[package]]
1625
+ name = "unicode-normalization"
1626
+ version = "0.1.25"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
1629
+ dependencies = [
1630
+ "tinyvec",
1631
+ ]
1632
+
1633
+ [[package]]
1634
+ name = "unicode-width"
1635
+ version = "0.2.2"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1638
+
1639
+ [[package]]
1640
+ name = "unicode_names2"
1641
+ version = "1.3.0"
1642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1643
+ checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
1644
+ dependencies = [
1645
+ "phf",
1646
+ "unicode_names2_generator",
1647
+ ]
1648
+
1649
+ [[package]]
1650
+ name = "unicode_names2_generator"
1651
+ version = "1.3.0"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
1654
+ dependencies = [
1655
+ "getopts",
1656
+ "log",
1657
+ "phf_codegen",
1658
+ "rand",
1659
+ ]
1660
+
1661
+ [[package]]
1662
+ name = "utf8_iter"
1663
+ version = "1.0.4"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1666
+
1667
+ [[package]]
1668
+ name = "vbash"
1669
+ version = "0.3.1"
1670
+ dependencies = [
1671
+ "vsh",
1672
+ ]
1673
+
1674
+ [[package]]
1675
+ name = "version_check"
1676
+ version = "0.9.5"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1679
+
1680
+ [[package]]
1681
+ name = "vsh"
1682
+ version = "0.3.1"
1683
+ dependencies = [
1684
+ "vsh-runtime",
1685
+ ]
1686
+
1687
+ [[package]]
1688
+ name = "vsh-commit"
1689
+ version = "0.3.1"
1690
+ dependencies = [
1691
+ "blake3",
1692
+ "cap-fs-ext",
1693
+ "cap-std",
1694
+ "vsh-policy",
1695
+ "vsh-store",
1696
+ "vsh-types",
1697
+ "vsh-vfs",
1698
+ ]
1699
+
1700
+ [[package]]
1701
+ name = "vsh-monty"
1702
+ version = "0.3.1"
1703
+ dependencies = [
1704
+ "get-size2",
1705
+ "monty",
1706
+ "monty-proto",
1707
+ "monty-types",
1708
+ "vsh-policy",
1709
+ "vsh-store",
1710
+ "vsh-types",
1711
+ "vsh-vfs",
1712
+ ]
1713
+
1714
+ [[package]]
1715
+ name = "vsh-monty-worker"
1716
+ version = "0.3.1"
1717
+ dependencies = [
1718
+ "monty",
1719
+ "monty-alloc",
1720
+ "monty-proto",
1721
+ "monty-types",
1722
+ "vsh-monty",
1723
+ "vsh-runtime",
1724
+ "vsh-store",
1725
+ "vsh-types",
1726
+ "vsh-vfs",
1727
+ ]
1728
+
1729
+ [[package]]
1730
+ name = "vsh-policy"
1731
+ version = "0.3.1"
1732
+ dependencies = [
1733
+ "vsh-store",
1734
+ "vsh-types",
1735
+ "vsh-vfs",
1736
+ ]
1737
+
1738
+ [[package]]
1739
+ name = "vsh-python"
1740
+ version = "0.3.1"
1741
+ dependencies = [
1742
+ "monty-proto",
1743
+ "pyo3",
1744
+ "vsh",
1745
+ "vsh-monty-worker",
1746
+ ]
1747
+
1748
+ [[package]]
1749
+ name = "vsh-runtime"
1750
+ version = "0.3.1"
1751
+ dependencies = [
1752
+ "postcard",
1753
+ "vsh-commit",
1754
+ "vsh-monty",
1755
+ "vsh-policy",
1756
+ "vsh-store",
1757
+ "vsh-types",
1758
+ "vsh-vfs",
1759
+ ]
1760
+
1761
+ [[package]]
1762
+ name = "vsh-store"
1763
+ version = "0.3.1"
1764
+ dependencies = [
1765
+ "blake3",
1766
+ "cap-fs-ext",
1767
+ "cap-std",
1768
+ "vsh-types",
1769
+ ]
1770
+
1771
+ [[package]]
1772
+ name = "vsh-types"
1773
+ version = "0.3.1"
1774
+ dependencies = [
1775
+ "blake3",
1776
+ ]
1777
+
1778
+ [[package]]
1779
+ name = "vsh-vfs"
1780
+ version = "0.3.1"
1781
+ dependencies = [
1782
+ "vsh-store",
1783
+ "vsh-types",
1784
+ ]
1785
+
1786
+ [[package]]
1787
+ name = "wasi"
1788
+ version = "0.11.1+wasi-snapshot-preview1"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1791
+
1792
+ [[package]]
1793
+ name = "wasip2"
1794
+ version = "1.0.4+wasi-0.2.12"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
1797
+ dependencies = [
1798
+ "wit-bindgen",
1799
+ ]
1800
+
1801
+ [[package]]
1802
+ name = "wasm-bindgen"
1803
+ version = "0.2.127"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
1806
+ dependencies = [
1807
+ "cfg-if",
1808
+ "once_cell",
1809
+ "rustversion",
1810
+ "wasm-bindgen-macro",
1811
+ "wasm-bindgen-shared",
1812
+ ]
1813
+
1814
+ [[package]]
1815
+ name = "wasm-bindgen-macro"
1816
+ version = "0.2.127"
1817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1818
+ checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
1819
+ dependencies = [
1820
+ "quote",
1821
+ "wasm-bindgen-macro-support",
1822
+ ]
1823
+
1824
+ [[package]]
1825
+ name = "wasm-bindgen-macro-support"
1826
+ version = "0.2.127"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
1829
+ dependencies = [
1830
+ "bumpalo",
1831
+ "proc-macro2",
1832
+ "quote",
1833
+ "syn 2.0.119",
1834
+ "wasm-bindgen-shared",
1835
+ ]
1836
+
1837
+ [[package]]
1838
+ name = "wasm-bindgen-shared"
1839
+ version = "0.2.127"
1840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1841
+ checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
1842
+ dependencies = [
1843
+ "unicode-ident",
1844
+ ]
1845
+
1846
+ [[package]]
1847
+ name = "web-time"
1848
+ version = "1.1.0"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
1851
+ dependencies = [
1852
+ "js-sys",
1853
+ "wasm-bindgen",
1854
+ ]
1855
+
1856
+ [[package]]
1857
+ name = "windows-core"
1858
+ version = "0.62.2"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1861
+ dependencies = [
1862
+ "windows-implement",
1863
+ "windows-interface",
1864
+ "windows-link",
1865
+ "windows-result",
1866
+ "windows-strings",
1867
+ ]
1868
+
1869
+ [[package]]
1870
+ name = "windows-implement"
1871
+ version = "0.60.2"
1872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1873
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1874
+ dependencies = [
1875
+ "proc-macro2",
1876
+ "quote",
1877
+ "syn 2.0.119",
1878
+ ]
1879
+
1880
+ [[package]]
1881
+ name = "windows-interface"
1882
+ version = "0.59.3"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1885
+ dependencies = [
1886
+ "proc-macro2",
1887
+ "quote",
1888
+ "syn 2.0.119",
1889
+ ]
1890
+
1891
+ [[package]]
1892
+ name = "windows-link"
1893
+ version = "0.2.1"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1896
+
1897
+ [[package]]
1898
+ name = "windows-result"
1899
+ version = "0.4.1"
1900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1901
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1902
+ dependencies = [
1903
+ "windows-link",
1904
+ ]
1905
+
1906
+ [[package]]
1907
+ name = "windows-strings"
1908
+ version = "0.5.1"
1909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1910
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1911
+ dependencies = [
1912
+ "windows-link",
1913
+ ]
1914
+
1915
+ [[package]]
1916
+ name = "windows-sys"
1917
+ version = "0.59.0"
1918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1919
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1920
+ dependencies = [
1921
+ "windows-targets 0.52.6",
1922
+ ]
1923
+
1924
+ [[package]]
1925
+ name = "windows-sys"
1926
+ version = "0.60.2"
1927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1928
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1929
+ dependencies = [
1930
+ "windows-targets 0.53.5",
1931
+ ]
1932
+
1933
+ [[package]]
1934
+ name = "windows-sys"
1935
+ version = "0.61.2"
1936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1937
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1938
+ dependencies = [
1939
+ "windows-link",
1940
+ ]
1941
+
1942
+ [[package]]
1943
+ name = "windows-targets"
1944
+ version = "0.52.6"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1947
+ dependencies = [
1948
+ "windows_aarch64_gnullvm 0.52.6",
1949
+ "windows_aarch64_msvc 0.52.6",
1950
+ "windows_i686_gnu 0.52.6",
1951
+ "windows_i686_gnullvm 0.52.6",
1952
+ "windows_i686_msvc 0.52.6",
1953
+ "windows_x86_64_gnu 0.52.6",
1954
+ "windows_x86_64_gnullvm 0.52.6",
1955
+ "windows_x86_64_msvc 0.52.6",
1956
+ ]
1957
+
1958
+ [[package]]
1959
+ name = "windows-targets"
1960
+ version = "0.53.5"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1963
+ dependencies = [
1964
+ "windows-link",
1965
+ "windows_aarch64_gnullvm 0.53.1",
1966
+ "windows_aarch64_msvc 0.53.1",
1967
+ "windows_i686_gnu 0.53.1",
1968
+ "windows_i686_gnullvm 0.53.1",
1969
+ "windows_i686_msvc 0.53.1",
1970
+ "windows_x86_64_gnu 0.53.1",
1971
+ "windows_x86_64_gnullvm 0.53.1",
1972
+ "windows_x86_64_msvc 0.53.1",
1973
+ ]
1974
+
1975
+ [[package]]
1976
+ name = "windows_aarch64_gnullvm"
1977
+ version = "0.52.6"
1978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1979
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1980
+
1981
+ [[package]]
1982
+ name = "windows_aarch64_gnullvm"
1983
+ version = "0.53.1"
1984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1985
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1986
+
1987
+ [[package]]
1988
+ name = "windows_aarch64_msvc"
1989
+ version = "0.52.6"
1990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1991
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1992
+
1993
+ [[package]]
1994
+ name = "windows_aarch64_msvc"
1995
+ version = "0.53.1"
1996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1998
+
1999
+ [[package]]
2000
+ name = "windows_i686_gnu"
2001
+ version = "0.52.6"
2002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2003
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2004
+
2005
+ [[package]]
2006
+ name = "windows_i686_gnu"
2007
+ version = "0.53.1"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2010
+
2011
+ [[package]]
2012
+ name = "windows_i686_gnullvm"
2013
+ version = "0.52.6"
2014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2015
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2016
+
2017
+ [[package]]
2018
+ name = "windows_i686_gnullvm"
2019
+ version = "0.53.1"
2020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2022
+
2023
+ [[package]]
2024
+ name = "windows_i686_msvc"
2025
+ version = "0.52.6"
2026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2027
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2028
+
2029
+ [[package]]
2030
+ name = "windows_i686_msvc"
2031
+ version = "0.53.1"
2032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2033
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2034
+
2035
+ [[package]]
2036
+ name = "windows_x86_64_gnu"
2037
+ version = "0.52.6"
2038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2039
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2040
+
2041
+ [[package]]
2042
+ name = "windows_x86_64_gnu"
2043
+ version = "0.53.1"
2044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2045
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2046
+
2047
+ [[package]]
2048
+ name = "windows_x86_64_gnullvm"
2049
+ version = "0.52.6"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2052
+
2053
+ [[package]]
2054
+ name = "windows_x86_64_gnullvm"
2055
+ version = "0.53.1"
2056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2058
+
2059
+ [[package]]
2060
+ name = "windows_x86_64_msvc"
2061
+ version = "0.52.6"
2062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2063
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2064
+
2065
+ [[package]]
2066
+ name = "windows_x86_64_msvc"
2067
+ version = "0.53.1"
2068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2069
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2070
+
2071
+ [[package]]
2072
+ name = "winx"
2073
+ version = "0.36.4"
2074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2075
+ checksum = "3f3fd376f71958b862e7afb20cfe5a22830e1963462f3a17f49d82a6c1d1f42d"
2076
+ dependencies = [
2077
+ "bitflags",
2078
+ "windows-sys 0.59.0",
2079
+ ]
2080
+
2081
+ [[package]]
2082
+ name = "wit-bindgen"
2083
+ version = "0.57.1"
2084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2085
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2086
+
2087
+ [[package]]
2088
+ name = "writeable"
2089
+ version = "0.6.4"
2090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2091
+ checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
2092
+
2093
+ [[package]]
2094
+ name = "wyz"
2095
+ version = "0.5.1"
2096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2097
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
2098
+ dependencies = [
2099
+ "tap",
2100
+ ]
2101
+
2102
+ [[package]]
2103
+ name = "yoke"
2104
+ version = "0.8.3"
2105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2106
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
2107
+ dependencies = [
2108
+ "stable_deref_trait",
2109
+ "yoke-derive",
2110
+ "zerofrom",
2111
+ ]
2112
+
2113
+ [[package]]
2114
+ name = "yoke-derive"
2115
+ version = "0.8.2"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2118
+ dependencies = [
2119
+ "proc-macro2",
2120
+ "quote",
2121
+ "syn 2.0.119",
2122
+ "synstructure",
2123
+ ]
2124
+
2125
+ [[package]]
2126
+ name = "zerocopy"
2127
+ version = "0.8.56"
2128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2129
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
2130
+ dependencies = [
2131
+ "zerocopy-derive",
2132
+ ]
2133
+
2134
+ [[package]]
2135
+ name = "zerocopy-derive"
2136
+ version = "0.8.56"
2137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2138
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
2139
+ dependencies = [
2140
+ "proc-macro2",
2141
+ "quote",
2142
+ "syn 2.0.119",
2143
+ ]
2144
+
2145
+ [[package]]
2146
+ name = "zerofrom"
2147
+ version = "0.1.8"
2148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2149
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2150
+ dependencies = [
2151
+ "zerofrom-derive",
2152
+ ]
2153
+
2154
+ [[package]]
2155
+ name = "zerofrom-derive"
2156
+ version = "0.1.7"
2157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2158
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2159
+ dependencies = [
2160
+ "proc-macro2",
2161
+ "quote",
2162
+ "syn 2.0.119",
2163
+ "synstructure",
2164
+ ]
2165
+
2166
+ [[package]]
2167
+ name = "zerotrie"
2168
+ version = "0.2.5"
2169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2170
+ checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
2171
+ dependencies = [
2172
+ "displaydoc",
2173
+ "yoke",
2174
+ "zerofrom",
2175
+ ]
2176
+
2177
+ [[package]]
2178
+ name = "zerovec"
2179
+ version = "0.11.8"
2180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2181
+ checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8"
2182
+ dependencies = [
2183
+ "yoke",
2184
+ "zerofrom",
2185
+ "zerovec-derive",
2186
+ ]
2187
+
2188
+ [[package]]
2189
+ name = "zerovec-derive"
2190
+ version = "0.11.6"
2191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2192
+ checksum = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da"
2193
+ dependencies = [
2194
+ "proc-macro2",
2195
+ "quote",
2196
+ "syn 3.0.4",
2197
+ ]