wickra-darwin 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 (38) hide show
  1. wickra_darwin-0.1.0/Cargo.lock +1520 -0
  2. wickra_darwin-0.1.0/Cargo.toml +51 -0
  3. wickra_darwin-0.1.0/PKG-INFO +89 -0
  4. wickra_darwin-0.1.0/README.md +59 -0
  5. wickra_darwin-0.1.0/bindings/python/Cargo.toml +22 -0
  6. wickra_darwin-0.1.0/bindings/python/LICENSE-APACHE +201 -0
  7. wickra_darwin-0.1.0/bindings/python/LICENSE-MIT +21 -0
  8. wickra_darwin-0.1.0/bindings/python/README.md +59 -0
  9. wickra_darwin-0.1.0/bindings/python/src/lib.rs +58 -0
  10. wickra_darwin-0.1.0/bindings/python/tests/run_without_pytest.py +61 -0
  11. wickra_darwin-0.1.0/bindings/python/tests/test_batch_search.py +104 -0
  12. wickra_darwin-0.1.0/bindings/python/tests/test_completeness.py +18 -0
  13. wickra_darwin-0.1.0/bindings/python/tests/test_golden.py +63 -0
  14. wickra_darwin-0.1.0/bindings/python/tests/test_smoke.py +73 -0
  15. wickra_darwin-0.1.0/crates/darwin-core/Cargo.toml +33 -0
  16. wickra_darwin-0.1.0/crates/darwin-core/LICENSE-APACHE +201 -0
  17. wickra_darwin-0.1.0/crates/darwin-core/LICENSE-MIT +21 -0
  18. wickra_darwin-0.1.0/crates/darwin-core/src/config.rs +31 -0
  19. wickra_darwin-0.1.0/crates/darwin-core/src/darwin.rs +110 -0
  20. wickra_darwin-0.1.0/crates/darwin-core/src/error.rs +24 -0
  21. wickra_darwin-0.1.0/crates/darwin-core/src/evolve.rs +334 -0
  22. wickra_darwin-0.1.0/crates/darwin-core/src/fitness.rs +33 -0
  23. wickra_darwin-0.1.0/crates/darwin-core/src/genome.rs +307 -0
  24. wickra_darwin-0.1.0/crates/darwin-core/src/lib.rs +52 -0
  25. wickra_darwin-0.1.0/crates/darwin-core/src/rng.rs +78 -0
  26. wickra_darwin-0.1.0/crates/darwin-core/src/search_space.rs +258 -0
  27. wickra_darwin-0.1.0/crates/darwin-core/src/spec.rs +84 -0
  28. wickra_darwin-0.1.0/crates/darwin-core/tests/conformance.rs +142 -0
  29. wickra_darwin-0.1.0/crates/darwin-core/tests/determinism_eq.rs +106 -0
  30. wickra_darwin-0.1.0/crates/darwin-core/tests/evaluates_candidates.rs +125 -0
  31. wickra_darwin-0.1.0/crates/darwin-core/tests/golden.rs +75 -0
  32. wickra_darwin-0.1.0/crates/darwin-core/tests/proptest_invariants.proptest-regressions +7 -0
  33. wickra_darwin-0.1.0/crates/darwin-core/tests/proptest_invariants.rs +114 -0
  34. wickra_darwin-0.1.0/crates/darwin-core/tests/search_space.rs +63 -0
  35. wickra_darwin-0.1.0/pyproject.toml +47 -0
  36. wickra_darwin-0.1.0/python/wickra_darwin/__init__.py +12 -0
  37. wickra_darwin-0.1.0/python/wickra_darwin/__init__.pyi +25 -0
  38. wickra_darwin-0.1.0/python/wickra_darwin/py.typed +0 -0
@@ -0,0 +1,1520 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anes"
16
+ version = "0.1.6"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
19
+
20
+ [[package]]
21
+ name = "anstream"
22
+ version = "1.0.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
25
+ dependencies = [
26
+ "anstyle",
27
+ "anstyle-parse",
28
+ "anstyle-query",
29
+ "anstyle-wincon",
30
+ "colorchoice",
31
+ "is_terminal_polyfill",
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
40
+
41
+ [[package]]
42
+ name = "anstyle-parse"
43
+ version = "1.0.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
46
+ dependencies = [
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle-query"
52
+ version = "1.1.5"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
55
+ dependencies = [
56
+ "windows-sys",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-wincon"
61
+ version = "3.0.11"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
64
+ dependencies = [
65
+ "anstyle",
66
+ "once_cell_polyfill",
67
+ "windows-sys",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "anyhow"
72
+ version = "1.0.104"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
75
+
76
+ [[package]]
77
+ name = "approx"
78
+ version = "0.5.1"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
81
+ dependencies = [
82
+ "num-traits",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "autocfg"
87
+ version = "1.5.1"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
90
+
91
+ [[package]]
92
+ name = "bit-set"
93
+ version = "0.8.0"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
96
+ dependencies = [
97
+ "bit-vec",
98
+ ]
99
+
100
+ [[package]]
101
+ name = "bit-vec"
102
+ version = "0.8.0"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
105
+
106
+ [[package]]
107
+ name = "bitflags"
108
+ version = "2.13.1"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
111
+
112
+ [[package]]
113
+ name = "bumpalo"
114
+ version = "3.20.3"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
117
+
118
+ [[package]]
119
+ name = "cast"
120
+ version = "0.3.0"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
123
+
124
+ [[package]]
125
+ name = "cc"
126
+ version = "1.3.0"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "c89588d05638b5b4594a3348a2d6c20277e43a7f5c5202b05cc56888475a47b8"
129
+ dependencies = [
130
+ "find-msvc-tools",
131
+ "shlex",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "cfg-if"
136
+ version = "1.0.4"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
139
+
140
+ [[package]]
141
+ name = "cfg_aliases"
142
+ version = "0.2.2"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
145
+
146
+ [[package]]
147
+ name = "ciborium"
148
+ version = "0.2.2"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
151
+ dependencies = [
152
+ "ciborium-io",
153
+ "ciborium-ll",
154
+ "serde",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "ciborium-io"
159
+ version = "0.2.2"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
162
+
163
+ [[package]]
164
+ name = "ciborium-ll"
165
+ version = "0.2.2"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
168
+ dependencies = [
169
+ "ciborium-io",
170
+ "half",
171
+ ]
172
+
173
+ [[package]]
174
+ name = "clap"
175
+ version = "4.6.6"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
178
+ dependencies = [
179
+ "clap_builder",
180
+ "clap_derive",
181
+ ]
182
+
183
+ [[package]]
184
+ name = "clap_builder"
185
+ version = "4.6.6"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
188
+ dependencies = [
189
+ "anstream",
190
+ "anstyle",
191
+ "clap_lex",
192
+ "strsim",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "clap_derive"
197
+ version = "4.6.4"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
200
+ dependencies = [
201
+ "heck",
202
+ "proc-macro2",
203
+ "quote",
204
+ "syn 3.0.3",
205
+ ]
206
+
207
+ [[package]]
208
+ name = "clap_lex"
209
+ version = "1.1.0"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
212
+
213
+ [[package]]
214
+ name = "codspeed"
215
+ version = "5.0.1"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "7083f253260bcb4aaa3b4aa4c52973703dabc1a85c2f193997e2689aafa8a919"
218
+ dependencies = [
219
+ "anyhow",
220
+ "cc",
221
+ "colored",
222
+ "getrandom 0.4.3",
223
+ "glob",
224
+ "libc",
225
+ "nix",
226
+ "serde",
227
+ "serde_json",
228
+ "statrs",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "codspeed-criterion-compat"
233
+ version = "5.0.1"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "d9f24251445188c69d50f10179d795424bd71b533b7e3f84fc03f26893b01af0"
236
+ dependencies = [
237
+ "clap",
238
+ "codspeed",
239
+ "codspeed-criterion-compat-walltime",
240
+ "colored",
241
+ "regex",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "codspeed-criterion-compat-walltime"
246
+ version = "5.0.1"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "5c38205d56e2cb4fe04b708de7f9653a3f1b89edbe3a20b28f21e9e525e9e061"
249
+ dependencies = [
250
+ "anes",
251
+ "cast",
252
+ "ciborium",
253
+ "clap",
254
+ "codspeed",
255
+ "criterion-plot",
256
+ "is-terminal",
257
+ "itertools",
258
+ "num-traits",
259
+ "once_cell",
260
+ "oorandom",
261
+ "plotters",
262
+ "rayon",
263
+ "regex",
264
+ "serde",
265
+ "serde_derive",
266
+ "serde_json",
267
+ "tinytemplate",
268
+ "walkdir",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "colorchoice"
273
+ version = "1.0.5"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
276
+
277
+ [[package]]
278
+ name = "colored"
279
+ version = "3.1.1"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
282
+ dependencies = [
283
+ "windows-sys",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "convert_case"
288
+ version = "0.11.0"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
291
+ dependencies = [
292
+ "unicode-segmentation",
293
+ ]
294
+
295
+ [[package]]
296
+ name = "criterion-plot"
297
+ version = "0.5.0"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
300
+ dependencies = [
301
+ "cast",
302
+ "itertools",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "crossbeam-deque"
307
+ version = "0.8.7"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
310
+ dependencies = [
311
+ "crossbeam-epoch",
312
+ "crossbeam-utils",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "crossbeam-epoch"
317
+ version = "0.9.20"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
320
+ dependencies = [
321
+ "crossbeam-utils",
322
+ ]
323
+
324
+ [[package]]
325
+ name = "crossbeam-utils"
326
+ version = "0.8.22"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
329
+
330
+ [[package]]
331
+ name = "crunchy"
332
+ version = "0.2.4"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
335
+
336
+ [[package]]
337
+ name = "ctor"
338
+ version = "1.0.9"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "a394189d59f9befacce833f337f7b1eca5e9a91221bcdd4d28e0114d96e597b3"
341
+
342
+ [[package]]
343
+ name = "darwin-bench"
344
+ version = "0.1.0"
345
+ dependencies = [
346
+ "codspeed-criterion-compat",
347
+ "wickra-backtest",
348
+ "wickra-darwin-core",
349
+ ]
350
+
351
+ [[package]]
352
+ name = "dyn-clone"
353
+ version = "1.0.20"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
356
+
357
+ [[package]]
358
+ name = "either"
359
+ version = "1.16.0"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
362
+
363
+ [[package]]
364
+ name = "equivalent"
365
+ version = "1.0.2"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
368
+
369
+ [[package]]
370
+ name = "errno"
371
+ version = "0.3.14"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
374
+ dependencies = [
375
+ "libc",
376
+ "windows-sys",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "fastrand"
381
+ version = "2.4.1"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
384
+
385
+ [[package]]
386
+ name = "find-msvc-tools"
387
+ version = "0.1.9"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
390
+
391
+ [[package]]
392
+ name = "fnv"
393
+ version = "1.0.7"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
396
+
397
+ [[package]]
398
+ name = "futures"
399
+ version = "0.3.32"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
402
+ dependencies = [
403
+ "futures-channel",
404
+ "futures-core",
405
+ "futures-executor",
406
+ "futures-io",
407
+ "futures-sink",
408
+ "futures-task",
409
+ "futures-util",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "futures-channel"
414
+ version = "0.3.32"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
417
+ dependencies = [
418
+ "futures-core",
419
+ "futures-sink",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "futures-core"
424
+ version = "0.3.32"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
427
+
428
+ [[package]]
429
+ name = "futures-executor"
430
+ version = "0.3.32"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
433
+ dependencies = [
434
+ "futures-core",
435
+ "futures-task",
436
+ "futures-util",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "futures-io"
441
+ version = "0.3.32"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
444
+
445
+ [[package]]
446
+ name = "futures-macro"
447
+ version = "0.3.32"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
450
+ dependencies = [
451
+ "proc-macro2",
452
+ "quote",
453
+ "syn 2.0.119",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "futures-sink"
458
+ version = "0.3.32"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
461
+
462
+ [[package]]
463
+ name = "futures-task"
464
+ version = "0.3.32"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
467
+
468
+ [[package]]
469
+ name = "futures-util"
470
+ version = "0.3.32"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
473
+ dependencies = [
474
+ "futures-channel",
475
+ "futures-core",
476
+ "futures-io",
477
+ "futures-macro",
478
+ "futures-sink",
479
+ "futures-task",
480
+ "memchr",
481
+ "pin-project-lite",
482
+ "slab",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "getrandom"
487
+ version = "0.3.4"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
490
+ dependencies = [
491
+ "cfg-if",
492
+ "libc",
493
+ "r-efi 5.3.0",
494
+ "wasip2",
495
+ ]
496
+
497
+ [[package]]
498
+ name = "getrandom"
499
+ version = "0.4.3"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
502
+ dependencies = [
503
+ "cfg-if",
504
+ "libc",
505
+ "r-efi 6.0.0",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "glob"
510
+ version = "0.3.4"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
513
+
514
+ [[package]]
515
+ name = "half"
516
+ version = "2.7.1"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
519
+ dependencies = [
520
+ "cfg-if",
521
+ "crunchy",
522
+ "zerocopy",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "hashbrown"
527
+ version = "0.17.1"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
530
+
531
+ [[package]]
532
+ name = "heck"
533
+ version = "0.5.0"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
536
+
537
+ [[package]]
538
+ name = "hermit-abi"
539
+ version = "0.5.3"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "e17592d60ebacc7d5e169f4663c5f84f9161cc90328abcfe8456f41e4dfcb284"
542
+
543
+ [[package]]
544
+ name = "indexmap"
545
+ version = "2.14.0"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
548
+ dependencies = [
549
+ "equivalent",
550
+ "hashbrown",
551
+ ]
552
+
553
+ [[package]]
554
+ name = "is-terminal"
555
+ version = "0.4.17"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
558
+ dependencies = [
559
+ "hermit-abi",
560
+ "libc",
561
+ "windows-sys",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "is_terminal_polyfill"
566
+ version = "1.70.2"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
569
+
570
+ [[package]]
571
+ name = "itertools"
572
+ version = "0.10.5"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
575
+ dependencies = [
576
+ "either",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "itoa"
581
+ version = "1.0.18"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
584
+
585
+ [[package]]
586
+ name = "js-sys"
587
+ version = "0.3.103"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
590
+ dependencies = [
591
+ "cfg-if",
592
+ "futures-util",
593
+ "wasm-bindgen",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "libc"
598
+ version = "0.2.186"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
601
+
602
+ [[package]]
603
+ name = "libloading"
604
+ version = "0.9.0"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
607
+ dependencies = [
608
+ "cfg-if",
609
+ "windows-link",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "linux-raw-sys"
614
+ version = "0.12.1"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
617
+
618
+ [[package]]
619
+ name = "memchr"
620
+ version = "2.8.3"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
623
+
624
+ [[package]]
625
+ name = "napi"
626
+ version = "3.12.2"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "58c5f4d5375213fdb7be2655e152386e82f026f9a5ba36a75556e11359aafe09"
629
+ dependencies = [
630
+ "bitflags",
631
+ "ctor",
632
+ "futures",
633
+ "libc",
634
+ "napi-build",
635
+ "napi-sys",
636
+ "nohash-hasher",
637
+ "rustc-hash",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "napi-build"
642
+ version = "2.4.1"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "60fdf9b392c50e7c4170fa633bd909490ed7835cea4c046776d1a4dd8d2ae0ab"
645
+
646
+ [[package]]
647
+ name = "napi-derive"
648
+ version = "3.6.3"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "0fa55ea69990c90b888e9e77044410e304ce7f35de599dc6d0b5c1923d2e59af"
651
+ dependencies = [
652
+ "convert_case",
653
+ "ctor",
654
+ "napi-derive-backend",
655
+ "proc-macro2",
656
+ "quote",
657
+ "syn 2.0.119",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "napi-derive-backend"
662
+ version = "6.1.2"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "df4056ac7c18e4438ccf0edaed4340ca0d269278c8ec19284f7b23cb039fd0ae"
665
+ dependencies = [
666
+ "convert_case",
667
+ "proc-macro2",
668
+ "quote",
669
+ "semver",
670
+ "syn 2.0.119",
671
+ ]
672
+
673
+ [[package]]
674
+ name = "napi-sys"
675
+ version = "3.3.0"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "85fbf1fa9f1babfe396d74bbbf52b3643770243e8f5b0b46715d4caf7f0dfc9a"
678
+ dependencies = [
679
+ "libloading",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "nix"
684
+ version = "0.31.3"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
687
+ dependencies = [
688
+ "bitflags",
689
+ "cfg-if",
690
+ "cfg_aliases",
691
+ "libc",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "nohash-hasher"
696
+ version = "0.2.0"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
699
+
700
+ [[package]]
701
+ name = "num-traits"
702
+ version = "0.2.19"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
705
+ dependencies = [
706
+ "autocfg",
707
+ ]
708
+
709
+ [[package]]
710
+ name = "once_cell"
711
+ version = "1.21.4"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
714
+
715
+ [[package]]
716
+ name = "once_cell_polyfill"
717
+ version = "1.70.2"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
720
+
721
+ [[package]]
722
+ name = "oorandom"
723
+ version = "11.1.5"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
726
+
727
+ [[package]]
728
+ name = "pin-project-lite"
729
+ version = "0.2.17"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
732
+
733
+ [[package]]
734
+ name = "plotters"
735
+ version = "0.3.7"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
738
+ dependencies = [
739
+ "num-traits",
740
+ "plotters-backend",
741
+ "plotters-svg",
742
+ "wasm-bindgen",
743
+ "web-sys",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "plotters-backend"
748
+ version = "0.3.7"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
751
+
752
+ [[package]]
753
+ name = "plotters-svg"
754
+ version = "0.3.7"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
757
+ dependencies = [
758
+ "plotters-backend",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "portable-atomic"
763
+ version = "1.14.0"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
766
+
767
+ [[package]]
768
+ name = "ppv-lite86"
769
+ version = "0.2.21"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
772
+ dependencies = [
773
+ "zerocopy",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "proc-macro2"
778
+ version = "1.0.106"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
781
+ dependencies = [
782
+ "unicode-ident",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "proptest"
787
+ version = "1.11.0"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
790
+ dependencies = [
791
+ "bit-set",
792
+ "bit-vec",
793
+ "bitflags",
794
+ "num-traits",
795
+ "rand",
796
+ "rand_chacha",
797
+ "rand_xorshift",
798
+ "regex-syntax",
799
+ "rusty-fork",
800
+ "tempfile",
801
+ "unarray",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "pyo3"
806
+ version = "0.29.2"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
809
+ dependencies = [
810
+ "libc",
811
+ "once_cell",
812
+ "portable-atomic",
813
+ "pyo3-build-config",
814
+ "pyo3-ffi",
815
+ "pyo3-macros",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "pyo3-build-config"
820
+ version = "0.29.2"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
823
+ dependencies = [
824
+ "target-lexicon",
825
+ ]
826
+
827
+ [[package]]
828
+ name = "pyo3-ffi"
829
+ version = "0.29.2"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
832
+ dependencies = [
833
+ "libc",
834
+ "pyo3-build-config",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "pyo3-macros"
839
+ version = "0.29.2"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
842
+ dependencies = [
843
+ "proc-macro2",
844
+ "pyo3-macros-backend",
845
+ "quote",
846
+ "syn 2.0.119",
847
+ ]
848
+
849
+ [[package]]
850
+ name = "pyo3-macros-backend"
851
+ version = "0.29.2"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
854
+ dependencies = [
855
+ "heck",
856
+ "proc-macro2",
857
+ "quote",
858
+ "syn 2.0.119",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "quick-error"
863
+ version = "1.2.3"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
866
+
867
+ [[package]]
868
+ name = "quote"
869
+ version = "1.0.46"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
872
+ dependencies = [
873
+ "proc-macro2",
874
+ ]
875
+
876
+ [[package]]
877
+ name = "r-efi"
878
+ version = "5.3.0"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
881
+
882
+ [[package]]
883
+ name = "r-efi"
884
+ version = "6.0.0"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
887
+
888
+ [[package]]
889
+ name = "rand"
890
+ version = "0.9.5"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
893
+ dependencies = [
894
+ "rand_chacha",
895
+ "rand_core",
896
+ ]
897
+
898
+ [[package]]
899
+ name = "rand_chacha"
900
+ version = "0.9.0"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
903
+ dependencies = [
904
+ "ppv-lite86",
905
+ "rand_core",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "rand_core"
910
+ version = "0.9.5"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
913
+ dependencies = [
914
+ "getrandom 0.3.4",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "rand_xorshift"
919
+ version = "0.4.0"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
922
+ dependencies = [
923
+ "rand_core",
924
+ ]
925
+
926
+ [[package]]
927
+ name = "rayon"
928
+ version = "1.12.0"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
931
+ dependencies = [
932
+ "either",
933
+ "rayon-core",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "rayon-core"
938
+ version = "1.13.0"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
941
+ dependencies = [
942
+ "crossbeam-deque",
943
+ "crossbeam-utils",
944
+ ]
945
+
946
+ [[package]]
947
+ name = "regex"
948
+ version = "1.13.1"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
951
+ dependencies = [
952
+ "aho-corasick",
953
+ "memchr",
954
+ "regex-automata",
955
+ "regex-syntax",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "regex-automata"
960
+ version = "0.4.16"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
963
+ dependencies = [
964
+ "aho-corasick",
965
+ "memchr",
966
+ "regex-syntax",
967
+ ]
968
+
969
+ [[package]]
970
+ name = "regex-syntax"
971
+ version = "0.8.11"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
974
+
975
+ [[package]]
976
+ name = "rustc-hash"
977
+ version = "2.1.3"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
980
+
981
+ [[package]]
982
+ name = "rustix"
983
+ version = "1.1.4"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
986
+ dependencies = [
987
+ "bitflags",
988
+ "errno",
989
+ "libc",
990
+ "linux-raw-sys",
991
+ "windows-sys",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "rustversion"
996
+ version = "1.0.23"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
999
+
1000
+ [[package]]
1001
+ name = "rusty-fork"
1002
+ version = "0.3.1"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1005
+ dependencies = [
1006
+ "fnv",
1007
+ "quick-error",
1008
+ "tempfile",
1009
+ "wait-timeout",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "same-file"
1014
+ version = "1.0.6"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1017
+ dependencies = [
1018
+ "winapi-util",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "schemars"
1023
+ version = "0.8.22"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
1026
+ dependencies = [
1027
+ "dyn-clone",
1028
+ "schemars_derive",
1029
+ "serde",
1030
+ "serde_json",
1031
+ ]
1032
+
1033
+ [[package]]
1034
+ name = "schemars_derive"
1035
+ version = "0.8.22"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
1038
+ dependencies = [
1039
+ "proc-macro2",
1040
+ "quote",
1041
+ "serde_derive_internals",
1042
+ "syn 2.0.119",
1043
+ ]
1044
+
1045
+ [[package]]
1046
+ name = "semver"
1047
+ version = "1.0.28"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1050
+
1051
+ [[package]]
1052
+ name = "serde"
1053
+ version = "1.0.229"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1056
+ dependencies = [
1057
+ "serde_core",
1058
+ "serde_derive",
1059
+ ]
1060
+
1061
+ [[package]]
1062
+ name = "serde_core"
1063
+ version = "1.0.229"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1066
+ dependencies = [
1067
+ "serde_derive",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "serde_derive"
1072
+ version = "1.0.229"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1075
+ dependencies = [
1076
+ "proc-macro2",
1077
+ "quote",
1078
+ "syn 3.0.3",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "serde_derive_internals"
1083
+ version = "0.29.1"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
1086
+ dependencies = [
1087
+ "proc-macro2",
1088
+ "quote",
1089
+ "syn 2.0.119",
1090
+ ]
1091
+
1092
+ [[package]]
1093
+ name = "serde_json"
1094
+ version = "1.0.151"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1097
+ dependencies = [
1098
+ "itoa",
1099
+ "memchr",
1100
+ "serde",
1101
+ "serde_core",
1102
+ "zmij",
1103
+ ]
1104
+
1105
+ [[package]]
1106
+ name = "serde_spanned"
1107
+ version = "1.1.1"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
1110
+ dependencies = [
1111
+ "serde_core",
1112
+ ]
1113
+
1114
+ [[package]]
1115
+ name = "shlex"
1116
+ version = "2.0.1"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1119
+
1120
+ [[package]]
1121
+ name = "slab"
1122
+ version = "0.4.12"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1125
+
1126
+ [[package]]
1127
+ name = "statrs"
1128
+ version = "0.18.0"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "2a3fe7c28c6512e766b0874335db33c94ad7b8f9054228ae1c2abd47ce7d335e"
1131
+ dependencies = [
1132
+ "approx",
1133
+ "num-traits",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "strsim"
1138
+ version = "0.11.1"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1141
+
1142
+ [[package]]
1143
+ name = "syn"
1144
+ version = "2.0.119"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1147
+ dependencies = [
1148
+ "proc-macro2",
1149
+ "quote",
1150
+ "unicode-ident",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "syn"
1155
+ version = "3.0.3"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
1158
+ dependencies = [
1159
+ "proc-macro2",
1160
+ "quote",
1161
+ "unicode-ident",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "target-lexicon"
1166
+ version = "0.13.5"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1169
+
1170
+ [[package]]
1171
+ name = "tempfile"
1172
+ version = "3.27.0"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1175
+ dependencies = [
1176
+ "fastrand",
1177
+ "getrandom 0.4.3",
1178
+ "once_cell",
1179
+ "rustix",
1180
+ "windows-sys",
1181
+ ]
1182
+
1183
+ [[package]]
1184
+ name = "thiserror"
1185
+ version = "2.0.20"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
1188
+ dependencies = [
1189
+ "thiserror-impl",
1190
+ ]
1191
+
1192
+ [[package]]
1193
+ name = "thiserror-impl"
1194
+ version = "2.0.20"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
1197
+ dependencies = [
1198
+ "proc-macro2",
1199
+ "quote",
1200
+ "syn 3.0.3",
1201
+ ]
1202
+
1203
+ [[package]]
1204
+ name = "tinytemplate"
1205
+ version = "1.2.1"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1208
+ dependencies = [
1209
+ "serde",
1210
+ "serde_json",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "toml"
1215
+ version = "1.1.5+spec-1.1.0"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "12c0ba9680044b4ce98d391a62094047eada0d64860b80166c39f4a6b5640785"
1218
+ dependencies = [
1219
+ "indexmap",
1220
+ "serde_core",
1221
+ "serde_spanned",
1222
+ "toml_datetime",
1223
+ "toml_parser",
1224
+ "toml_writer",
1225
+ "winnow",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "toml_datetime"
1230
+ version = "1.1.1+spec-1.1.0"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
1233
+ dependencies = [
1234
+ "serde_core",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "toml_parser"
1239
+ version = "1.1.3+spec-1.1.0"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
1242
+ dependencies = [
1243
+ "winnow",
1244
+ ]
1245
+
1246
+ [[package]]
1247
+ name = "toml_writer"
1248
+ version = "1.1.2+spec-1.1.0"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
1251
+
1252
+ [[package]]
1253
+ name = "unarray"
1254
+ version = "0.1.4"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1257
+
1258
+ [[package]]
1259
+ name = "unicode-ident"
1260
+ version = "1.0.24"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1263
+
1264
+ [[package]]
1265
+ name = "unicode-segmentation"
1266
+ version = "1.13.3"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
1269
+
1270
+ [[package]]
1271
+ name = "utf8parse"
1272
+ version = "0.2.2"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1275
+
1276
+ [[package]]
1277
+ name = "wait-timeout"
1278
+ version = "0.2.1"
1279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1280
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1281
+ dependencies = [
1282
+ "libc",
1283
+ ]
1284
+
1285
+ [[package]]
1286
+ name = "walkdir"
1287
+ version = "2.5.0"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1290
+ dependencies = [
1291
+ "same-file",
1292
+ "winapi-util",
1293
+ ]
1294
+
1295
+ [[package]]
1296
+ name = "wasip2"
1297
+ version = "1.0.4+wasi-0.2.12"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
1300
+ dependencies = [
1301
+ "wit-bindgen",
1302
+ ]
1303
+
1304
+ [[package]]
1305
+ name = "wasm-bindgen"
1306
+ version = "0.2.126"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
1309
+ dependencies = [
1310
+ "cfg-if",
1311
+ "once_cell",
1312
+ "rustversion",
1313
+ "wasm-bindgen-macro",
1314
+ "wasm-bindgen-shared",
1315
+ ]
1316
+
1317
+ [[package]]
1318
+ name = "wasm-bindgen-macro"
1319
+ version = "0.2.126"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
1322
+ dependencies = [
1323
+ "quote",
1324
+ "wasm-bindgen-macro-support",
1325
+ ]
1326
+
1327
+ [[package]]
1328
+ name = "wasm-bindgen-macro-support"
1329
+ version = "0.2.126"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
1332
+ dependencies = [
1333
+ "bumpalo",
1334
+ "proc-macro2",
1335
+ "quote",
1336
+ "syn 2.0.119",
1337
+ "wasm-bindgen-shared",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "wasm-bindgen-shared"
1342
+ version = "0.2.126"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
1345
+ dependencies = [
1346
+ "unicode-ident",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "web-sys"
1351
+ version = "0.3.103"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
1354
+ dependencies = [
1355
+ "js-sys",
1356
+ "wasm-bindgen",
1357
+ ]
1358
+
1359
+ [[package]]
1360
+ name = "wickra-backtest"
1361
+ version = "0.1.4"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "7fa9f0c071d1466cac34f23ea0ac20ecbe5df3fc744a094ea49924735623e1c8"
1364
+ dependencies = [
1365
+ "wickra-backtest-core",
1366
+ "wickra-backtest-data",
1367
+ ]
1368
+
1369
+ [[package]]
1370
+ name = "wickra-backtest-core"
1371
+ version = "0.1.4"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "a92723219f4eb739fc69871fd1c5d2958b33cdf3aeb6b4193826ef981d44ac65"
1374
+ dependencies = [
1375
+ "schemars",
1376
+ "serde",
1377
+ "serde_json",
1378
+ "thiserror",
1379
+ "wickra-core",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "wickra-backtest-data"
1384
+ version = "0.1.4"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "a2ddd1a0cc11393db45a7536c3871abb76b6c91f0ff28665cecc972b0c5a811a"
1387
+ dependencies = [
1388
+ "serde_json",
1389
+ "wickra-backtest-core",
1390
+ "wickra-core",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "wickra-core"
1395
+ version = "1.0.4"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "3801b8e584405b19c5db178a8aae4587250a27daf26397ce3bde9e4c0badb115"
1398
+ dependencies = [
1399
+ "rayon",
1400
+ "thiserror",
1401
+ ]
1402
+
1403
+ [[package]]
1404
+ name = "wickra-darwin"
1405
+ version = "0.1.0"
1406
+ dependencies = [
1407
+ "clap",
1408
+ "serde_json",
1409
+ "wickra-backtest",
1410
+ "wickra-darwin-core",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "wickra-darwin-c"
1415
+ version = "0.1.0"
1416
+ dependencies = [
1417
+ "serde_json",
1418
+ "wickra-darwin-core",
1419
+ ]
1420
+
1421
+ [[package]]
1422
+ name = "wickra-darwin-core"
1423
+ version = "0.1.0"
1424
+ dependencies = [
1425
+ "proptest",
1426
+ "rayon",
1427
+ "serde",
1428
+ "serde_json",
1429
+ "thiserror",
1430
+ "toml",
1431
+ "wickra-backtest",
1432
+ ]
1433
+
1434
+ [[package]]
1435
+ name = "wickra-darwin-node"
1436
+ version = "0.1.0"
1437
+ dependencies = [
1438
+ "napi",
1439
+ "napi-build",
1440
+ "napi-derive",
1441
+ "wickra-darwin-core",
1442
+ ]
1443
+
1444
+ [[package]]
1445
+ name = "wickra-darwin-python"
1446
+ version = "0.1.0"
1447
+ dependencies = [
1448
+ "pyo3",
1449
+ "wickra-darwin-core",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "wickra-darwin-wasm"
1454
+ version = "0.1.0"
1455
+ dependencies = [
1456
+ "wasm-bindgen",
1457
+ "wickra-darwin-core",
1458
+ ]
1459
+
1460
+ [[package]]
1461
+ name = "winapi-util"
1462
+ version = "0.1.11"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1465
+ dependencies = [
1466
+ "windows-sys",
1467
+ ]
1468
+
1469
+ [[package]]
1470
+ name = "windows-link"
1471
+ version = "0.2.1"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1474
+
1475
+ [[package]]
1476
+ name = "windows-sys"
1477
+ version = "0.61.2"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1480
+ dependencies = [
1481
+ "windows-link",
1482
+ ]
1483
+
1484
+ [[package]]
1485
+ name = "winnow"
1486
+ version = "1.0.4"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
1489
+
1490
+ [[package]]
1491
+ name = "wit-bindgen"
1492
+ version = "0.57.1"
1493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1494
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1495
+
1496
+ [[package]]
1497
+ name = "zerocopy"
1498
+ version = "0.8.54"
1499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1500
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
1501
+ dependencies = [
1502
+ "zerocopy-derive",
1503
+ ]
1504
+
1505
+ [[package]]
1506
+ name = "zerocopy-derive"
1507
+ version = "0.8.54"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
1510
+ dependencies = [
1511
+ "proc-macro2",
1512
+ "quote",
1513
+ "syn 2.0.119",
1514
+ ]
1515
+
1516
+ [[package]]
1517
+ name = "zmij"
1518
+ version = "1.0.23"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"