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