rustoku 0.15.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 (42) hide show
  1. rustoku-0.15.0/Cargo.lock +1274 -0
  2. rustoku-0.15.0/Cargo.toml +15 -0
  3. rustoku-0.15.0/PKG-INFO +7 -0
  4. rustoku-0.15.0/pyproject.toml +20 -0
  5. rustoku-0.15.0/rustoku-lib/Cargo.toml +29 -0
  6. rustoku-0.15.0/rustoku-lib/README.md +83 -0
  7. rustoku-0.15.0/rustoku-lib/benches/rustoku_benchmark.rs +88 -0
  8. rustoku-0.15.0/rustoku-lib/src/bind.rs +409 -0
  9. rustoku-0.15.0/rustoku-lib/src/core/board.rs +171 -0
  10. rustoku-0.15.0/rustoku-lib/src/core/candidates.rs +211 -0
  11. rustoku-0.15.0/rustoku-lib/src/core/masks.rs +281 -0
  12. rustoku-0.15.0/rustoku-lib/src/core/mod.rs +1189 -0
  13. rustoku-0.15.0/rustoku-lib/src/core/solution.rs +129 -0
  14. rustoku-0.15.0/rustoku-lib/src/core/techniques/aic.rs +453 -0
  15. rustoku-0.15.0/rustoku-lib/src/core/techniques/flags.rs +202 -0
  16. rustoku-0.15.0/rustoku-lib/src/core/techniques/hidden_pairs.rs +215 -0
  17. rustoku-0.15.0/rustoku-lib/src/core/techniques/hidden_quads.rs +193 -0
  18. rustoku-0.15.0/rustoku-lib/src/core/techniques/hidden_singles.rs +151 -0
  19. rustoku-0.15.0/rustoku-lib/src/core/techniques/hidden_triples.rs +198 -0
  20. rustoku-0.15.0/rustoku-lib/src/core/techniques/jellyfish.rs +244 -0
  21. rustoku-0.15.0/rustoku-lib/src/core/techniques/locked_candidates.rs +314 -0
  22. rustoku-0.15.0/rustoku-lib/src/core/techniques/mod.rs +367 -0
  23. rustoku-0.15.0/rustoku-lib/src/core/techniques/naked_pairs.rs +215 -0
  24. rustoku-0.15.0/rustoku-lib/src/core/techniques/naked_quads.rs +168 -0
  25. rustoku-0.15.0/rustoku-lib/src/core/techniques/naked_singles.rs +92 -0
  26. rustoku-0.15.0/rustoku-lib/src/core/techniques/naked_triples.rs +187 -0
  27. rustoku-0.15.0/rustoku-lib/src/core/techniques/skyscraper.rs +239 -0
  28. rustoku-0.15.0/rustoku-lib/src/core/techniques/swordfish.rs +242 -0
  29. rustoku-0.15.0/rustoku-lib/src/core/techniques/units.rs +143 -0
  30. rustoku-0.15.0/rustoku-lib/src/core/techniques/w_wing.rs +283 -0
  31. rustoku-0.15.0/rustoku-lib/src/core/techniques/x_wing.rs +254 -0
  32. rustoku-0.15.0/rustoku-lib/src/core/techniques/xy_wing.rs +252 -0
  33. rustoku-0.15.0/rustoku-lib/src/core/techniques/xyz_wing.rs +195 -0
  34. rustoku-0.15.0/rustoku-lib/src/error.rs +26 -0
  35. rustoku-0.15.0/rustoku-lib/src/format.rs +572 -0
  36. rustoku-0.15.0/rustoku-lib/src/lib.rs +22 -0
  37. rustoku-0.15.0/rustoku-lib/tests/proptest_solver.proptest-regressions +7 -0
  38. rustoku-0.15.0/rustoku-lib/tests/proptest_solver.rs +383 -0
  39. rustoku-0.15.0/rustoku-py/Cargo.toml +21 -0
  40. rustoku-0.15.0/rustoku-py/README.md +83 -0
  41. rustoku-0.15.0/rustoku-py/src/lib.rs +153 -0
  42. rustoku-0.15.0/rustoku-py/tests/test_basic.py +38 -0
@@ -0,0 +1,1274 @@
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 = "alloca"
16
+ version = "0.4.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
19
+ dependencies = [
20
+ "cc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "anes"
25
+ version = "0.1.6"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
28
+
29
+ [[package]]
30
+ name = "anstream"
31
+ version = "1.0.0"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
34
+ dependencies = [
35
+ "anstyle",
36
+ "anstyle-parse",
37
+ "anstyle-query",
38
+ "anstyle-wincon",
39
+ "colorchoice",
40
+ "is_terminal_polyfill",
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle"
46
+ version = "1.0.14"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
49
+
50
+ [[package]]
51
+ name = "anstyle-parse"
52
+ version = "1.0.0"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
55
+ dependencies = [
56
+ "utf8parse",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-query"
61
+ version = "1.1.5"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
64
+ dependencies = [
65
+ "windows-sys",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "anstyle-wincon"
70
+ version = "3.0.11"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
73
+ dependencies = [
74
+ "anstyle",
75
+ "once_cell_polyfill",
76
+ "windows-sys",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "assert_cmd"
81
+ version = "2.2.2"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
84
+ dependencies = [
85
+ "anstyle",
86
+ "bstr",
87
+ "libc",
88
+ "predicates",
89
+ "predicates-core",
90
+ "predicates-tree",
91
+ "wait-timeout",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "autocfg"
96
+ version = "1.5.1"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
99
+
100
+ [[package]]
101
+ name = "bit-set"
102
+ version = "0.8.0"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
105
+ dependencies = [
106
+ "bit-vec",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "bit-vec"
111
+ version = "0.8.0"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
114
+
115
+ [[package]]
116
+ name = "bitflags"
117
+ version = "2.13.2"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
120
+ dependencies = [
121
+ "serde_core",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "bstr"
126
+ version = "1.13.1"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "6bb31b46c14244e20ee9984b11bf5c992b91fb6939fea616e3512c8baecdbe5f"
129
+ dependencies = [
130
+ "memchr",
131
+ "regex-automata",
132
+ "serde_core",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "bumpalo"
137
+ version = "3.20.3"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
140
+
141
+ [[package]]
142
+ name = "cast"
143
+ version = "0.3.0"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
146
+
147
+ [[package]]
148
+ name = "cc"
149
+ version = "1.4.5"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "005ec2760ca554fae18df7a11195552ec576cd665632a881bc011d5bb2fd4d80"
152
+ dependencies = [
153
+ "find-msvc-tools",
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
+ "clap_derive",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "clap_builder"
213
+ version = "4.6.6"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
216
+ dependencies = [
217
+ "anstream",
218
+ "anstyle",
219
+ "clap_lex",
220
+ "strsim",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "clap_derive"
225
+ version = "4.6.4"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
228
+ dependencies = [
229
+ "heck",
230
+ "proc-macro2",
231
+ "quote",
232
+ "syn 3.0.5",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "clap_lex"
237
+ version = "1.1.0"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
240
+
241
+ [[package]]
242
+ name = "colorchoice"
243
+ version = "1.0.5"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
246
+
247
+ [[package]]
248
+ name = "console_error_panic_hook"
249
+ version = "0.1.7"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
252
+ dependencies = [
253
+ "cfg-if",
254
+ "wasm-bindgen",
255
+ ]
256
+
257
+ [[package]]
258
+ name = "cpufeatures"
259
+ version = "0.3.1"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
262
+ dependencies = [
263
+ "libc",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "criterion"
268
+ version = "0.8.2"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
271
+ dependencies = [
272
+ "alloca",
273
+ "anes",
274
+ "cast",
275
+ "ciborium",
276
+ "clap",
277
+ "criterion-plot",
278
+ "itertools",
279
+ "num-traits",
280
+ "oorandom",
281
+ "page_size",
282
+ "plotters",
283
+ "rayon",
284
+ "regex",
285
+ "serde",
286
+ "serde_json",
287
+ "tinytemplate",
288
+ "walkdir",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "criterion-plot"
293
+ version = "0.8.2"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
296
+ dependencies = [
297
+ "cast",
298
+ "itertools",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "crossbeam-deque"
303
+ version = "0.8.8"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "622f3fc73690be383c7214310406f28a90e6edeadc3cea882f9d71e495b9711a"
306
+ dependencies = [
307
+ "crossbeam-epoch",
308
+ "crossbeam-utils",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "crossbeam-epoch"
313
+ version = "0.9.21"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "dc74980687109a3b14c72fd458107bf0baa1da1a1a805e178d15501ba9b86d9d"
316
+ dependencies = [
317
+ "crossbeam-utils",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "crossbeam-utils"
322
+ version = "0.8.23"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "a31eee39dddec8330830986fcd7625edb5a24ec90ea038215273bbc3adb08ac6"
325
+
326
+ [[package]]
327
+ name = "crunchy"
328
+ version = "0.2.4"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
331
+
332
+ [[package]]
333
+ name = "csv"
334
+ version = "1.4.0"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
337
+ dependencies = [
338
+ "csv-core",
339
+ "itoa",
340
+ "ryu",
341
+ "serde_core",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "csv-core"
346
+ version = "0.1.13"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
349
+ dependencies = [
350
+ "memchr",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "difflib"
355
+ version = "0.4.0"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
358
+
359
+ [[package]]
360
+ name = "either"
361
+ version = "1.18.0"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
364
+
365
+ [[package]]
366
+ name = "errno"
367
+ version = "0.3.14"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
370
+ dependencies = [
371
+ "libc",
372
+ "windows-sys",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "fastrand"
377
+ version = "2.5.0"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
380
+
381
+ [[package]]
382
+ name = "find-msvc-tools"
383
+ version = "0.1.12"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "3e0f1c7c3a72c66fd80abe965175f7523475c0489a87d3ff9d6e8c87d87a9d2d"
386
+
387
+ [[package]]
388
+ name = "float-cmp"
389
+ version = "0.10.0"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
392
+ dependencies = [
393
+ "num-traits",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "fnv"
398
+ version = "1.0.7"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
401
+
402
+ [[package]]
403
+ name = "futures-core"
404
+ version = "0.3.34"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
407
+
408
+ [[package]]
409
+ name = "futures-task"
410
+ version = "0.3.34"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
413
+
414
+ [[package]]
415
+ name = "futures-util"
416
+ version = "0.3.34"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
419
+ dependencies = [
420
+ "futures-core",
421
+ "futures-task",
422
+ "pin-project-lite",
423
+ "slab",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "getrandom"
428
+ version = "0.3.4"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
431
+ dependencies = [
432
+ "cfg-if",
433
+ "libc",
434
+ "r-efi 5.3.0",
435
+ "wasip2",
436
+ ]
437
+
438
+ [[package]]
439
+ name = "getrandom"
440
+ version = "0.4.3"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
443
+ dependencies = [
444
+ "cfg-if",
445
+ "js-sys",
446
+ "libc",
447
+ "r-efi 6.0.0",
448
+ "rand_core 0.10.1",
449
+ "wasm-bindgen",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "half"
454
+ version = "2.7.1"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
457
+ dependencies = [
458
+ "cfg-if",
459
+ "crunchy",
460
+ "zerocopy",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "heck"
465
+ version = "0.5.0"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
468
+
469
+ [[package]]
470
+ name = "is_terminal_polyfill"
471
+ version = "1.70.2"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
474
+
475
+ [[package]]
476
+ name = "itertools"
477
+ version = "0.13.0"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
480
+ dependencies = [
481
+ "either",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "itoa"
486
+ version = "1.0.18"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
489
+
490
+ [[package]]
491
+ name = "js-sys"
492
+ version = "0.3.105"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "ce57d20d1ea864ce2ac172ab472d409214f4fd359f0b2a2775abdf522e2af99e"
495
+ dependencies = [
496
+ "cfg-if",
497
+ "futures-util",
498
+ "wasm-bindgen",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "libc"
503
+ version = "0.2.189"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
506
+
507
+ [[package]]
508
+ name = "linux-raw-sys"
509
+ version = "0.12.1"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
512
+
513
+ [[package]]
514
+ name = "memchr"
515
+ version = "2.8.3"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
518
+
519
+ [[package]]
520
+ name = "normalize-line-endings"
521
+ version = "0.3.0"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
524
+
525
+ [[package]]
526
+ name = "num-traits"
527
+ version = "0.2.19"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
530
+ dependencies = [
531
+ "autocfg",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "once_cell"
536
+ version = "1.21.4"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
539
+
540
+ [[package]]
541
+ name = "once_cell_polyfill"
542
+ version = "1.70.2"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
545
+
546
+ [[package]]
547
+ name = "oorandom"
548
+ version = "11.1.5"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
551
+
552
+ [[package]]
553
+ name = "page_size"
554
+ version = "0.6.0"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
557
+ dependencies = [
558
+ "libc",
559
+ "winapi",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "pin-project-lite"
564
+ version = "0.2.17"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
567
+
568
+ [[package]]
569
+ name = "plotters"
570
+ version = "0.3.7"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
573
+ dependencies = [
574
+ "num-traits",
575
+ "plotters-backend",
576
+ "plotters-svg",
577
+ "wasm-bindgen",
578
+ "web-sys",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "plotters-backend"
583
+ version = "0.3.7"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
586
+
587
+ [[package]]
588
+ name = "plotters-svg"
589
+ version = "0.3.7"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
592
+ dependencies = [
593
+ "plotters-backend",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "portable-atomic"
598
+ version = "1.15.0"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
601
+
602
+ [[package]]
603
+ name = "ppv-lite86"
604
+ version = "0.2.21"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
607
+ dependencies = [
608
+ "zerocopy",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "predicates"
613
+ version = "3.1.4"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
616
+ dependencies = [
617
+ "anstyle",
618
+ "difflib",
619
+ "float-cmp",
620
+ "normalize-line-endings",
621
+ "predicates-core",
622
+ "regex",
623
+ ]
624
+
625
+ [[package]]
626
+ name = "predicates-core"
627
+ version = "1.0.10"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
630
+
631
+ [[package]]
632
+ name = "predicates-tree"
633
+ version = "1.0.13"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
636
+ dependencies = [
637
+ "predicates-core",
638
+ "termtree",
639
+ ]
640
+
641
+ [[package]]
642
+ name = "proc-macro2"
643
+ version = "1.0.107"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
646
+ dependencies = [
647
+ "unicode-ident",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "proptest"
652
+ version = "1.11.0"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
655
+ dependencies = [
656
+ "bit-set",
657
+ "bit-vec",
658
+ "bitflags",
659
+ "num-traits",
660
+ "rand 0.9.5",
661
+ "rand_chacha",
662
+ "rand_xorshift",
663
+ "regex-syntax",
664
+ "rusty-fork",
665
+ "tempfile",
666
+ "unarray",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "pyo3"
671
+ version = "0.29.2"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
674
+ dependencies = [
675
+ "libc",
676
+ "once_cell",
677
+ "portable-atomic",
678
+ "pyo3-build-config",
679
+ "pyo3-ffi",
680
+ "pyo3-macros",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "pyo3-build-config"
685
+ version = "0.29.2"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
688
+ dependencies = [
689
+ "target-lexicon",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "pyo3-ffi"
694
+ version = "0.29.2"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
697
+ dependencies = [
698
+ "libc",
699
+ "pyo3-build-config",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "pyo3-macros"
704
+ version = "0.29.2"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
707
+ dependencies = [
708
+ "proc-macro2",
709
+ "pyo3-macros-backend",
710
+ "quote",
711
+ "syn 2.0.119",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "pyo3-macros-backend"
716
+ version = "0.29.2"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
719
+ dependencies = [
720
+ "heck",
721
+ "proc-macro2",
722
+ "quote",
723
+ "syn 2.0.119",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "quick-error"
728
+ version = "1.2.3"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
731
+
732
+ [[package]]
733
+ name = "quote"
734
+ version = "1.0.47"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
737
+ dependencies = [
738
+ "proc-macro2",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "r-efi"
743
+ version = "5.3.0"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
746
+
747
+ [[package]]
748
+ name = "r-efi"
749
+ version = "6.0.0"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
752
+
753
+ [[package]]
754
+ name = "rand"
755
+ version = "0.9.5"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
758
+ dependencies = [
759
+ "rand_chacha",
760
+ "rand_core 0.9.5",
761
+ ]
762
+
763
+ [[package]]
764
+ name = "rand"
765
+ version = "0.10.2"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
768
+ dependencies = [
769
+ "chacha20",
770
+ "getrandom 0.4.3",
771
+ "rand_core 0.10.1",
772
+ ]
773
+
774
+ [[package]]
775
+ name = "rand_chacha"
776
+ version = "0.9.0"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
779
+ dependencies = [
780
+ "ppv-lite86",
781
+ "rand_core 0.9.5",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "rand_core"
786
+ version = "0.9.5"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
789
+ dependencies = [
790
+ "getrandom 0.3.4",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "rand_core"
795
+ version = "0.10.1"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
798
+
799
+ [[package]]
800
+ name = "rand_xorshift"
801
+ version = "0.4.0"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
804
+ dependencies = [
805
+ "rand_core 0.9.5",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "rayon"
810
+ version = "1.12.0"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
813
+ dependencies = [
814
+ "either",
815
+ "rayon-core",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "rayon-core"
820
+ version = "1.13.0"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
823
+ dependencies = [
824
+ "crossbeam-deque",
825
+ "crossbeam-utils",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "regex"
830
+ version = "1.13.1"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
833
+ dependencies = [
834
+ "aho-corasick",
835
+ "memchr",
836
+ "regex-automata",
837
+ "regex-syntax",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "regex-automata"
842
+ version = "0.4.18"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
845
+ dependencies = [
846
+ "aho-corasick",
847
+ "memchr",
848
+ "regex-syntax",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "regex-syntax"
853
+ version = "0.8.11"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
856
+
857
+ [[package]]
858
+ name = "rustix"
859
+ version = "1.1.4"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
862
+ dependencies = [
863
+ "bitflags",
864
+ "errno",
865
+ "libc",
866
+ "linux-raw-sys",
867
+ "windows-sys",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "rustoku-cli"
872
+ version = "0.15.0"
873
+ dependencies = [
874
+ "assert_cmd",
875
+ "clap",
876
+ "csv",
877
+ "predicates",
878
+ "rustoku-lib",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "rustoku-lib"
883
+ version = "0.15.0"
884
+ dependencies = [
885
+ "bitflags",
886
+ "clap",
887
+ "criterion",
888
+ "proptest",
889
+ "rand 0.10.2",
890
+ "rayon",
891
+ "serde",
892
+ "serde_json",
893
+ "thiserror",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "rustoku-py"
898
+ version = "0.15.0"
899
+ dependencies = [
900
+ "pyo3",
901
+ "rustoku-lib",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "rustoku-wasm"
906
+ version = "0.15.0"
907
+ dependencies = [
908
+ "console_error_panic_hook",
909
+ "getrandom 0.4.3",
910
+ "rustoku-lib",
911
+ "serde-wasm-bindgen",
912
+ "wasm-bindgen",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "rustversion"
917
+ version = "1.0.23"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
920
+
921
+ [[package]]
922
+ name = "rusty-fork"
923
+ version = "0.3.1"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
926
+ dependencies = [
927
+ "fnv",
928
+ "quick-error",
929
+ "tempfile",
930
+ "wait-timeout",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "ryu"
935
+ version = "1.0.23"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
938
+
939
+ [[package]]
940
+ name = "same-file"
941
+ version = "1.0.6"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
944
+ dependencies = [
945
+ "winapi-util",
946
+ ]
947
+
948
+ [[package]]
949
+ name = "serde"
950
+ version = "1.0.229"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
953
+ dependencies = [
954
+ "serde_core",
955
+ "serde_derive",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "serde-wasm-bindgen"
960
+ version = "0.6.5"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
963
+ dependencies = [
964
+ "js-sys",
965
+ "serde",
966
+ "wasm-bindgen",
967
+ ]
968
+
969
+ [[package]]
970
+ name = "serde_core"
971
+ version = "1.0.229"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
974
+ dependencies = [
975
+ "serde_derive",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "serde_derive"
980
+ version = "1.0.229"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
983
+ dependencies = [
984
+ "proc-macro2",
985
+ "quote",
986
+ "syn 3.0.5",
987
+ ]
988
+
989
+ [[package]]
990
+ name = "serde_json"
991
+ version = "1.0.151"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
994
+ dependencies = [
995
+ "itoa",
996
+ "memchr",
997
+ "serde",
998
+ "serde_core",
999
+ "zmij",
1000
+ ]
1001
+
1002
+ [[package]]
1003
+ name = "shlex"
1004
+ version = "2.0.1"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1007
+
1008
+ [[package]]
1009
+ name = "slab"
1010
+ version = "0.4.12"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1013
+
1014
+ [[package]]
1015
+ name = "strsim"
1016
+ version = "0.11.1"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1019
+
1020
+ [[package]]
1021
+ name = "syn"
1022
+ version = "2.0.119"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1025
+ dependencies = [
1026
+ "proc-macro2",
1027
+ "quote",
1028
+ "unicode-ident",
1029
+ ]
1030
+
1031
+ [[package]]
1032
+ name = "syn"
1033
+ version = "3.0.5"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
1036
+ dependencies = [
1037
+ "proc-macro2",
1038
+ "quote",
1039
+ "unicode-ident",
1040
+ ]
1041
+
1042
+ [[package]]
1043
+ name = "target-lexicon"
1044
+ version = "0.13.5"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1047
+
1048
+ [[package]]
1049
+ name = "tempfile"
1050
+ version = "3.27.0"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1053
+ dependencies = [
1054
+ "fastrand",
1055
+ "getrandom 0.4.3",
1056
+ "once_cell",
1057
+ "rustix",
1058
+ "windows-sys",
1059
+ ]
1060
+
1061
+ [[package]]
1062
+ name = "termtree"
1063
+ version = "0.5.1"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
1066
+
1067
+ [[package]]
1068
+ name = "thiserror"
1069
+ version = "2.0.20"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
1072
+ dependencies = [
1073
+ "thiserror-impl",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "thiserror-impl"
1078
+ version = "2.0.20"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
1081
+ dependencies = [
1082
+ "proc-macro2",
1083
+ "quote",
1084
+ "syn 3.0.5",
1085
+ ]
1086
+
1087
+ [[package]]
1088
+ name = "tinytemplate"
1089
+ version = "1.2.1"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1092
+ dependencies = [
1093
+ "serde",
1094
+ "serde_json",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "unarray"
1099
+ version = "0.1.4"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1102
+
1103
+ [[package]]
1104
+ name = "unicode-ident"
1105
+ version = "1.0.24"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1108
+
1109
+ [[package]]
1110
+ name = "utf8parse"
1111
+ version = "0.2.2"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1114
+
1115
+ [[package]]
1116
+ name = "wait-timeout"
1117
+ version = "0.2.1"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1120
+ dependencies = [
1121
+ "libc",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "walkdir"
1126
+ version = "2.5.0"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1129
+ dependencies = [
1130
+ "same-file",
1131
+ "winapi-util",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "wasip2"
1136
+ version = "1.0.4+wasi-0.2.12"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
1139
+ dependencies = [
1140
+ "wit-bindgen",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "wasm-bindgen"
1145
+ version = "0.2.128"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "aecb87a33d3b0c5e3b7aa46336eaf486cffafbd281b195e4c8b80d50df2351bf"
1148
+ dependencies = [
1149
+ "cfg-if",
1150
+ "once_cell",
1151
+ "rustversion",
1152
+ "wasm-bindgen-macro",
1153
+ "wasm-bindgen-shared",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "wasm-bindgen-macro"
1158
+ version = "0.2.128"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "a690d511e3c1a8b3a55e33511e3c2c00c78415cd23650f32b808627f5696b9ed"
1161
+ dependencies = [
1162
+ "quote",
1163
+ "wasm-bindgen-macro-support",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "wasm-bindgen-macro-support"
1168
+ version = "0.2.128"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "411e4887f0071ef2d2164a9d5fdf2d20efbef78fccd3a78b0c10a1dc5295e48a"
1171
+ dependencies = [
1172
+ "bumpalo",
1173
+ "proc-macro2",
1174
+ "quote",
1175
+ "syn 3.0.5",
1176
+ "wasm-bindgen-shared",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "wasm-bindgen-shared"
1181
+ version = "0.2.128"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "81941cd78d0c92026c33e5e01312845a4cb1e9af3407f9134b100dd03144103e"
1184
+ dependencies = [
1185
+ "unicode-ident",
1186
+ ]
1187
+
1188
+ [[package]]
1189
+ name = "web-sys"
1190
+ version = "0.3.105"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "9fbddc4a036f00ec4f18c83445bd3115cb306a91da554919a099d9222fe4a7f8"
1193
+ dependencies = [
1194
+ "js-sys",
1195
+ "wasm-bindgen",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "winapi"
1200
+ version = "0.3.9"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1203
+ dependencies = [
1204
+ "winapi-i686-pc-windows-gnu",
1205
+ "winapi-x86_64-pc-windows-gnu",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "winapi-i686-pc-windows-gnu"
1210
+ version = "0.4.0"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1213
+
1214
+ [[package]]
1215
+ name = "winapi-util"
1216
+ version = "0.1.11"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1219
+ dependencies = [
1220
+ "windows-sys",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "winapi-x86_64-pc-windows-gnu"
1225
+ version = "0.4.0"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1228
+
1229
+ [[package]]
1230
+ name = "windows-link"
1231
+ version = "0.2.1"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1234
+
1235
+ [[package]]
1236
+ name = "windows-sys"
1237
+ version = "0.61.2"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1240
+ dependencies = [
1241
+ "windows-link",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "wit-bindgen"
1246
+ version = "0.57.1"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1249
+
1250
+ [[package]]
1251
+ name = "zerocopy"
1252
+ version = "0.8.56"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
1255
+ dependencies = [
1256
+ "zerocopy-derive",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "zerocopy-derive"
1261
+ version = "0.8.56"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
1264
+ dependencies = [
1265
+ "proc-macro2",
1266
+ "quote",
1267
+ "syn 2.0.119",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "zmij"
1272
+ version = "1.0.23"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"