akana 0.1.2__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 (67) hide show
  1. akana-0.1.2/Cargo.lock +955 -0
  2. akana-0.1.2/Cargo.toml +27 -0
  3. akana-0.1.2/PKG-INFO +288 -0
  4. akana-0.1.2/README.md +261 -0
  5. akana-0.1.2/crates/akana-core/Cargo.toml +21 -0
  6. akana-0.1.2/crates/akana-core/src/analysis/keywords.rs +114 -0
  7. akana-0.1.2/crates/akana-core/src/analysis/mod.rs +7 -0
  8. akana-0.1.2/crates/akana-core/src/analysis/summarizer.rs +113 -0
  9. akana-0.1.2/crates/akana-core/src/lib.rs +92 -0
  10. akana-0.1.2/crates/akana-core/src/morphology/analyzer.rs +312 -0
  11. akana-0.1.2/crates/akana-core/src/morphology/compound.rs +79 -0
  12. akana-0.1.2/crates/akana-core/src/morphology/dictionary.rs +560 -0
  13. akana-0.1.2/crates/akana-core/src/morphology/disambiguator.rs +117 -0
  14. akana-0.1.2/crates/akana-core/src/morphology/generator.rs +218 -0
  15. akana-0.1.2/crates/akana-core/src/morphology/graph.rs +776 -0
  16. akana-0.1.2/crates/akana-core/src/morphology/mod.rs +23 -0
  17. akana-0.1.2/crates/akana-core/src/morphology/pos.rs +103 -0
  18. akana-0.1.2/crates/akana-core/src/morphology/stemmer.rs +44 -0
  19. akana-0.1.2/crates/akana-core/src/morphology/stopwords.rs +78 -0
  20. akana-0.1.2/crates/akana-core/src/morphology/suffixes.rs +161 -0
  21. akana-0.1.2/crates/akana-core/src/morphology/zemberek_lexicon.txt +93167 -0
  22. akana-0.1.2/crates/akana-core/src/ner/mod.rs +291 -0
  23. akana-0.1.2/crates/akana-core/src/normalization/asciifier.rs +37 -0
  24. akana-0.1.2/crates/akana-core/src/normalization/deasciifier.rs +145 -0
  25. akana-0.1.2/crates/akana-core/src/normalization/informal.rs +199 -0
  26. akana-0.1.2/crates/akana-core/src/normalization/mod.rs +13 -0
  27. akana-0.1.2/crates/akana-core/src/normalization/numbers.rs +243 -0
  28. akana-0.1.2/crates/akana-core/src/normalization/spellcheck.rs +128 -0
  29. akana-0.1.2/crates/akana-core/src/parser/arc_eager.rs +147 -0
  30. akana-0.1.2/crates/akana-core/src/parser/mod.rs +7 -0
  31. akana-0.1.2/crates/akana-core/src/parser/tree.rs +51 -0
  32. akana-0.1.2/crates/akana-core/src/phonology/alphabet.rs +187 -0
  33. akana-0.1.2/crates/akana-core/src/phonology/harmony.rs +101 -0
  34. akana-0.1.2/crates/akana-core/src/phonology/mod.rs +11 -0
  35. akana-0.1.2/crates/akana-core/src/phonology/mutation.rs +126 -0
  36. akana-0.1.2/crates/akana-core/src/phonology/syllable.rs +89 -0
  37. akana-0.1.2/crates/akana-core/src/readability/kalyoncu.rs +294 -0
  38. akana-0.1.2/crates/akana-core/src/readability/kalyoncu_words.txt +4598 -0
  39. akana-0.1.2/crates/akana-core/src/readability/legacy.rs +83 -0
  40. akana-0.1.2/crates/akana-core/src/readability/metrics.rs +51 -0
  41. akana-0.1.2/crates/akana-core/src/readability/mod.rs +26 -0
  42. akana-0.1.2/crates/akana-core/src/style/cliches.rs +416 -0
  43. akana-0.1.2/crates/akana-core/src/style/detector.rs +225 -0
  44. akana-0.1.2/crates/akana-core/src/style/humanizer.rs +138 -0
  45. akana-0.1.2/crates/akana-core/src/style/mod.rs +11 -0
  46. akana-0.1.2/crates/akana-core/src/style/style_metrics.rs +180 -0
  47. akana-0.1.2/crates/akana-core/src/syntactic_morphology/analyzer.rs +230 -0
  48. akana-0.1.2/crates/akana-core/src/syntactic_morphology/google_lexicon.txt +47204 -0
  49. akana-0.1.2/crates/akana-core/src/syntactic_morphology/lexicon.rs +176 -0
  50. akana-0.1.2/crates/akana-core/src/syntactic_morphology/mod.rs +10 -0
  51. akana-0.1.2/crates/akana-core/src/syntactic_morphology/types.rs +103 -0
  52. akana-0.1.2/crates/akana-core/src/tokenization/mod.rs +7 -0
  53. akana-0.1.2/crates/akana-core/src/tokenization/sentence.rs +102 -0
  54. akana-0.1.2/crates/akana-core/src/tokenization/tokenizer.rs +229 -0
  55. akana-0.1.2/crates/akana-core/tests/morphology_tests.rs +184 -0
  56. akana-0.1.2/crates/akana-core/tests/nlp_tools_tests.rs +50 -0
  57. akana-0.1.2/crates/akana-core/tests/normalization_tests.rs +45 -0
  58. akana-0.1.2/crates/akana-core/tests/parser_tests.rs +23 -0
  59. akana-0.1.2/crates/akana-core/tests/phonology_tests.rs +100 -0
  60. akana-0.1.2/crates/akana-core/tests/readability_tests.rs +52 -0
  61. akana-0.1.2/crates/akana-core/tests/style_tests.rs +42 -0
  62. akana-0.1.2/crates/akana-core/tests/syntactic_morphology_tests.rs +54 -0
  63. akana-0.1.2/crates/akana-core/tests/tokenization_tests.rs +28 -0
  64. akana-0.1.2/crates/akana-py/Cargo.toml +17 -0
  65. akana-0.1.2/crates/akana-py/src/lib.rs +429 -0
  66. akana-0.1.2/pyproject.toml +42 -0
  67. akana-0.1.2/python/akana/__init__.py +261 -0
akana-0.1.2/Cargo.lock ADDED
@@ -0,0 +1,955 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "getrandom",
13
+ "once_cell",
14
+ "version_check",
15
+ "zerocopy",
16
+ ]
17
+
18
+ [[package]]
19
+ name = "aho-corasick"
20
+ version = "1.1.5"
21
+ source = "registry+https://github.com/rust-lang/crates.io-index"
22
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
23
+ dependencies = [
24
+ "memchr",
25
+ ]
26
+
27
+ [[package]]
28
+ name = "akana-cli"
29
+ version = "0.1.1"
30
+ dependencies = [
31
+ "akana-core",
32
+ "clap",
33
+ "serde_json",
34
+ ]
35
+
36
+ [[package]]
37
+ name = "akana-core"
38
+ version = "0.1.1"
39
+ dependencies = [
40
+ "ahash",
41
+ "bitflags",
42
+ "criterion",
43
+ "lazy_static",
44
+ "regex",
45
+ "serde",
46
+ "serde_json",
47
+ "smallvec",
48
+ "stringzilla",
49
+ "thiserror",
50
+ ]
51
+
52
+ [[package]]
53
+ name = "akana-py"
54
+ version = "0.1.1"
55
+ dependencies = [
56
+ "akana-core",
57
+ "pyo3",
58
+ "serde",
59
+ "serde_json",
60
+ ]
61
+
62
+ [[package]]
63
+ name = "anes"
64
+ version = "0.1.6"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
67
+
68
+ [[package]]
69
+ name = "anstream"
70
+ version = "1.0.0"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
73
+ dependencies = [
74
+ "anstyle",
75
+ "anstyle-parse",
76
+ "anstyle-query",
77
+ "anstyle-wincon",
78
+ "colorchoice",
79
+ "is_terminal_polyfill",
80
+ "utf8parse",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "anstyle"
85
+ version = "1.0.14"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
88
+
89
+ [[package]]
90
+ name = "anstyle-parse"
91
+ version = "1.0.0"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
94
+ dependencies = [
95
+ "utf8parse",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "anstyle-query"
100
+ version = "1.1.5"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
103
+ dependencies = [
104
+ "windows-sys",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "anstyle-wincon"
109
+ version = "3.0.11"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
112
+ dependencies = [
113
+ "anstyle",
114
+ "once_cell_polyfill",
115
+ "windows-sys",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "autocfg"
120
+ version = "1.5.1"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
123
+
124
+ [[package]]
125
+ name = "bitflags"
126
+ version = "2.13.1"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
129
+ dependencies = [
130
+ "serde_core",
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.3"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "509591b7bcd67f4ef775afad7662703b4935daaa6ec0e5605cfb1090b32a2b6d"
150
+ dependencies = [
151
+ "find-msvc-tools",
152
+ "shlex",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "cfg-if"
157
+ version = "1.0.4"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
160
+
161
+ [[package]]
162
+ name = "ciborium"
163
+ version = "0.2.2"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
166
+ dependencies = [
167
+ "ciborium-io",
168
+ "ciborium-ll",
169
+ "serde",
170
+ ]
171
+
172
+ [[package]]
173
+ name = "ciborium-io"
174
+ version = "0.2.2"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
177
+
178
+ [[package]]
179
+ name = "ciborium-ll"
180
+ version = "0.2.2"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
183
+ dependencies = [
184
+ "ciborium-io",
185
+ "half",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "clap"
190
+ version = "4.6.6"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
193
+ dependencies = [
194
+ "clap_builder",
195
+ "clap_derive",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "clap_builder"
200
+ version = "4.6.6"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
203
+ dependencies = [
204
+ "anstream",
205
+ "anstyle",
206
+ "clap_lex",
207
+ "strsim",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "clap_derive"
212
+ version = "4.6.4"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
215
+ dependencies = [
216
+ "heck",
217
+ "proc-macro2",
218
+ "quote",
219
+ "syn 3.0.3",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "clap_lex"
224
+ version = "1.1.0"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
227
+
228
+ [[package]]
229
+ name = "colorchoice"
230
+ version = "1.0.5"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
233
+
234
+ [[package]]
235
+ name = "criterion"
236
+ version = "0.5.1"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
239
+ dependencies = [
240
+ "anes",
241
+ "cast",
242
+ "ciborium",
243
+ "clap",
244
+ "criterion-plot",
245
+ "is-terminal",
246
+ "itertools",
247
+ "num-traits",
248
+ "once_cell",
249
+ "oorandom",
250
+ "plotters",
251
+ "rayon",
252
+ "regex",
253
+ "serde",
254
+ "serde_derive",
255
+ "serde_json",
256
+ "tinytemplate",
257
+ "walkdir",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "criterion-plot"
262
+ version = "0.5.0"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
265
+ dependencies = [
266
+ "cast",
267
+ "itertools",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "crossbeam-deque"
272
+ version = "0.8.7"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
275
+ dependencies = [
276
+ "crossbeam-epoch",
277
+ "crossbeam-utils",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "crossbeam-epoch"
282
+ version = "0.9.20"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
285
+ dependencies = [
286
+ "crossbeam-utils",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "crossbeam-utils"
291
+ version = "0.8.22"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
294
+
295
+ [[package]]
296
+ name = "crunchy"
297
+ version = "0.2.4"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
300
+
301
+ [[package]]
302
+ name = "either"
303
+ version = "1.17.0"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
306
+
307
+ [[package]]
308
+ name = "find-msvc-tools"
309
+ version = "0.1.11"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
312
+
313
+ [[package]]
314
+ name = "futures-core"
315
+ version = "0.3.34"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
318
+
319
+ [[package]]
320
+ name = "futures-task"
321
+ version = "0.3.34"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
324
+
325
+ [[package]]
326
+ name = "futures-util"
327
+ version = "0.3.34"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
330
+ dependencies = [
331
+ "futures-core",
332
+ "futures-task",
333
+ "pin-project-lite",
334
+ "slab",
335
+ ]
336
+
337
+ [[package]]
338
+ name = "getrandom"
339
+ version = "0.3.4"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
342
+ dependencies = [
343
+ "cfg-if",
344
+ "libc",
345
+ "r-efi",
346
+ "wasip2",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "half"
351
+ version = "2.7.1"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
354
+ dependencies = [
355
+ "cfg-if",
356
+ "crunchy",
357
+ "zerocopy",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "heck"
362
+ version = "0.5.0"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
365
+
366
+ [[package]]
367
+ name = "hermit-abi"
368
+ version = "0.5.2"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
371
+
372
+ [[package]]
373
+ name = "indoc"
374
+ version = "2.0.7"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
377
+ dependencies = [
378
+ "rustversion",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "is-terminal"
383
+ version = "0.4.17"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
386
+ dependencies = [
387
+ "hermit-abi",
388
+ "libc",
389
+ "windows-sys",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "is_terminal_polyfill"
394
+ version = "1.70.2"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
397
+
398
+ [[package]]
399
+ name = "itertools"
400
+ version = "0.10.5"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
403
+ dependencies = [
404
+ "either",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "itoa"
409
+ version = "1.0.18"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
412
+
413
+ [[package]]
414
+ name = "js-sys"
415
+ version = "0.3.104"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
418
+ dependencies = [
419
+ "cfg-if",
420
+ "futures-util",
421
+ "wasm-bindgen",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "lazy_static"
426
+ version = "1.5.0"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
429
+
430
+ [[package]]
431
+ name = "libc"
432
+ version = "0.2.189"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
435
+
436
+ [[package]]
437
+ name = "memchr"
438
+ version = "2.8.3"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
441
+
442
+ [[package]]
443
+ name = "memoffset"
444
+ version = "0.9.1"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
447
+ dependencies = [
448
+ "autocfg",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "num-traits"
453
+ version = "0.2.19"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
456
+ dependencies = [
457
+ "autocfg",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "once_cell"
462
+ version = "1.21.4"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
465
+
466
+ [[package]]
467
+ name = "once_cell_polyfill"
468
+ version = "1.70.2"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
471
+
472
+ [[package]]
473
+ name = "oorandom"
474
+ version = "11.1.5"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
477
+
478
+ [[package]]
479
+ name = "pin-project-lite"
480
+ version = "0.2.17"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
483
+
484
+ [[package]]
485
+ name = "plotters"
486
+ version = "0.3.7"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
489
+ dependencies = [
490
+ "num-traits",
491
+ "plotters-backend",
492
+ "plotters-svg",
493
+ "wasm-bindgen",
494
+ "web-sys",
495
+ ]
496
+
497
+ [[package]]
498
+ name = "plotters-backend"
499
+ version = "0.3.7"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
502
+
503
+ [[package]]
504
+ name = "plotters-svg"
505
+ version = "0.3.7"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
508
+ dependencies = [
509
+ "plotters-backend",
510
+ ]
511
+
512
+ [[package]]
513
+ name = "portable-atomic"
514
+ version = "1.15.0"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
517
+
518
+ [[package]]
519
+ name = "proc-macro2"
520
+ version = "1.0.107"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
523
+ dependencies = [
524
+ "unicode-ident",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "pyo3"
529
+ version = "0.22.6"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
532
+ dependencies = [
533
+ "cfg-if",
534
+ "indoc",
535
+ "libc",
536
+ "memoffset",
537
+ "once_cell",
538
+ "portable-atomic",
539
+ "pyo3-build-config",
540
+ "pyo3-ffi",
541
+ "pyo3-macros",
542
+ "unindent",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "pyo3-build-config"
547
+ version = "0.22.6"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
550
+ dependencies = [
551
+ "once_cell",
552
+ "target-lexicon",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "pyo3-ffi"
557
+ version = "0.22.6"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
560
+ dependencies = [
561
+ "libc",
562
+ "pyo3-build-config",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "pyo3-macros"
567
+ version = "0.22.6"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
570
+ dependencies = [
571
+ "proc-macro2",
572
+ "pyo3-macros-backend",
573
+ "quote",
574
+ "syn 2.0.119",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "pyo3-macros-backend"
579
+ version = "0.22.6"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
582
+ dependencies = [
583
+ "heck",
584
+ "proc-macro2",
585
+ "pyo3-build-config",
586
+ "quote",
587
+ "syn 2.0.119",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "quote"
592
+ version = "1.0.47"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
595
+ dependencies = [
596
+ "proc-macro2",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "r-efi"
601
+ version = "5.3.0"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
604
+
605
+ [[package]]
606
+ name = "rayon"
607
+ version = "1.12.0"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
610
+ dependencies = [
611
+ "either",
612
+ "rayon-core",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "rayon-core"
617
+ version = "1.13.0"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
620
+ dependencies = [
621
+ "crossbeam-deque",
622
+ "crossbeam-utils",
623
+ ]
624
+
625
+ [[package]]
626
+ name = "regex"
627
+ version = "1.13.1"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
630
+ dependencies = [
631
+ "aho-corasick",
632
+ "memchr",
633
+ "regex-automata",
634
+ "regex-syntax",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "regex-automata"
639
+ version = "0.4.18"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
642
+ dependencies = [
643
+ "aho-corasick",
644
+ "memchr",
645
+ "regex-syntax",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "regex-syntax"
650
+ version = "0.8.11"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
653
+
654
+ [[package]]
655
+ name = "rustversion"
656
+ version = "1.0.23"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
659
+
660
+ [[package]]
661
+ name = "same-file"
662
+ version = "1.0.6"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
665
+ dependencies = [
666
+ "winapi-util",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "serde"
671
+ version = "1.0.229"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
674
+ dependencies = [
675
+ "serde_core",
676
+ "serde_derive",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "serde_core"
681
+ version = "1.0.229"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
684
+ dependencies = [
685
+ "serde_derive",
686
+ ]
687
+
688
+ [[package]]
689
+ name = "serde_derive"
690
+ version = "1.0.229"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
693
+ dependencies = [
694
+ "proc-macro2",
695
+ "quote",
696
+ "syn 3.0.3",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "serde_json"
701
+ version = "1.0.151"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
704
+ dependencies = [
705
+ "itoa",
706
+ "memchr",
707
+ "serde",
708
+ "serde_core",
709
+ "zmij",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "shlex"
714
+ version = "2.0.1"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
717
+
718
+ [[package]]
719
+ name = "slab"
720
+ version = "0.4.12"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
723
+
724
+ [[package]]
725
+ name = "smallvec"
726
+ version = "1.15.2"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
729
+
730
+ [[package]]
731
+ name = "stringzilla"
732
+ version = "3.12.6"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "4f562e07d42f213af747a28b1845d155c651c1c1b4072192b030239965de9a3f"
735
+ dependencies = [
736
+ "cc",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "strsim"
741
+ version = "0.11.1"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
744
+
745
+ [[package]]
746
+ name = "syn"
747
+ version = "2.0.119"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
750
+ dependencies = [
751
+ "proc-macro2",
752
+ "quote",
753
+ "unicode-ident",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "syn"
758
+ version = "3.0.3"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
761
+ dependencies = [
762
+ "proc-macro2",
763
+ "quote",
764
+ "unicode-ident",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "target-lexicon"
769
+ version = "0.12.16"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
772
+
773
+ [[package]]
774
+ name = "thiserror"
775
+ version = "1.0.69"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
778
+ dependencies = [
779
+ "thiserror-impl",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "thiserror-impl"
784
+ version = "1.0.69"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
787
+ dependencies = [
788
+ "proc-macro2",
789
+ "quote",
790
+ "syn 2.0.119",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "tinytemplate"
795
+ version = "1.2.1"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
798
+ dependencies = [
799
+ "serde",
800
+ "serde_json",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "unicode-ident"
805
+ version = "1.0.24"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
808
+
809
+ [[package]]
810
+ name = "unindent"
811
+ version = "0.2.4"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
814
+
815
+ [[package]]
816
+ name = "utf8parse"
817
+ version = "0.2.2"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
820
+
821
+ [[package]]
822
+ name = "version_check"
823
+ version = "0.9.5"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
826
+
827
+ [[package]]
828
+ name = "walkdir"
829
+ version = "2.5.0"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
832
+ dependencies = [
833
+ "same-file",
834
+ "winapi-util",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "wasip2"
839
+ version = "1.0.4+wasi-0.2.12"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
842
+ dependencies = [
843
+ "wit-bindgen",
844
+ ]
845
+
846
+ [[package]]
847
+ name = "wasm-bindgen"
848
+ version = "0.2.127"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
851
+ dependencies = [
852
+ "cfg-if",
853
+ "once_cell",
854
+ "rustversion",
855
+ "wasm-bindgen-macro",
856
+ "wasm-bindgen-shared",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "wasm-bindgen-macro"
861
+ version = "0.2.127"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
864
+ dependencies = [
865
+ "quote",
866
+ "wasm-bindgen-macro-support",
867
+ ]
868
+
869
+ [[package]]
870
+ name = "wasm-bindgen-macro-support"
871
+ version = "0.2.127"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
874
+ dependencies = [
875
+ "bumpalo",
876
+ "proc-macro2",
877
+ "quote",
878
+ "syn 2.0.119",
879
+ "wasm-bindgen-shared",
880
+ ]
881
+
882
+ [[package]]
883
+ name = "wasm-bindgen-shared"
884
+ version = "0.2.127"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
887
+ dependencies = [
888
+ "unicode-ident",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "web-sys"
893
+ version = "0.3.104"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30"
896
+ dependencies = [
897
+ "js-sys",
898
+ "wasm-bindgen",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "winapi-util"
903
+ version = "0.1.11"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
906
+ dependencies = [
907
+ "windows-sys",
908
+ ]
909
+
910
+ [[package]]
911
+ name = "windows-link"
912
+ version = "0.2.1"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
915
+
916
+ [[package]]
917
+ name = "windows-sys"
918
+ version = "0.61.2"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
921
+ dependencies = [
922
+ "windows-link",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "wit-bindgen"
927
+ version = "0.57.1"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
930
+
931
+ [[package]]
932
+ name = "zerocopy"
933
+ version = "0.8.56"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
936
+ dependencies = [
937
+ "zerocopy-derive",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "zerocopy-derive"
942
+ version = "0.8.56"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
945
+ dependencies = [
946
+ "proc-macro2",
947
+ "quote",
948
+ "syn 2.0.119",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "zmij"
953
+ version = "1.0.23"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"