pykerf 0.3.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. pykerf-0.3.1/Cargo.lock +808 -0
  2. pykerf-0.3.1/Cargo.toml +17 -0
  3. pykerf-0.3.1/LICENSE-APACHE +201 -0
  4. pykerf-0.3.1/LICENSE-MIT +21 -0
  5. pykerf-0.3.1/PKG-INFO +102 -0
  6. pykerf-0.3.1/README.md +81 -0
  7. pykerf-0.3.1/crates/kerf-core/Cargo.toml +39 -0
  8. pykerf-0.3.1/crates/kerf-core/README.md +81 -0
  9. pykerf-0.3.1/crates/kerf-core/benches/denote.rs +46 -0
  10. pykerf-0.3.1/crates/kerf-core/proptest-regressions/denote.txt +7 -0
  11. pykerf-0.3.1/crates/kerf-core/proptest-regressions/pass/travel_order.txt +7 -0
  12. pykerf-0.3.1/crates/kerf-core/src/backend.rs +233 -0
  13. pykerf-0.3.1/crates/kerf-core/src/denote.rs +697 -0
  14. pykerf-0.3.1/crates/kerf-core/src/diff.rs +139 -0
  15. pykerf-0.3.1/crates/kerf-core/src/frontend/gcode.rs +1290 -0
  16. pykerf-0.3.1/crates/kerf-core/src/frontend/mod.rs +6 -0
  17. pykerf-0.3.1/crates/kerf-core/src/ir/hi.rs +39 -0
  18. pykerf-0.3.1/crates/kerf-core/src/ir/lo.rs +102 -0
  19. pykerf-0.3.1/crates/kerf-core/src/ir/mod.rs +79 -0
  20. pykerf-0.3.1/crates/kerf-core/src/json.rs +62 -0
  21. pykerf-0.3.1/crates/kerf-core/src/lib.rs +27 -0
  22. pykerf-0.3.1/crates/kerf-core/src/lower.rs +125 -0
  23. pykerf-0.3.1/crates/kerf-core/src/metamorphic.rs +139 -0
  24. pykerf-0.3.1/crates/kerf-core/src/pass/mod.rs +136 -0
  25. pykerf-0.3.1/crates/kerf-core/src/pass/travel_order.rs +232 -0
  26. pykerf-0.3.1/crates/kerf-core/src/verify.rs +243 -0
  27. pykerf-0.3.1/crates/kerf-py/Cargo.toml +19 -0
  28. pykerf-0.3.1/crates/kerf-py/build.rs +9 -0
  29. pykerf-0.3.1/crates/kerf-py/src/lib.rs +188 -0
  30. pykerf-0.3.1/pyproject.toml +35 -0
  31. pykerf-0.3.1/python/pykerf/__init__.py +35 -0
@@ -0,0 +1,808 @@
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 = "anstyle"
22
+ version = "1.0.14"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
25
+
26
+ [[package]]
27
+ name = "autocfg"
28
+ version = "1.5.1"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
31
+
32
+ [[package]]
33
+ name = "bit-set"
34
+ version = "0.8.0"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
37
+ dependencies = [
38
+ "bit-vec",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "bit-vec"
43
+ version = "0.8.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
46
+
47
+ [[package]]
48
+ name = "bitflags"
49
+ version = "2.13.0"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
52
+
53
+ [[package]]
54
+ name = "cast"
55
+ version = "0.3.0"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
58
+
59
+ [[package]]
60
+ name = "cfg-if"
61
+ version = "1.0.4"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
64
+
65
+ [[package]]
66
+ name = "ciborium"
67
+ version = "0.2.2"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
70
+ dependencies = [
71
+ "ciborium-io",
72
+ "ciborium-ll",
73
+ "serde",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "ciborium-io"
78
+ version = "0.2.2"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
81
+
82
+ [[package]]
83
+ name = "ciborium-ll"
84
+ version = "0.2.2"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
87
+ dependencies = [
88
+ "ciborium-io",
89
+ "half",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "clap"
94
+ version = "4.6.1"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
97
+ dependencies = [
98
+ "clap_builder",
99
+ ]
100
+
101
+ [[package]]
102
+ name = "clap_builder"
103
+ version = "4.6.0"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
106
+ dependencies = [
107
+ "anstyle",
108
+ "clap_lex",
109
+ ]
110
+
111
+ [[package]]
112
+ name = "clap_lex"
113
+ version = "1.1.0"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
116
+
117
+ [[package]]
118
+ name = "criterion"
119
+ version = "0.5.1"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
122
+ dependencies = [
123
+ "anes",
124
+ "cast",
125
+ "ciborium",
126
+ "clap",
127
+ "criterion-plot",
128
+ "is-terminal",
129
+ "itertools",
130
+ "num-traits",
131
+ "once_cell",
132
+ "oorandom",
133
+ "regex",
134
+ "serde",
135
+ "serde_derive",
136
+ "serde_json",
137
+ "tinytemplate",
138
+ "walkdir",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "criterion-plot"
143
+ version = "0.5.0"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
146
+ dependencies = [
147
+ "cast",
148
+ "itertools",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "crossbeam-deque"
153
+ version = "0.8.6"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
156
+ dependencies = [
157
+ "crossbeam-epoch",
158
+ "crossbeam-utils",
159
+ ]
160
+
161
+ [[package]]
162
+ name = "crossbeam-epoch"
163
+ version = "0.9.18"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
166
+ dependencies = [
167
+ "crossbeam-utils",
168
+ ]
169
+
170
+ [[package]]
171
+ name = "crossbeam-utils"
172
+ version = "0.8.21"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
175
+
176
+ [[package]]
177
+ name = "crunchy"
178
+ version = "0.2.4"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
181
+
182
+ [[package]]
183
+ name = "either"
184
+ version = "1.16.0"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
187
+
188
+ [[package]]
189
+ name = "errno"
190
+ version = "0.3.14"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
193
+ dependencies = [
194
+ "libc",
195
+ "windows-sys",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "fastrand"
200
+ version = "2.4.1"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
203
+
204
+ [[package]]
205
+ name = "fnv"
206
+ version = "1.0.7"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
209
+
210
+ [[package]]
211
+ name = "getrandom"
212
+ version = "0.3.4"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
215
+ dependencies = [
216
+ "cfg-if",
217
+ "libc",
218
+ "r-efi 5.3.0",
219
+ "wasip2",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "getrandom"
224
+ version = "0.4.3"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
227
+ dependencies = [
228
+ "cfg-if",
229
+ "libc",
230
+ "r-efi 6.0.0",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "half"
235
+ version = "2.7.1"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
238
+ dependencies = [
239
+ "cfg-if",
240
+ "crunchy",
241
+ "zerocopy",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "heck"
246
+ version = "0.5.0"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
249
+
250
+ [[package]]
251
+ name = "hermit-abi"
252
+ version = "0.5.2"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
255
+
256
+ [[package]]
257
+ name = "indoc"
258
+ version = "2.0.7"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
261
+ dependencies = [
262
+ "rustversion",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "is-terminal"
267
+ version = "0.4.17"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
270
+ dependencies = [
271
+ "hermit-abi",
272
+ "libc",
273
+ "windows-sys",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "itertools"
278
+ version = "0.10.5"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
281
+ dependencies = [
282
+ "either",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "itoa"
287
+ version = "1.0.18"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
290
+
291
+ [[package]]
292
+ name = "kerf-cli"
293
+ version = "0.3.1"
294
+ dependencies = [
295
+ "kerf-core",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "kerf-core"
300
+ version = "0.3.1"
301
+ dependencies = [
302
+ "criterion",
303
+ "proptest",
304
+ "rayon",
305
+ "serde",
306
+ "serde_json",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "kerf-py"
311
+ version = "0.3.1"
312
+ dependencies = [
313
+ "kerf-core",
314
+ "pyo3",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "libc"
319
+ version = "0.2.186"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
322
+
323
+ [[package]]
324
+ name = "linux-raw-sys"
325
+ version = "0.12.1"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
328
+
329
+ [[package]]
330
+ name = "memchr"
331
+ version = "2.8.2"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
334
+
335
+ [[package]]
336
+ name = "memoffset"
337
+ version = "0.9.1"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
340
+ dependencies = [
341
+ "autocfg",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "num-traits"
346
+ version = "0.2.19"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
349
+ dependencies = [
350
+ "autocfg",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "once_cell"
355
+ version = "1.21.4"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
358
+
359
+ [[package]]
360
+ name = "oorandom"
361
+ version = "11.1.5"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
364
+
365
+ [[package]]
366
+ name = "portable-atomic"
367
+ version = "1.13.1"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
370
+
371
+ [[package]]
372
+ name = "ppv-lite86"
373
+ version = "0.2.21"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
376
+ dependencies = [
377
+ "zerocopy",
378
+ ]
379
+
380
+ [[package]]
381
+ name = "proc-macro2"
382
+ version = "1.0.106"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
385
+ dependencies = [
386
+ "unicode-ident",
387
+ ]
388
+
389
+ [[package]]
390
+ name = "proptest"
391
+ version = "1.11.0"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
394
+ dependencies = [
395
+ "bit-set",
396
+ "bit-vec",
397
+ "bitflags",
398
+ "num-traits",
399
+ "rand",
400
+ "rand_chacha",
401
+ "rand_xorshift",
402
+ "regex-syntax",
403
+ "rusty-fork",
404
+ "tempfile",
405
+ "unarray",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "pyo3"
410
+ version = "0.23.5"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
413
+ dependencies = [
414
+ "cfg-if",
415
+ "indoc",
416
+ "libc",
417
+ "memoffset",
418
+ "once_cell",
419
+ "portable-atomic",
420
+ "pyo3-build-config",
421
+ "pyo3-ffi",
422
+ "pyo3-macros",
423
+ "unindent",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "pyo3-build-config"
428
+ version = "0.23.5"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
431
+ dependencies = [
432
+ "once_cell",
433
+ "target-lexicon",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "pyo3-ffi"
438
+ version = "0.23.5"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
441
+ dependencies = [
442
+ "libc",
443
+ "pyo3-build-config",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "pyo3-macros"
448
+ version = "0.23.5"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
451
+ dependencies = [
452
+ "proc-macro2",
453
+ "pyo3-macros-backend",
454
+ "quote",
455
+ "syn",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "pyo3-macros-backend"
460
+ version = "0.23.5"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
463
+ dependencies = [
464
+ "heck",
465
+ "proc-macro2",
466
+ "pyo3-build-config",
467
+ "quote",
468
+ "syn",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "quick-error"
473
+ version = "1.2.3"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
476
+
477
+ [[package]]
478
+ name = "quote"
479
+ version = "1.0.46"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
482
+ dependencies = [
483
+ "proc-macro2",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "r-efi"
488
+ version = "5.3.0"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
491
+
492
+ [[package]]
493
+ name = "r-efi"
494
+ version = "6.0.0"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
497
+
498
+ [[package]]
499
+ name = "rand"
500
+ version = "0.9.4"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
503
+ dependencies = [
504
+ "rand_chacha",
505
+ "rand_core",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "rand_chacha"
510
+ version = "0.9.0"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
513
+ dependencies = [
514
+ "ppv-lite86",
515
+ "rand_core",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "rand_core"
520
+ version = "0.9.5"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
523
+ dependencies = [
524
+ "getrandom 0.3.4",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "rand_xorshift"
529
+ version = "0.4.0"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
532
+ dependencies = [
533
+ "rand_core",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "rayon"
538
+ version = "1.12.0"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
541
+ dependencies = [
542
+ "either",
543
+ "rayon-core",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "rayon-core"
548
+ version = "1.13.0"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
551
+ dependencies = [
552
+ "crossbeam-deque",
553
+ "crossbeam-utils",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "regex"
558
+ version = "1.12.4"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
561
+ dependencies = [
562
+ "aho-corasick",
563
+ "memchr",
564
+ "regex-automata",
565
+ "regex-syntax",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "regex-automata"
570
+ version = "0.4.14"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
573
+ dependencies = [
574
+ "aho-corasick",
575
+ "memchr",
576
+ "regex-syntax",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "regex-syntax"
581
+ version = "0.8.11"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
584
+
585
+ [[package]]
586
+ name = "rustix"
587
+ version = "1.1.4"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
590
+ dependencies = [
591
+ "bitflags",
592
+ "errno",
593
+ "libc",
594
+ "linux-raw-sys",
595
+ "windows-sys",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "rustversion"
600
+ version = "1.0.22"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
603
+
604
+ [[package]]
605
+ name = "rusty-fork"
606
+ version = "0.3.1"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
609
+ dependencies = [
610
+ "fnv",
611
+ "quick-error",
612
+ "tempfile",
613
+ "wait-timeout",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "same-file"
618
+ version = "1.0.6"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
621
+ dependencies = [
622
+ "winapi-util",
623
+ ]
624
+
625
+ [[package]]
626
+ name = "serde"
627
+ version = "1.0.228"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
630
+ dependencies = [
631
+ "serde_core",
632
+ "serde_derive",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "serde_core"
637
+ version = "1.0.228"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
640
+ dependencies = [
641
+ "serde_derive",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "serde_derive"
646
+ version = "1.0.228"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
649
+ dependencies = [
650
+ "proc-macro2",
651
+ "quote",
652
+ "syn",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "serde_json"
657
+ version = "1.0.150"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
660
+ dependencies = [
661
+ "itoa",
662
+ "memchr",
663
+ "serde",
664
+ "serde_core",
665
+ "zmij",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "syn"
670
+ version = "2.0.118"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
673
+ dependencies = [
674
+ "proc-macro2",
675
+ "quote",
676
+ "unicode-ident",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "target-lexicon"
681
+ version = "0.12.16"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
684
+
685
+ [[package]]
686
+ name = "tempfile"
687
+ version = "3.27.0"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
690
+ dependencies = [
691
+ "fastrand",
692
+ "getrandom 0.4.3",
693
+ "once_cell",
694
+ "rustix",
695
+ "windows-sys",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "tinytemplate"
700
+ version = "1.2.1"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
703
+ dependencies = [
704
+ "serde",
705
+ "serde_json",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "unarray"
710
+ version = "0.1.4"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
713
+
714
+ [[package]]
715
+ name = "unicode-ident"
716
+ version = "1.0.24"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
719
+
720
+ [[package]]
721
+ name = "unindent"
722
+ version = "0.2.4"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
725
+
726
+ [[package]]
727
+ name = "wait-timeout"
728
+ version = "0.2.1"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
731
+ dependencies = [
732
+ "libc",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "walkdir"
737
+ version = "2.5.0"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
740
+ dependencies = [
741
+ "same-file",
742
+ "winapi-util",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "wasip2"
747
+ version = "1.0.4+wasi-0.2.12"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
750
+ dependencies = [
751
+ "wit-bindgen",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "winapi-util"
756
+ version = "0.1.11"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
759
+ dependencies = [
760
+ "windows-sys",
761
+ ]
762
+
763
+ [[package]]
764
+ name = "windows-link"
765
+ version = "0.2.1"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
768
+
769
+ [[package]]
770
+ name = "windows-sys"
771
+ version = "0.61.2"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
774
+ dependencies = [
775
+ "windows-link",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "wit-bindgen"
780
+ version = "0.57.1"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
783
+
784
+ [[package]]
785
+ name = "zerocopy"
786
+ version = "0.8.52"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
789
+ dependencies = [
790
+ "zerocopy-derive",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "zerocopy-derive"
795
+ version = "0.8.52"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
798
+ dependencies = [
799
+ "proc-macro2",
800
+ "quote",
801
+ "syn",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "zmij"
806
+ version = "1.0.21"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"