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