camau 0.1.0__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 (52) hide show
  1. camau-0.1.0/Cargo.lock +721 -0
  2. camau-0.1.0/Cargo.toml +29 -0
  3. camau-0.1.0/LICENSE +21 -0
  4. camau-0.1.0/PKG-INFO +230 -0
  5. camau-0.1.0/README.md +200 -0
  6. camau-0.1.0/crates/camau-core/Cargo.toml +22 -0
  7. camau-0.1.0/crates/camau-core/src/assessment.rs +18 -0
  8. camau-0.1.0/crates/camau-core/src/diagnostics.rs +129 -0
  9. camau-0.1.0/crates/camau-core/src/diagram.rs +487 -0
  10. camau-0.1.0/crates/camau-core/src/execution/convergence.rs +78 -0
  11. camau-0.1.0/crates/camau-core/src/execution/error.rs +46 -0
  12. camau-0.1.0/crates/camau-core/src/execution/gate.rs +58 -0
  13. camau-0.1.0/crates/camau-core/src/execution/mapping.rs +66 -0
  14. camau-0.1.0/crates/camau-core/src/execution/mod.rs +13 -0
  15. camau-0.1.0/crates/camau-core/src/execution/random.rs +14 -0
  16. camau-0.1.0/crates/camau-core/src/execution/state.rs +248 -0
  17. camau-0.1.0/crates/camau-core/src/execution/tests.rs +54 -0
  18. camau-0.1.0/crates/camau-core/src/graph/algorithms.rs +155 -0
  19. camau-0.1.0/crates/camau-core/src/graph/compiler.rs +168 -0
  20. camau-0.1.0/crates/camau-core/src/graph/mod.rs +32 -0
  21. camau-0.1.0/crates/camau-core/src/graph/model.rs +123 -0
  22. camau-0.1.0/crates/camau-core/src/graph/numbers.rs +92 -0
  23. camau-0.1.0/crates/camau-core/src/graph/semantics/activity.rs +242 -0
  24. camau-0.1.0/crates/camau-core/src/graph/semantics/flow.rs +138 -0
  25. camau-0.1.0/crates/camau-core/src/graph/semantics/gate_validation.rs +165 -0
  26. camau-0.1.0/crates/camau-core/src/graph/semantics/mapping_validation.rs +36 -0
  27. camau-0.1.0/crates/camau-core/src/graph/semantics/mod.rs +289 -0
  28. camau-0.1.0/crates/camau-core/src/graph/structure/gate.rs +167 -0
  29. camau-0.1.0/crates/camau-core/src/graph/structure/mapping.rs +70 -0
  30. camau-0.1.0/crates/camau-core/src/graph/structure/mod.rs +137 -0
  31. camau-0.1.0/crates/camau-core/src/graph/structure/node.rs +325 -0
  32. camau-0.1.0/crates/camau-core/src/graph/tests.rs +122 -0
  33. camau-0.1.0/crates/camau-core/src/json_parser.rs +208 -0
  34. camau-0.1.0/crates/camau-core/src/json_pointer.rs +56 -0
  35. camau-0.1.0/crates/camau-core/src/json_value.rs +58 -0
  36. camau-0.1.0/crates/camau-core/src/lib.rs +8 -0
  37. camau-0.1.0/crates/camau-python/Cargo.toml +25 -0
  38. camau-0.1.0/crates/camau-python/schema/camau.schema.json +244 -0
  39. camau-0.1.0/crates/camau-python/src/assessment.rs +76 -0
  40. camau-0.1.0/crates/camau-python/src/cli.rs +298 -0
  41. camau-0.1.0/crates/camau-python/src/errors.rs +103 -0
  42. camau-0.1.0/crates/camau-python/src/executor.rs +124 -0
  43. camau-0.1.0/crates/camau-python/src/issue.rs +93 -0
  44. camau-0.1.0/crates/camau-python/src/lib.rs +21 -0
  45. camau-0.1.0/crates/camau-python/src/python_value.rs +123 -0
  46. camau-0.1.0/crates/camau-python/src/router.rs +99 -0
  47. camau-0.1.0/pyproject.toml +62 -0
  48. camau-0.1.0/src/camau/__init__.py +23 -0
  49. camau-0.1.0/src/camau/_camau.pyi +75 -0
  50. camau-0.1.0/src/camau/py.typed +1 -0
  51. camau-0.1.0/src/camau/router.py +55 -0
  52. camau-0.1.0/src/camau/types.py +9 -0
camau-0.1.0/Cargo.lock ADDED
@@ -0,0 +1,721 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "anstream"
7
+ version = "1.0.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
10
+ dependencies = [
11
+ "anstyle",
12
+ "anstyle-parse",
13
+ "anstyle-query",
14
+ "anstyle-wincon",
15
+ "colorchoice",
16
+ "is_terminal_polyfill",
17
+ "utf8parse",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anstyle"
22
+ version = "1.0.14"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
25
+
26
+ [[package]]
27
+ name = "anstyle-parse"
28
+ version = "1.0.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
31
+ dependencies = [
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle-query"
37
+ version = "1.1.5"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
40
+ dependencies = [
41
+ "windows-sys",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-wincon"
46
+ version = "3.0.11"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
49
+ dependencies = [
50
+ "anstyle",
51
+ "once_cell_polyfill",
52
+ "windows-sys",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "autocfg"
57
+ version = "1.5.1"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
60
+
61
+ [[package]]
62
+ name = "bit-set"
63
+ version = "0.8.0"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
66
+ dependencies = [
67
+ "bit-vec",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "bit-vec"
72
+ version = "0.8.0"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
75
+
76
+ [[package]]
77
+ name = "bitflags"
78
+ version = "2.13.1"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
81
+
82
+ [[package]]
83
+ name = "camau-core"
84
+ version = "0.1.0"
85
+ dependencies = [
86
+ "indexmap",
87
+ "proptest",
88
+ "rand 0.10.2",
89
+ "rand_chacha 0.10.0",
90
+ "serde",
91
+ "serde_json",
92
+ "thiserror",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "camau-python"
97
+ version = "0.1.0"
98
+ dependencies = [
99
+ "camau-core",
100
+ "clap",
101
+ "indexmap",
102
+ "proptest",
103
+ "pyo3",
104
+ "thiserror",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "cfg-if"
109
+ version = "1.0.4"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
112
+
113
+ [[package]]
114
+ name = "chacha20"
115
+ version = "0.10.2"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"
118
+ dependencies = [
119
+ "cfg-if",
120
+ "cpufeatures",
121
+ "rand_core 0.10.1",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "clap"
126
+ version = "4.6.6"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
129
+ dependencies = [
130
+ "clap_builder",
131
+ "clap_derive",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "clap_builder"
136
+ version = "4.6.6"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
139
+ dependencies = [
140
+ "anstream",
141
+ "anstyle",
142
+ "clap_lex",
143
+ "strsim",
144
+ ]
145
+
146
+ [[package]]
147
+ name = "clap_derive"
148
+ version = "4.6.4"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
151
+ dependencies = [
152
+ "heck",
153
+ "proc-macro2",
154
+ "quote",
155
+ "syn 3.0.4",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "clap_lex"
160
+ version = "1.1.0"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
163
+
164
+ [[package]]
165
+ name = "colorchoice"
166
+ version = "1.0.5"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
169
+
170
+ [[package]]
171
+ name = "cpufeatures"
172
+ version = "0.3.1"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
175
+ dependencies = [
176
+ "libc",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "equivalent"
181
+ version = "1.0.2"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
184
+
185
+ [[package]]
186
+ name = "errno"
187
+ version = "0.3.14"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
190
+ dependencies = [
191
+ "libc",
192
+ "windows-sys",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "fastrand"
197
+ version = "2.5.0"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
200
+
201
+ [[package]]
202
+ name = "fnv"
203
+ version = "1.0.7"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
206
+
207
+ [[package]]
208
+ name = "getrandom"
209
+ version = "0.3.4"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
212
+ dependencies = [
213
+ "cfg-if",
214
+ "libc",
215
+ "r-efi 5.3.0",
216
+ "wasip2",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "getrandom"
221
+ version = "0.4.3"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
224
+ dependencies = [
225
+ "cfg-if",
226
+ "libc",
227
+ "r-efi 6.0.0",
228
+ "rand_core 0.10.1",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "hashbrown"
233
+ version = "0.17.1"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
236
+
237
+ [[package]]
238
+ name = "heck"
239
+ version = "0.5.0"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
242
+
243
+ [[package]]
244
+ name = "indexmap"
245
+ version = "2.14.1"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "07aa2048142242915a31d35844fb311e0e53fcca590c3a0a40dcf1b841fa09eb"
248
+ dependencies = [
249
+ "equivalent",
250
+ "hashbrown",
251
+ "serde",
252
+ "serde_core",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "is_terminal_polyfill"
257
+ version = "1.70.2"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
260
+
261
+ [[package]]
262
+ name = "itoa"
263
+ version = "1.0.18"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
266
+
267
+ [[package]]
268
+ name = "libc"
269
+ version = "0.2.189"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
272
+
273
+ [[package]]
274
+ name = "linux-raw-sys"
275
+ version = "0.12.1"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
278
+
279
+ [[package]]
280
+ name = "memchr"
281
+ version = "2.8.3"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
284
+
285
+ [[package]]
286
+ name = "num-traits"
287
+ version = "0.2.19"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
290
+ dependencies = [
291
+ "autocfg",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "once_cell"
296
+ version = "1.21.4"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
299
+
300
+ [[package]]
301
+ name = "once_cell_polyfill"
302
+ version = "1.70.2"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
305
+
306
+ [[package]]
307
+ name = "portable-atomic"
308
+ version = "1.15.0"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
311
+
312
+ [[package]]
313
+ name = "ppv-lite86"
314
+ version = "0.2.21"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
317
+ dependencies = [
318
+ "zerocopy",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "proc-macro2"
323
+ version = "1.0.107"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
326
+ dependencies = [
327
+ "unicode-ident",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "proptest"
332
+ version = "1.11.0"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
335
+ dependencies = [
336
+ "bit-set",
337
+ "bit-vec",
338
+ "bitflags",
339
+ "num-traits",
340
+ "rand 0.9.5",
341
+ "rand_chacha 0.9.0",
342
+ "rand_xorshift",
343
+ "regex-syntax",
344
+ "rusty-fork",
345
+ "tempfile",
346
+ "unarray",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "pyo3"
351
+ version = "0.29.2"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
354
+ dependencies = [
355
+ "libc",
356
+ "once_cell",
357
+ "portable-atomic",
358
+ "pyo3-build-config",
359
+ "pyo3-ffi",
360
+ "pyo3-macros",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "pyo3-build-config"
365
+ version = "0.29.2"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
368
+ dependencies = [
369
+ "target-lexicon",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "pyo3-ffi"
374
+ version = "0.29.2"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
377
+ dependencies = [
378
+ "libc",
379
+ "pyo3-build-config",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "pyo3-macros"
384
+ version = "0.29.2"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
387
+ dependencies = [
388
+ "proc-macro2",
389
+ "pyo3-macros-backend",
390
+ "quote",
391
+ "syn 2.0.119",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "pyo3-macros-backend"
396
+ version = "0.29.2"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
399
+ dependencies = [
400
+ "heck",
401
+ "proc-macro2",
402
+ "quote",
403
+ "syn 2.0.119",
404
+ ]
405
+
406
+ [[package]]
407
+ name = "quick-error"
408
+ version = "1.2.3"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
411
+
412
+ [[package]]
413
+ name = "quote"
414
+ version = "1.0.47"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
417
+ dependencies = [
418
+ "proc-macro2",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "r-efi"
423
+ version = "5.3.0"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
426
+
427
+ [[package]]
428
+ name = "r-efi"
429
+ version = "6.0.0"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
432
+
433
+ [[package]]
434
+ name = "rand"
435
+ version = "0.9.5"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
438
+ dependencies = [
439
+ "rand_chacha 0.9.0",
440
+ "rand_core 0.9.5",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "rand"
445
+ version = "0.10.2"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
448
+ dependencies = [
449
+ "chacha20",
450
+ "getrandom 0.4.3",
451
+ "rand_core 0.10.1",
452
+ ]
453
+
454
+ [[package]]
455
+ name = "rand_chacha"
456
+ version = "0.9.0"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
459
+ dependencies = [
460
+ "ppv-lite86",
461
+ "rand_core 0.9.5",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "rand_chacha"
466
+ version = "0.10.0"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "3e6af7f3e25ded52c41df4e0b1af2d047e45896c2f3281792ed68a1c243daedb"
469
+ dependencies = [
470
+ "ppv-lite86",
471
+ "rand_core 0.10.1",
472
+ ]
473
+
474
+ [[package]]
475
+ name = "rand_core"
476
+ version = "0.9.5"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
479
+ dependencies = [
480
+ "getrandom 0.3.4",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "rand_core"
485
+ version = "0.10.1"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
488
+
489
+ [[package]]
490
+ name = "rand_xorshift"
491
+ version = "0.4.0"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
494
+ dependencies = [
495
+ "rand_core 0.9.5",
496
+ ]
497
+
498
+ [[package]]
499
+ name = "regex-syntax"
500
+ version = "0.8.11"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
503
+
504
+ [[package]]
505
+ name = "rustix"
506
+ version = "1.1.4"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
509
+ dependencies = [
510
+ "bitflags",
511
+ "errno",
512
+ "libc",
513
+ "linux-raw-sys",
514
+ "windows-sys",
515
+ ]
516
+
517
+ [[package]]
518
+ name = "rusty-fork"
519
+ version = "0.3.1"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
522
+ dependencies = [
523
+ "fnv",
524
+ "quick-error",
525
+ "tempfile",
526
+ "wait-timeout",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "serde"
531
+ version = "1.0.229"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
534
+ dependencies = [
535
+ "serde_core",
536
+ "serde_derive",
537
+ ]
538
+
539
+ [[package]]
540
+ name = "serde_core"
541
+ version = "1.0.229"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
544
+ dependencies = [
545
+ "serde_derive",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "serde_derive"
550
+ version = "1.0.229"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
553
+ dependencies = [
554
+ "proc-macro2",
555
+ "quote",
556
+ "syn 3.0.4",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "serde_json"
561
+ version = "1.0.151"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
564
+ dependencies = [
565
+ "indexmap",
566
+ "itoa",
567
+ "memchr",
568
+ "serde",
569
+ "serde_core",
570
+ "zmij",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "strsim"
575
+ version = "0.11.1"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
578
+
579
+ [[package]]
580
+ name = "syn"
581
+ version = "2.0.119"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
584
+ dependencies = [
585
+ "proc-macro2",
586
+ "quote",
587
+ "unicode-ident",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "syn"
592
+ version = "3.0.4"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
595
+ dependencies = [
596
+ "proc-macro2",
597
+ "quote",
598
+ "unicode-ident",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "target-lexicon"
603
+ version = "0.13.5"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
606
+
607
+ [[package]]
608
+ name = "tempfile"
609
+ version = "3.27.0"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
612
+ dependencies = [
613
+ "fastrand",
614
+ "getrandom 0.4.3",
615
+ "once_cell",
616
+ "rustix",
617
+ "windows-sys",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "thiserror"
622
+ version = "2.0.20"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
625
+ dependencies = [
626
+ "thiserror-impl",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "thiserror-impl"
631
+ version = "2.0.20"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
634
+ dependencies = [
635
+ "proc-macro2",
636
+ "quote",
637
+ "syn 3.0.4",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "unarray"
642
+ version = "0.1.4"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
645
+
646
+ [[package]]
647
+ name = "unicode-ident"
648
+ version = "1.0.24"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
651
+
652
+ [[package]]
653
+ name = "utf8parse"
654
+ version = "0.2.2"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
657
+
658
+ [[package]]
659
+ name = "wait-timeout"
660
+ version = "0.2.1"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
663
+ dependencies = [
664
+ "libc",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "wasip2"
669
+ version = "1.0.1+wasi-0.2.4"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
672
+ dependencies = [
673
+ "wit-bindgen",
674
+ ]
675
+
676
+ [[package]]
677
+ name = "windows-link"
678
+ version = "0.2.1"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
681
+
682
+ [[package]]
683
+ name = "windows-sys"
684
+ version = "0.61.2"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
687
+ dependencies = [
688
+ "windows-link",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "wit-bindgen"
693
+ version = "0.46.0"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
696
+
697
+ [[package]]
698
+ name = "zerocopy"
699
+ version = "0.8.56"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
702
+ dependencies = [
703
+ "zerocopy-derive",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "zerocopy-derive"
708
+ version = "0.8.56"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
711
+ dependencies = [
712
+ "proc-macro2",
713
+ "quote",
714
+ "syn 2.0.119",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "zmij"
719
+ version = "1.0.23"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"