esca 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 (84) hide show
  1. esca-0.1.0/Cargo.lock +1398 -0
  2. esca-0.1.0/Cargo.toml +10 -0
  3. esca-0.1.0/PKG-INFO +115 -0
  4. esca-0.1.0/README.md +89 -0
  5. esca-0.1.0/esca/CLAUDE.md +25 -0
  6. esca-0.1.0/esca/Cargo.toml +44 -0
  7. esca-0.1.0/esca/README.md +89 -0
  8. esca-0.1.0/esca/benches/facts.rs +56 -0
  9. esca-0.1.0/esca/examples/fixtures.rs +107 -0
  10. esca-0.1.0/esca/python/tests/conftest.py +44 -0
  11. esca-0.1.0/esca/python/tests/test_board.py +132 -0
  12. esca-0.1.0/esca/python/tests/test_encode.py +135 -0
  13. esca-0.1.0/esca/python/tests/test_facts.py +72 -0
  14. esca-0.1.0/esca/python/tests/test_facts_attacks.py +374 -0
  15. esca-0.1.0/esca/python/tests/test_facts_king.py +421 -0
  16. esca-0.1.0/esca/python/tests/test_facts_material.py +380 -0
  17. esca-0.1.0/esca/python/tests/test_facts_mobility.py +438 -0
  18. esca-0.1.0/esca/python/tests/test_facts_moves.py +547 -0
  19. esca-0.1.0/esca/python/tests/test_facts_pawns.py +420 -0
  20. esca-0.1.0/esca/python/tests/test_facts_pieces.py +416 -0
  21. esca-0.1.0/esca/python/tests/test_facts_planes.py +356 -0
  22. esca-0.1.0/esca/python/tests/test_facts_state.py +407 -0
  23. esca-0.1.0/esca/python/tests/test_facts_tactics.py +765 -0
  24. esca-0.1.0/esca/python/tests/test_lichess.py +56 -0
  25. esca-0.1.0/esca/python/tests/test_stubs.py +75 -0
  26. esca-0.1.0/esca/src/error.rs +94 -0
  27. esca-0.1.0/esca/src/facts/encode.rs +601 -0
  28. esca-0.1.0/esca/src/facts/king.rs +134 -0
  29. esca-0.1.0/esca/src/facts/mod.rs +949 -0
  30. esca-0.1.0/esca/src/facts/pawns.rs +181 -0
  31. esca-0.1.0/esca/src/facts/pieces.rs +162 -0
  32. esca-0.1.0/esca/src/facts/scan.rs +231 -0
  33. esca-0.1.0/esca/src/facts/tactics.rs +280 -0
  34. esca-0.1.0/esca/src/fen.rs +199 -0
  35. esca-0.1.0/esca/src/game.rs +233 -0
  36. esca-0.1.0/esca/src/lib.rs +63 -0
  37. esca-0.1.0/esca/src/lichess.rs +144 -0
  38. esca-0.1.0/esca/src/moves.rs +251 -0
  39. esca-0.1.0/esca/src/position.rs +415 -0
  40. esca-0.1.0/esca/src/python/board.rs +627 -0
  41. esca-0.1.0/esca/src/python/convert.rs +131 -0
  42. esca-0.1.0/esca/src/python/encode.rs +332 -0
  43. esca-0.1.0/esca/src/python/facts.rs +1145 -0
  44. esca-0.1.0/esca/src/python/lichess.rs +218 -0
  45. esca-0.1.0/esca/src/python/mod.rs +80 -0
  46. esca-0.1.0/esca/src/schema.rs +579 -0
  47. esca-0.1.0/esca/src/types.rs +893 -0
  48. esca-0.1.0/esca/src/variant/chess960.rs +68 -0
  49. esca-0.1.0/esca/src/variant/classic.rs +68 -0
  50. esca-0.1.0/esca/src/variant/mod.rs +117 -0
  51. esca-0.1.0/esca/src/variant/rules.rs +347 -0
  52. esca-0.1.0/esca/tests/common/mod.rs +50 -0
  53. esca-0.1.0/esca/tests/data/fens_chess960.txt +62 -0
  54. esca-0.1.0/esca/tests/data/fens_classic.txt +237 -0
  55. esca-0.1.0/esca/tests/data/lichess_sample.jsonl.zst +0 -0
  56. esca-0.1.0/esca/tests/data/schema_v0.txt +177 -0
  57. esca-0.1.0/esca/tests/data/schema_v0_id.txt +1 -0
  58. esca-0.1.0/esca/tests/data/vectors_chess960.bin +0 -0
  59. esca-0.1.0/esca/tests/data/vectors_classic.bin +0 -0
  60. esca-0.1.0/esca/tests/facts.rs +358 -0
  61. esca-0.1.0/esca/tests/facts_attacks.rs +349 -0
  62. esca-0.1.0/esca/tests/facts_king.rs +357 -0
  63. esca-0.1.0/esca/tests/facts_material.rs +243 -0
  64. esca-0.1.0/esca/tests/facts_mobility.rs +283 -0
  65. esca-0.1.0/esca/tests/facts_moves.rs +384 -0
  66. esca-0.1.0/esca/tests/facts_pawns.rs +363 -0
  67. esca-0.1.0/esca/tests/facts_pieces.rs +340 -0
  68. esca-0.1.0/esca/tests/facts_planes.rs +257 -0
  69. esca-0.1.0/esca/tests/facts_state.rs +347 -0
  70. esca-0.1.0/esca/tests/facts_tactics.rs +708 -0
  71. esca-0.1.0/esca/tests/fen.rs +140 -0
  72. esca-0.1.0/esca/tests/game.rs +186 -0
  73. esca-0.1.0/esca/tests/lichess.rs +138 -0
  74. esca-0.1.0/esca/tests/movetext.rs +260 -0
  75. esca-0.1.0/esca/tests/perft.rs +155 -0
  76. esca-0.1.0/esca/tests/properties.rs +220 -0
  77. esca-0.1.0/esca/tests/schema.rs +84 -0
  78. esca-0.1.0/pyproject.toml +41 -0
  79. esca-0.1.0/python/esca/__init__.py +81 -0
  80. esca-0.1.0/python/esca/__init__.pyi +75 -0
  81. esca-0.1.0/python/esca/_esca.pyi +642 -0
  82. esca-0.1.0/python/esca/lichess.py +5 -0
  83. esca-0.1.0/python/esca/lichess.pyi +3 -0
  84. esca-0.1.0/python/esca/py.typed +0 -0
esca-0.1.0/Cargo.lock ADDED
@@ -0,0 +1,1398 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.5"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anes"
16
+ version = "0.1.6"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
19
+
20
+ [[package]]
21
+ name = "anglerfish-core"
22
+ version = "0.1.0"
23
+ dependencies = [
24
+ "env_logger",
25
+ "esca",
26
+ "log",
27
+ "proptest",
28
+ "rand 0.10.2",
29
+ ]
30
+
31
+ [[package]]
32
+ name = "anstream"
33
+ version = "1.0.0"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
36
+ dependencies = [
37
+ "anstyle",
38
+ "anstyle-parse",
39
+ "anstyle-query",
40
+ "anstyle-wincon",
41
+ "colorchoice",
42
+ "is_terminal_polyfill",
43
+ "utf8parse",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "anstyle"
48
+ version = "1.0.14"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
51
+
52
+ [[package]]
53
+ name = "anstyle-parse"
54
+ version = "1.0.0"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
57
+ dependencies = [
58
+ "utf8parse",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "anstyle-query"
63
+ version = "1.1.5"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
66
+ dependencies = [
67
+ "windows-sys",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "anstyle-wincon"
72
+ version = "3.0.11"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
75
+ dependencies = [
76
+ "anstyle",
77
+ "once_cell_polyfill",
78
+ "windows-sys",
79
+ ]
80
+
81
+ [[package]]
82
+ name = "arrayvec"
83
+ version = "0.7.8"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
86
+
87
+ [[package]]
88
+ name = "autocfg"
89
+ version = "1.5.1"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
92
+
93
+ [[package]]
94
+ name = "bit-set"
95
+ version = "0.8.0"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
98
+ dependencies = [
99
+ "bit-vec",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "bit-vec"
104
+ version = "0.8.0"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
107
+
108
+ [[package]]
109
+ name = "bitflags"
110
+ version = "1.3.2"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
113
+
114
+ [[package]]
115
+ name = "bitflags"
116
+ version = "2.13.1"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
119
+
120
+ [[package]]
121
+ name = "blake3"
122
+ version = "1.8.7"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "6d9e454fc11f76977dc803893aff6304ed33d6a26efae8696573bea74baa27ae"
125
+ dependencies = [
126
+ "arrayvec",
127
+ "cc",
128
+ "cfg-if",
129
+ "constant_time_eq",
130
+ "cpufeatures",
131
+ ]
132
+
133
+ [[package]]
134
+ name = "bumpalo"
135
+ version = "3.20.3"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
138
+
139
+ [[package]]
140
+ name = "cast"
141
+ version = "0.3.0"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
144
+
145
+ [[package]]
146
+ name = "cc"
147
+ version = "1.4.4"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273"
150
+ dependencies = [
151
+ "find-msvc-tools",
152
+ "jobserver",
153
+ "libc",
154
+ "shlex",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "cfg-if"
159
+ version = "1.0.4"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
162
+
163
+ [[package]]
164
+ name = "chacha20"
165
+ version = "0.10.2"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"
168
+ dependencies = [
169
+ "cfg-if",
170
+ "cpufeatures",
171
+ "rand_core 0.10.1",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "ciborium"
176
+ version = "0.2.2"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
179
+ dependencies = [
180
+ "ciborium-io",
181
+ "ciborium-ll",
182
+ "serde",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "ciborium-io"
187
+ version = "0.2.2"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
190
+
191
+ [[package]]
192
+ name = "ciborium-ll"
193
+ version = "0.2.2"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
196
+ dependencies = [
197
+ "ciborium-io",
198
+ "half",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "clap"
203
+ version = "4.6.6"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
206
+ dependencies = [
207
+ "clap_builder",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "clap_builder"
212
+ version = "4.6.6"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
215
+ dependencies = [
216
+ "anstyle",
217
+ "clap_lex",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "clap_lex"
222
+ version = "1.1.0"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
225
+
226
+ [[package]]
227
+ name = "colorchoice"
228
+ version = "1.0.5"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
231
+
232
+ [[package]]
233
+ name = "constant_time_eq"
234
+ version = "0.4.2"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
237
+
238
+ [[package]]
239
+ name = "cozy-chess"
240
+ version = "0.3.4"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "27029a361056fc4f85ee27c02c8b3d219be061cb5ee95392541d4d5fc8aaff68"
243
+ dependencies = [
244
+ "cozy-chess-types",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "cozy-chess-types"
249
+ version = "0.2.2"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "276b4804775347af35852c80665ad23d62a9ee742a14656e7da6a7b1cee74ee9"
252
+
253
+ [[package]]
254
+ name = "cpufeatures"
255
+ version = "0.3.1"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
258
+ dependencies = [
259
+ "libc",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "criterion"
264
+ version = "0.5.1"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
267
+ dependencies = [
268
+ "anes",
269
+ "cast",
270
+ "ciborium",
271
+ "clap",
272
+ "criterion-plot",
273
+ "is-terminal",
274
+ "itertools",
275
+ "num-traits",
276
+ "once_cell",
277
+ "oorandom",
278
+ "plotters",
279
+ "rayon",
280
+ "regex",
281
+ "serde",
282
+ "serde_derive",
283
+ "serde_json",
284
+ "tinytemplate",
285
+ "walkdir",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "criterion-plot"
290
+ version = "0.5.0"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
293
+ dependencies = [
294
+ "cast",
295
+ "itertools",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "crossbeam-deque"
300
+ version = "0.8.7"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
303
+ dependencies = [
304
+ "crossbeam-epoch",
305
+ "crossbeam-utils",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "crossbeam-epoch"
310
+ version = "0.9.20"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
313
+ dependencies = [
314
+ "crossbeam-utils",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "crossbeam-utils"
319
+ version = "0.8.22"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
322
+
323
+ [[package]]
324
+ name = "crunchy"
325
+ version = "0.2.4"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
328
+
329
+ [[package]]
330
+ name = "defmt"
331
+ version = "1.1.1"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1"
334
+ dependencies = [
335
+ "bitflags 1.3.2",
336
+ "defmt-macros",
337
+ ]
338
+
339
+ [[package]]
340
+ name = "defmt-macros"
341
+ version = "1.1.1"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8"
344
+ dependencies = [
345
+ "defmt-parser",
346
+ "proc-macro2",
347
+ "quote",
348
+ "syn 2.0.119",
349
+ ]
350
+
351
+ [[package]]
352
+ name = "defmt-parser"
353
+ version = "1.0.0"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
356
+ dependencies = [
357
+ "thiserror",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "either"
362
+ version = "1.18.0"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
365
+
366
+ [[package]]
367
+ name = "env_filter"
368
+ version = "2.0.0"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "900d271a03799a1ee8d1ca9b19893b48ca674a9284fefcfb85f05e74ed314217"
371
+ dependencies = [
372
+ "log",
373
+ "regex",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "env_logger"
378
+ version = "0.11.11"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "de671bd27a75a797dc9ae289ba1e77276e75e2026408aab65185384e2d5cd3f6"
381
+ dependencies = [
382
+ "anstream",
383
+ "anstyle",
384
+ "env_filter",
385
+ "jiff",
386
+ "log",
387
+ ]
388
+
389
+ [[package]]
390
+ name = "errno"
391
+ version = "0.3.14"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
394
+ dependencies = [
395
+ "libc",
396
+ "windows-sys",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "esca"
401
+ version = "0.1.0"
402
+ dependencies = [
403
+ "blake3",
404
+ "cozy-chess",
405
+ "criterion",
406
+ "numpy",
407
+ "proptest",
408
+ "pyo3",
409
+ "rayon",
410
+ "rstest",
411
+ "serde",
412
+ "serde_json",
413
+ "zstd",
414
+ ]
415
+
416
+ [[package]]
417
+ name = "fastrand"
418
+ version = "2.5.0"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
421
+
422
+ [[package]]
423
+ name = "find-msvc-tools"
424
+ version = "0.1.11"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
427
+
428
+ [[package]]
429
+ name = "fnv"
430
+ version = "1.0.7"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
433
+
434
+ [[package]]
435
+ name = "futures-core"
436
+ version = "0.3.34"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
439
+
440
+ [[package]]
441
+ name = "futures-task"
442
+ version = "0.3.34"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
445
+
446
+ [[package]]
447
+ name = "futures-util"
448
+ version = "0.3.34"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
451
+ dependencies = [
452
+ "futures-core",
453
+ "futures-task",
454
+ "pin-project-lite",
455
+ "slab",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "getrandom"
460
+ version = "0.3.4"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
463
+ dependencies = [
464
+ "cfg-if",
465
+ "libc",
466
+ "r-efi 5.3.0",
467
+ "wasip2",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "getrandom"
472
+ version = "0.4.3"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
475
+ dependencies = [
476
+ "cfg-if",
477
+ "libc",
478
+ "r-efi 6.0.0",
479
+ "rand_core 0.10.1",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "glob"
484
+ version = "0.3.4"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
487
+
488
+ [[package]]
489
+ name = "half"
490
+ version = "2.7.1"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
493
+ dependencies = [
494
+ "cfg-if",
495
+ "crunchy",
496
+ "zerocopy",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "heck"
501
+ version = "0.5.0"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
504
+
505
+ [[package]]
506
+ name = "hermit-abi"
507
+ version = "0.5.3"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "e17592d60ebacc7d5e169f4663c5f84f9161cc90328abcfe8456f41e4dfcb284"
510
+
511
+ [[package]]
512
+ name = "is-terminal"
513
+ version = "0.4.17"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
516
+ dependencies = [
517
+ "hermit-abi",
518
+ "libc",
519
+ "windows-sys",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "is_terminal_polyfill"
524
+ version = "1.70.2"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
527
+
528
+ [[package]]
529
+ name = "itertools"
530
+ version = "0.10.5"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
533
+ dependencies = [
534
+ "either",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "itoa"
539
+ version = "1.0.18"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
542
+
543
+ [[package]]
544
+ name = "jiff"
545
+ version = "0.2.35"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "668b7183bd07af9a4885f5c35b0cc5c83c4607a913c16b7e17291832910d2dcc"
548
+ dependencies = [
549
+ "defmt",
550
+ "jiff-core",
551
+ "jiff-static",
552
+ "log",
553
+ "portable-atomic",
554
+ "portable-atomic-util",
555
+ "serde_core",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "jiff-core"
560
+ version = "0.1.0"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "7feca88439efe53da3754500c1851dedf3cb36c524dd5cf8225cc0794de95d09"
563
+ dependencies = [
564
+ "defmt",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "jiff-static"
569
+ version = "0.2.35"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "3a69dcb3a21cfb32ce1cd056169337ca284af0766dd766e7878819b251a49204"
572
+ dependencies = [
573
+ "jiff-core",
574
+ "proc-macro2",
575
+ "quote",
576
+ "syn 2.0.119",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "jobserver"
581
+ version = "0.1.35"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
584
+ dependencies = [
585
+ "getrandom 0.4.3",
586
+ "libc",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "js-sys"
591
+ version = "0.3.104"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
594
+ dependencies = [
595
+ "cfg-if",
596
+ "futures-util",
597
+ "wasm-bindgen",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "libc"
602
+ version = "0.2.189"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
605
+
606
+ [[package]]
607
+ name = "linux-raw-sys"
608
+ version = "0.12.1"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
611
+
612
+ [[package]]
613
+ name = "log"
614
+ version = "0.4.34"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
617
+
618
+ [[package]]
619
+ name = "matrixmultiply"
620
+ version = "0.3.11"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7"
623
+ dependencies = [
624
+ "autocfg",
625
+ "rawpointer",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "memchr"
630
+ version = "2.8.3"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
633
+
634
+ [[package]]
635
+ name = "ndarray"
636
+ version = "0.17.2"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
639
+ dependencies = [
640
+ "matrixmultiply",
641
+ "num-complex",
642
+ "num-integer",
643
+ "num-traits",
644
+ "portable-atomic",
645
+ "portable-atomic-util",
646
+ "rawpointer",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "num-complex"
651
+ version = "0.4.6"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
654
+ dependencies = [
655
+ "num-traits",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "num-integer"
660
+ version = "0.1.47"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
663
+ dependencies = [
664
+ "num-traits",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "num-traits"
669
+ version = "0.2.19"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
672
+ dependencies = [
673
+ "autocfg",
674
+ ]
675
+
676
+ [[package]]
677
+ name = "numpy"
678
+ version = "0.29.0"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "6a5b15d63a5ff39e378daed0e1340d3a5964703ea9712eb09a0dc66fade996f4"
681
+ dependencies = [
682
+ "libc",
683
+ "ndarray",
684
+ "num-complex",
685
+ "num-integer",
686
+ "num-traits",
687
+ "pyo3",
688
+ "pyo3-build-config",
689
+ "rustc-hash",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "once_cell"
694
+ version = "1.21.4"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
697
+
698
+ [[package]]
699
+ name = "once_cell_polyfill"
700
+ version = "1.70.2"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
703
+
704
+ [[package]]
705
+ name = "oorandom"
706
+ version = "11.1.5"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
709
+
710
+ [[package]]
711
+ name = "pin-project-lite"
712
+ version = "0.2.17"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
715
+
716
+ [[package]]
717
+ name = "pkg-config"
718
+ version = "0.3.34"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
721
+
722
+ [[package]]
723
+ name = "plotters"
724
+ version = "0.3.7"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
727
+ dependencies = [
728
+ "num-traits",
729
+ "plotters-backend",
730
+ "plotters-svg",
731
+ "wasm-bindgen",
732
+ "web-sys",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "plotters-backend"
737
+ version = "0.3.7"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
740
+
741
+ [[package]]
742
+ name = "plotters-svg"
743
+ version = "0.3.7"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
746
+ dependencies = [
747
+ "plotters-backend",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "portable-atomic"
752
+ version = "1.15.0"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
755
+
756
+ [[package]]
757
+ name = "portable-atomic-util"
758
+ version = "0.2.7"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
761
+ dependencies = [
762
+ "portable-atomic",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "ppv-lite86"
767
+ version = "0.2.21"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
770
+ dependencies = [
771
+ "zerocopy",
772
+ ]
773
+
774
+ [[package]]
775
+ name = "proc-macro2"
776
+ version = "1.0.107"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
779
+ dependencies = [
780
+ "unicode-ident",
781
+ ]
782
+
783
+ [[package]]
784
+ name = "proptest"
785
+ version = "1.11.0"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
788
+ dependencies = [
789
+ "bit-set",
790
+ "bit-vec",
791
+ "bitflags 2.13.1",
792
+ "num-traits",
793
+ "rand 0.9.5",
794
+ "rand_chacha",
795
+ "rand_xorshift",
796
+ "regex-syntax",
797
+ "rusty-fork",
798
+ "tempfile",
799
+ "unarray",
800
+ ]
801
+
802
+ [[package]]
803
+ name = "pyo3"
804
+ version = "0.29.2"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
807
+ dependencies = [
808
+ "libc",
809
+ "once_cell",
810
+ "portable-atomic",
811
+ "pyo3-build-config",
812
+ "pyo3-ffi",
813
+ "pyo3-macros",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "pyo3-build-config"
818
+ version = "0.29.2"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
821
+ dependencies = [
822
+ "target-lexicon",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "pyo3-ffi"
827
+ version = "0.29.2"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
830
+ dependencies = [
831
+ "libc",
832
+ "pyo3-build-config",
833
+ ]
834
+
835
+ [[package]]
836
+ name = "pyo3-macros"
837
+ version = "0.29.2"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
840
+ dependencies = [
841
+ "proc-macro2",
842
+ "pyo3-macros-backend",
843
+ "quote",
844
+ "syn 2.0.119",
845
+ ]
846
+
847
+ [[package]]
848
+ name = "pyo3-macros-backend"
849
+ version = "0.29.2"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
852
+ dependencies = [
853
+ "heck",
854
+ "proc-macro2",
855
+ "quote",
856
+ "syn 2.0.119",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "quick-error"
861
+ version = "1.2.3"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
864
+
865
+ [[package]]
866
+ name = "quote"
867
+ version = "1.0.47"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
870
+ dependencies = [
871
+ "proc-macro2",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "r-efi"
876
+ version = "5.3.0"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
879
+
880
+ [[package]]
881
+ name = "r-efi"
882
+ version = "6.0.0"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
885
+
886
+ [[package]]
887
+ name = "rand"
888
+ version = "0.9.5"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
891
+ dependencies = [
892
+ "rand_chacha",
893
+ "rand_core 0.9.5",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "rand"
898
+ version = "0.10.2"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
901
+ dependencies = [
902
+ "chacha20",
903
+ "getrandom 0.4.3",
904
+ "rand_core 0.10.1",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "rand_chacha"
909
+ version = "0.9.0"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
912
+ dependencies = [
913
+ "ppv-lite86",
914
+ "rand_core 0.9.5",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "rand_core"
919
+ version = "0.9.5"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
922
+ dependencies = [
923
+ "getrandom 0.3.4",
924
+ ]
925
+
926
+ [[package]]
927
+ name = "rand_core"
928
+ version = "0.10.1"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
931
+
932
+ [[package]]
933
+ name = "rand_xorshift"
934
+ version = "0.4.0"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
937
+ dependencies = [
938
+ "rand_core 0.9.5",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "rawpointer"
943
+ version = "0.2.1"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
946
+
947
+ [[package]]
948
+ name = "rayon"
949
+ version = "1.12.0"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
952
+ dependencies = [
953
+ "either",
954
+ "rayon-core",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "rayon-core"
959
+ version = "1.13.0"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
962
+ dependencies = [
963
+ "crossbeam-deque",
964
+ "crossbeam-utils",
965
+ ]
966
+
967
+ [[package]]
968
+ name = "regex"
969
+ version = "1.13.1"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
972
+ dependencies = [
973
+ "aho-corasick",
974
+ "memchr",
975
+ "regex-automata",
976
+ "regex-syntax",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "regex-automata"
981
+ version = "0.4.18"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
984
+ dependencies = [
985
+ "aho-corasick",
986
+ "memchr",
987
+ "regex-syntax",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "regex-syntax"
992
+ version = "0.8.11"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
995
+
996
+ [[package]]
997
+ name = "relative-path"
998
+ version = "1.9.3"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
1001
+
1002
+ [[package]]
1003
+ name = "rstest"
1004
+ version = "0.26.1"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49"
1007
+ dependencies = [
1008
+ "rstest_macros",
1009
+ ]
1010
+
1011
+ [[package]]
1012
+ name = "rstest_macros"
1013
+ version = "0.26.1"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0"
1016
+ dependencies = [
1017
+ "cfg-if",
1018
+ "glob",
1019
+ "proc-macro2",
1020
+ "quote",
1021
+ "regex",
1022
+ "relative-path",
1023
+ "rustc_version",
1024
+ "syn 2.0.119",
1025
+ "unicode-ident",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "rustc-hash"
1030
+ version = "2.1.3"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1033
+
1034
+ [[package]]
1035
+ name = "rustc_version"
1036
+ version = "0.4.1"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1039
+ dependencies = [
1040
+ "semver",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "rustix"
1045
+ version = "1.1.4"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1048
+ dependencies = [
1049
+ "bitflags 2.13.1",
1050
+ "errno",
1051
+ "libc",
1052
+ "linux-raw-sys",
1053
+ "windows-sys",
1054
+ ]
1055
+
1056
+ [[package]]
1057
+ name = "rustversion"
1058
+ version = "1.0.23"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1061
+
1062
+ [[package]]
1063
+ name = "rusty-fork"
1064
+ version = "0.3.1"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1067
+ dependencies = [
1068
+ "fnv",
1069
+ "quick-error",
1070
+ "tempfile",
1071
+ "wait-timeout",
1072
+ ]
1073
+
1074
+ [[package]]
1075
+ name = "same-file"
1076
+ version = "1.0.6"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1079
+ dependencies = [
1080
+ "winapi-util",
1081
+ ]
1082
+
1083
+ [[package]]
1084
+ name = "semver"
1085
+ version = "1.0.28"
1086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1087
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1088
+
1089
+ [[package]]
1090
+ name = "serde"
1091
+ version = "1.0.229"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1094
+ dependencies = [
1095
+ "serde_core",
1096
+ "serde_derive",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "serde_core"
1101
+ version = "1.0.229"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1104
+ dependencies = [
1105
+ "serde_derive",
1106
+ ]
1107
+
1108
+ [[package]]
1109
+ name = "serde_derive"
1110
+ version = "1.0.229"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1113
+ dependencies = [
1114
+ "proc-macro2",
1115
+ "quote",
1116
+ "syn 3.0.4",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "serde_json"
1121
+ version = "1.0.151"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1124
+ dependencies = [
1125
+ "itoa",
1126
+ "memchr",
1127
+ "serde",
1128
+ "serde_core",
1129
+ "zmij",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "shlex"
1134
+ version = "2.0.1"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1137
+
1138
+ [[package]]
1139
+ name = "slab"
1140
+ version = "0.4.12"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1143
+
1144
+ [[package]]
1145
+ name = "syn"
1146
+ version = "2.0.119"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1149
+ dependencies = [
1150
+ "proc-macro2",
1151
+ "quote",
1152
+ "unicode-ident",
1153
+ ]
1154
+
1155
+ [[package]]
1156
+ name = "syn"
1157
+ version = "3.0.4"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
1160
+ dependencies = [
1161
+ "proc-macro2",
1162
+ "quote",
1163
+ "unicode-ident",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "target-lexicon"
1168
+ version = "0.13.5"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1171
+
1172
+ [[package]]
1173
+ name = "tempfile"
1174
+ version = "3.27.0"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1177
+ dependencies = [
1178
+ "fastrand",
1179
+ "getrandom 0.4.3",
1180
+ "once_cell",
1181
+ "rustix",
1182
+ "windows-sys",
1183
+ ]
1184
+
1185
+ [[package]]
1186
+ name = "thiserror"
1187
+ version = "2.0.20"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
1190
+ dependencies = [
1191
+ "thiserror-impl",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "thiserror-impl"
1196
+ version = "2.0.20"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
1199
+ dependencies = [
1200
+ "proc-macro2",
1201
+ "quote",
1202
+ "syn 3.0.4",
1203
+ ]
1204
+
1205
+ [[package]]
1206
+ name = "tinytemplate"
1207
+ version = "1.2.1"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1210
+ dependencies = [
1211
+ "serde",
1212
+ "serde_json",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "unarray"
1217
+ version = "0.1.4"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1220
+
1221
+ [[package]]
1222
+ name = "unicode-ident"
1223
+ version = "1.0.24"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1226
+
1227
+ [[package]]
1228
+ name = "utf8parse"
1229
+ version = "0.2.2"
1230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1231
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1232
+
1233
+ [[package]]
1234
+ name = "wait-timeout"
1235
+ version = "0.2.1"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1238
+ dependencies = [
1239
+ "libc",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "walkdir"
1244
+ version = "2.5.0"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1247
+ dependencies = [
1248
+ "same-file",
1249
+ "winapi-util",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "wasip2"
1254
+ version = "1.0.4+wasi-0.2.12"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
1257
+ dependencies = [
1258
+ "wit-bindgen",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "wasm-bindgen"
1263
+ version = "0.2.127"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
1266
+ dependencies = [
1267
+ "cfg-if",
1268
+ "once_cell",
1269
+ "rustversion",
1270
+ "wasm-bindgen-macro",
1271
+ "wasm-bindgen-shared",
1272
+ ]
1273
+
1274
+ [[package]]
1275
+ name = "wasm-bindgen-macro"
1276
+ version = "0.2.127"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
1279
+ dependencies = [
1280
+ "quote",
1281
+ "wasm-bindgen-macro-support",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "wasm-bindgen-macro-support"
1286
+ version = "0.2.127"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
1289
+ dependencies = [
1290
+ "bumpalo",
1291
+ "proc-macro2",
1292
+ "quote",
1293
+ "syn 2.0.119",
1294
+ "wasm-bindgen-shared",
1295
+ ]
1296
+
1297
+ [[package]]
1298
+ name = "wasm-bindgen-shared"
1299
+ version = "0.2.127"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
1302
+ dependencies = [
1303
+ "unicode-ident",
1304
+ ]
1305
+
1306
+ [[package]]
1307
+ name = "web-sys"
1308
+ version = "0.3.104"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30"
1311
+ dependencies = [
1312
+ "js-sys",
1313
+ "wasm-bindgen",
1314
+ ]
1315
+
1316
+ [[package]]
1317
+ name = "winapi-util"
1318
+ version = "0.1.11"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1321
+ dependencies = [
1322
+ "windows-sys",
1323
+ ]
1324
+
1325
+ [[package]]
1326
+ name = "windows-link"
1327
+ version = "0.2.1"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1330
+
1331
+ [[package]]
1332
+ name = "windows-sys"
1333
+ version = "0.61.2"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1336
+ dependencies = [
1337
+ "windows-link",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "wit-bindgen"
1342
+ version = "0.57.1"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1345
+
1346
+ [[package]]
1347
+ name = "zerocopy"
1348
+ version = "0.8.56"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
1351
+ dependencies = [
1352
+ "zerocopy-derive",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "zerocopy-derive"
1357
+ version = "0.8.56"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
1360
+ dependencies = [
1361
+ "proc-macro2",
1362
+ "quote",
1363
+ "syn 2.0.119",
1364
+ ]
1365
+
1366
+ [[package]]
1367
+ name = "zmij"
1368
+ version = "1.0.23"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
1371
+
1372
+ [[package]]
1373
+ name = "zstd"
1374
+ version = "0.13.3"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
1377
+ dependencies = [
1378
+ "zstd-safe",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "zstd-safe"
1383
+ version = "7.2.4"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
1386
+ dependencies = [
1387
+ "zstd-sys",
1388
+ ]
1389
+
1390
+ [[package]]
1391
+ name = "zstd-sys"
1392
+ version = "2.0.16+zstd.1.5.7"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
1395
+ dependencies = [
1396
+ "cc",
1397
+ "pkg-config",
1398
+ ]