wickra-compile 0.1.1__tar.gz

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