fuzzgpu 0.1.4__tar.gz → 0.1.6__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.
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/Cargo.lock +335 -5
- fuzzgpu-0.1.6/PKG-INFO +402 -0
- fuzzgpu-0.1.6/README.md +372 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/crates/fuzzgpu-core/Cargo.toml +6 -1
- fuzzgpu-0.1.6/crates/fuzzgpu-core/benches/bench.rs +306 -0
- fuzzgpu-0.1.6/crates/fuzzgpu-core/src/damerau.rs +787 -0
- fuzzgpu-0.1.6/crates/fuzzgpu-core/src/fuzz.rs +804 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/crates/fuzzgpu-core/src/gpu.rs +312 -8
- fuzzgpu-0.1.6/crates/fuzzgpu-core/src/jaro.rs +1388 -0
- fuzzgpu-0.1.6/crates/fuzzgpu-core/src/levenshtein.rs +1834 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/crates/fuzzgpu-core/src/lib.rs +6 -1
- fuzzgpu-0.1.6/crates/fuzzgpu-core/src/needleman.rs +1030 -0
- fuzzgpu-0.1.6/crates/fuzzgpu-core/src/shaders/damerau.wgsl +132 -0
- fuzzgpu-0.1.6/crates/fuzzgpu-core/src/shaders/damerau_matrix.wgsl +110 -0
- fuzzgpu-0.1.6/crates/fuzzgpu-core/src/shaders/jaro.wgsl +162 -0
- fuzzgpu-0.1.6/crates/fuzzgpu-core/src/shaders/jaro_matrix.wgsl +136 -0
- fuzzgpu-0.1.6/crates/fuzzgpu-core/src/shaders/levenshtein_cdist_myers.wgsl +145 -0
- fuzzgpu-0.1.6/crates/fuzzgpu-core/src/shaders/levenshtein_myers.wgsl +145 -0
- fuzzgpu-0.1.6/crates/fuzzgpu-core/src/shaders/levenshtein_short.wgsl +78 -0
- fuzzgpu-0.1.6/crates/fuzzgpu-core/src/shaders/needleman_wavefront.wgsl +150 -0
- fuzzgpu-0.1.6/crates/fuzzgpu-core/src/simd.rs +1551 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/crates/fuzzgpu-core/tests/differential.rs +344 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/crates/fuzzgpu-python/Cargo.toml +4 -3
- fuzzgpu-0.1.6/crates/fuzzgpu-python/src/lib.rs +936 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/crates/fuzzgpu-wasm/Cargo.toml +1 -1
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/pyproject.toml +2 -3
- fuzzgpu-0.1.6/python/fuzzgpu/__init__.py +198 -0
- fuzzgpu-0.1.6/python/fuzzgpu/__init__.pyi +168 -0
- fuzzgpu-0.1.6/python/fuzzgpu/distance/DamerauLevenshtein.py +43 -0
- fuzzgpu-0.1.6/python/fuzzgpu/distance/Hamming.py +76 -0
- fuzzgpu-0.1.6/python/fuzzgpu/distance/Indel.py +55 -0
- fuzzgpu-0.1.6/python/fuzzgpu/distance/Jaro.py +24 -0
- fuzzgpu-0.1.6/python/fuzzgpu/distance/JaroWinkler.py +26 -0
- fuzzgpu-0.1.6/python/fuzzgpu/distance/LCSseq.py +140 -0
- fuzzgpu-0.1.6/python/fuzzgpu/distance/Levenshtein.py +174 -0
- fuzzgpu-0.1.6/python/fuzzgpu/distance/OSA.py +48 -0
- fuzzgpu-0.1.6/python/fuzzgpu/distance/Postfix.py +41 -0
- fuzzgpu-0.1.6/python/fuzzgpu/distance/Prefix.py +41 -0
- fuzzgpu-0.1.6/python/fuzzgpu/distance/__init__.py +34 -0
- fuzzgpu-0.1.6/python/fuzzgpu/distance/__init__.pyi +42 -0
- fuzzgpu-0.1.6/python/fuzzgpu/distance/_common.py +619 -0
- fuzzgpu-0.1.6/python/fuzzgpu/fuzz.py +117 -0
- fuzzgpu-0.1.6/python/fuzzgpu/fuzz.pyi +48 -0
- fuzzgpu-0.1.6/python/fuzzgpu/process.py +232 -0
- fuzzgpu-0.1.6/python/fuzzgpu/process.pyi +55 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/tests/test_api_signatures.py +1 -1
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/tests/test_edge_cases.py +3 -3
- fuzzgpu-0.1.6/tests/test_out_buffers.py +160 -0
- fuzzgpu-0.1.6/tests/test_rapidfuzz_compat.py +213 -0
- fuzzgpu-0.1.4/PKG-INFO +0 -456
- fuzzgpu-0.1.4/README.md +0 -425
- fuzzgpu-0.1.4/assets/banner.svg +0 -66
- fuzzgpu-0.1.4/assets/github-stats.svg +0 -51
- fuzzgpu-0.1.4/assets/logo.svg +0 -46
- fuzzgpu-0.1.4/assets/top-languages.svg +0 -62
- fuzzgpu-0.1.4/crates/fuzzgpu-core/src/damerau.rs +0 -229
- fuzzgpu-0.1.4/crates/fuzzgpu-core/src/fuzz.rs +0 -267
- fuzzgpu-0.1.4/crates/fuzzgpu-core/src/jaro.rs +0 -833
- fuzzgpu-0.1.4/crates/fuzzgpu-core/src/levenshtein.rs +0 -685
- fuzzgpu-0.1.4/crates/fuzzgpu-core/src/needleman.rs +0 -487
- fuzzgpu-0.1.4/crates/fuzzgpu-core/src/shaders/jaro.wgsl +0 -123
- fuzzgpu-0.1.4/crates/fuzzgpu-core/src/shaders/jaro_matrix.wgsl +0 -123
- fuzzgpu-0.1.4/crates/fuzzgpu-core/src/simd.rs +0 -298
- fuzzgpu-0.1.4/crates/fuzzgpu-python/src/lib.rs +0 -465
- fuzzgpu-0.1.4/python/fuzzgpu/__init__.py +0 -109
- fuzzgpu-0.1.4/python/fuzzgpu/fuzz.py +0 -29
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/Cargo.toml +0 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/LICENSE +0 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/assets/logo.png +0 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/crates/fuzzgpu-core/src/shaders/levenshtein.wgsl +0 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/crates/fuzzgpu-core/src/shaders/levenshtein_matrix.wgsl +0 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/crates/fuzzgpu-core/src/shaders/needleman_affine.wgsl +0 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/crates/fuzzgpu-core/tests/differential.proptest-regressions +0 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/crates/fuzzgpu-core/tests/fixtures/broken.wgsl +0 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/crates/fuzzgpu-core/tests/kernel_registration.rs +0 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/crates/fuzzgpu-wasm/src/lib.rs +0 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/crates/fuzzgpu-wasm/tests/differential_harness.js +0 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/crates/fuzzgpu-wasm/tests/js_api.test.cjs +0 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/tests/test_basic.py +0 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/tests/test_concurrency.py +0 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/tests/test_invariants.py +0 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/tests/test_stress.py +0 -0
- {fuzzgpu-0.1.4 → fuzzgpu-0.1.6}/tests/wasm_python_differential.py +0 -0
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 4
|
|
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
|
+
|
|
5
14
|
[[package]]
|
|
6
15
|
name = "allocator-api2"
|
|
7
16
|
version = "0.2.21"
|
|
@@ -17,6 +26,18 @@ dependencies = [
|
|
|
17
26
|
"libc",
|
|
18
27
|
]
|
|
19
28
|
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "anes"
|
|
31
|
+
version = "0.1.6"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstyle"
|
|
37
|
+
version = "1.0.14"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
40
|
+
|
|
20
41
|
[[package]]
|
|
21
42
|
name = "arrayvec"
|
|
22
43
|
version = "0.7.8"
|
|
@@ -109,6 +130,12 @@ dependencies = [
|
|
|
109
130
|
"syn 3.0.3",
|
|
110
131
|
]
|
|
111
132
|
|
|
133
|
+
[[package]]
|
|
134
|
+
name = "cast"
|
|
135
|
+
version = "0.3.0"
|
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
138
|
+
|
|
112
139
|
[[package]]
|
|
113
140
|
name = "cfg-if"
|
|
114
141
|
version = "1.0.4"
|
|
@@ -121,6 +148,58 @@ version = "0.2.2"
|
|
|
121
148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
149
|
checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
|
|
123
150
|
|
|
151
|
+
[[package]]
|
|
152
|
+
name = "ciborium"
|
|
153
|
+
version = "0.2.2"
|
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
156
|
+
dependencies = [
|
|
157
|
+
"ciborium-io",
|
|
158
|
+
"ciborium-ll",
|
|
159
|
+
"serde",
|
|
160
|
+
]
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "ciborium-io"
|
|
164
|
+
version = "0.2.2"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "ciborium-ll"
|
|
170
|
+
version = "0.2.2"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
173
|
+
dependencies = [
|
|
174
|
+
"ciborium-io",
|
|
175
|
+
"half",
|
|
176
|
+
]
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "clap"
|
|
180
|
+
version = "4.6.6"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
|
|
183
|
+
dependencies = [
|
|
184
|
+
"clap_builder",
|
|
185
|
+
]
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "clap_builder"
|
|
189
|
+
version = "4.6.6"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
|
|
192
|
+
dependencies = [
|
|
193
|
+
"anstyle",
|
|
194
|
+
"clap_lex",
|
|
195
|
+
]
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "clap_lex"
|
|
199
|
+
version = "1.1.0"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
202
|
+
|
|
124
203
|
[[package]]
|
|
125
204
|
name = "codespan-reporting"
|
|
126
205
|
version = "0.13.1"
|
|
@@ -132,6 +211,42 @@ dependencies = [
|
|
|
132
211
|
"unicode-width",
|
|
133
212
|
]
|
|
134
213
|
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "criterion"
|
|
216
|
+
version = "0.5.1"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"anes",
|
|
221
|
+
"cast",
|
|
222
|
+
"ciborium",
|
|
223
|
+
"clap",
|
|
224
|
+
"criterion-plot",
|
|
225
|
+
"is-terminal",
|
|
226
|
+
"itertools",
|
|
227
|
+
"num-traits",
|
|
228
|
+
"once_cell",
|
|
229
|
+
"oorandom",
|
|
230
|
+
"plotters",
|
|
231
|
+
"rayon",
|
|
232
|
+
"regex",
|
|
233
|
+
"serde",
|
|
234
|
+
"serde_derive",
|
|
235
|
+
"serde_json",
|
|
236
|
+
"tinytemplate",
|
|
237
|
+
"walkdir",
|
|
238
|
+
]
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "criterion-plot"
|
|
242
|
+
version = "0.5.0"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
245
|
+
dependencies = [
|
|
246
|
+
"cast",
|
|
247
|
+
"itertools",
|
|
248
|
+
]
|
|
249
|
+
|
|
135
250
|
[[package]]
|
|
136
251
|
name = "crossbeam-deque"
|
|
137
252
|
version = "0.8.7"
|
|
@@ -257,9 +372,10 @@ dependencies = [
|
|
|
257
372
|
|
|
258
373
|
[[package]]
|
|
259
374
|
name = "fuzzgpu-core"
|
|
260
|
-
version = "0.1.
|
|
375
|
+
version = "0.1.6"
|
|
261
376
|
dependencies = [
|
|
262
377
|
"bytemuck",
|
|
378
|
+
"criterion",
|
|
263
379
|
"log",
|
|
264
380
|
"pollster",
|
|
265
381
|
"proptest",
|
|
@@ -270,10 +386,11 @@ dependencies = [
|
|
|
270
386
|
|
|
271
387
|
[[package]]
|
|
272
388
|
name = "fuzzgpu-python"
|
|
273
|
-
version = "0.1.
|
|
389
|
+
version = "0.1.6"
|
|
274
390
|
dependencies = [
|
|
275
391
|
"fuzzgpu-core",
|
|
276
392
|
"log",
|
|
393
|
+
"numpy",
|
|
277
394
|
"pollster",
|
|
278
395
|
"pyo3",
|
|
279
396
|
]
|
|
@@ -385,6 +502,12 @@ version = "0.5.0"
|
|
|
385
502
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
503
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
387
504
|
|
|
505
|
+
[[package]]
|
|
506
|
+
name = "hermit-abi"
|
|
507
|
+
version = "0.5.2"
|
|
508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
510
|
+
|
|
388
511
|
[[package]]
|
|
389
512
|
name = "indexmap"
|
|
390
513
|
version = "2.14.0"
|
|
@@ -404,6 +527,32 @@ dependencies = [
|
|
|
404
527
|
"rustversion",
|
|
405
528
|
]
|
|
406
529
|
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "is-terminal"
|
|
532
|
+
version = "0.4.17"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
535
|
+
dependencies = [
|
|
536
|
+
"hermit-abi",
|
|
537
|
+
"libc",
|
|
538
|
+
"windows-sys",
|
|
539
|
+
]
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "itertools"
|
|
543
|
+
version = "0.10.5"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"either",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "itoa"
|
|
552
|
+
version = "1.0.18"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
555
|
+
|
|
407
556
|
[[package]]
|
|
408
557
|
name = "jni-sys"
|
|
409
558
|
version = "0.3.1"
|
|
@@ -509,6 +658,22 @@ version = "0.4.33"
|
|
|
509
658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
659
|
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
511
660
|
|
|
661
|
+
[[package]]
|
|
662
|
+
name = "matrixmultiply"
|
|
663
|
+
version = "0.3.11"
|
|
664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
+
checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7"
|
|
666
|
+
dependencies = [
|
|
667
|
+
"autocfg",
|
|
668
|
+
"rawpointer",
|
|
669
|
+
]
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "memchr"
|
|
673
|
+
version = "2.8.3"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
676
|
+
|
|
512
677
|
[[package]]
|
|
513
678
|
name = "memoffset"
|
|
514
679
|
version = "0.9.1"
|
|
@@ -538,7 +703,7 @@ dependencies = [
|
|
|
538
703
|
"naga-types",
|
|
539
704
|
"num-traits",
|
|
540
705
|
"once_cell",
|
|
541
|
-
"rustc-hash",
|
|
706
|
+
"rustc-hash 1.1.0",
|
|
542
707
|
"spirv",
|
|
543
708
|
"thiserror",
|
|
544
709
|
"unicode-ident",
|
|
@@ -552,10 +717,25 @@ checksum = "658200ddc25c6c7b860747516d132d1b284c0fafb7a380233acee9a72fb30e11"
|
|
|
552
717
|
dependencies = [
|
|
553
718
|
"hashbrown 0.17.1",
|
|
554
719
|
"indexmap",
|
|
555
|
-
"rustc-hash",
|
|
720
|
+
"rustc-hash 1.1.0",
|
|
556
721
|
"thiserror",
|
|
557
722
|
]
|
|
558
723
|
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "ndarray"
|
|
726
|
+
version = "0.16.1"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
|
|
729
|
+
dependencies = [
|
|
730
|
+
"matrixmultiply",
|
|
731
|
+
"num-complex",
|
|
732
|
+
"num-integer",
|
|
733
|
+
"num-traits",
|
|
734
|
+
"portable-atomic",
|
|
735
|
+
"portable-atomic-util",
|
|
736
|
+
"rawpointer",
|
|
737
|
+
]
|
|
738
|
+
|
|
559
739
|
[[package]]
|
|
560
740
|
name = "ndk-sys"
|
|
561
741
|
version = "0.6.0+11769913"
|
|
@@ -565,6 +745,24 @@ dependencies = [
|
|
|
565
745
|
"jni-sys 0.3.1",
|
|
566
746
|
]
|
|
567
747
|
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "num-complex"
|
|
750
|
+
version = "0.4.6"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
753
|
+
dependencies = [
|
|
754
|
+
"num-traits",
|
|
755
|
+
]
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "num-integer"
|
|
759
|
+
version = "0.1.47"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
|
|
762
|
+
dependencies = [
|
|
763
|
+
"num-traits",
|
|
764
|
+
]
|
|
765
|
+
|
|
568
766
|
[[package]]
|
|
569
767
|
name = "num-traits"
|
|
570
768
|
version = "0.2.19"
|
|
@@ -575,6 +773,21 @@ dependencies = [
|
|
|
575
773
|
"libm",
|
|
576
774
|
]
|
|
577
775
|
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "numpy"
|
|
778
|
+
version = "0.23.0"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "b94caae805f998a07d33af06e6a3891e38556051b8045c615470a71590e13e78"
|
|
781
|
+
dependencies = [
|
|
782
|
+
"libc",
|
|
783
|
+
"ndarray",
|
|
784
|
+
"num-complex",
|
|
785
|
+
"num-integer",
|
|
786
|
+
"num-traits",
|
|
787
|
+
"pyo3",
|
|
788
|
+
"rustc-hash 2.1.3",
|
|
789
|
+
]
|
|
790
|
+
|
|
578
791
|
[[package]]
|
|
579
792
|
name = "objc2"
|
|
580
793
|
version = "0.6.4"
|
|
@@ -667,6 +880,12 @@ version = "1.21.4"
|
|
|
667
880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
881
|
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
669
882
|
|
|
883
|
+
[[package]]
|
|
884
|
+
name = "oorandom"
|
|
885
|
+
version = "11.1.5"
|
|
886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
888
|
+
|
|
670
889
|
[[package]]
|
|
671
890
|
name = "ordered-float"
|
|
672
891
|
version = "5.3.0"
|
|
@@ -711,6 +930,34 @@ version = "0.3.34"
|
|
|
711
930
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
931
|
checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
|
|
713
932
|
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "plotters"
|
|
935
|
+
version = "0.3.7"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
938
|
+
dependencies = [
|
|
939
|
+
"num-traits",
|
|
940
|
+
"plotters-backend",
|
|
941
|
+
"plotters-svg",
|
|
942
|
+
"wasm-bindgen",
|
|
943
|
+
"web-sys",
|
|
944
|
+
]
|
|
945
|
+
|
|
946
|
+
[[package]]
|
|
947
|
+
name = "plotters-backend"
|
|
948
|
+
version = "0.3.7"
|
|
949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
950
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
951
|
+
|
|
952
|
+
[[package]]
|
|
953
|
+
name = "plotters-svg"
|
|
954
|
+
version = "0.3.7"
|
|
955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
956
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
957
|
+
dependencies = [
|
|
958
|
+
"plotters-backend",
|
|
959
|
+
]
|
|
960
|
+
|
|
714
961
|
[[package]]
|
|
715
962
|
name = "pollster"
|
|
716
963
|
version = "0.4.0"
|
|
@@ -933,6 +1180,12 @@ dependencies = [
|
|
|
933
1180
|
"objc2-quartz-core",
|
|
934
1181
|
]
|
|
935
1182
|
|
|
1183
|
+
[[package]]
|
|
1184
|
+
name = "rawpointer"
|
|
1185
|
+
version = "0.2.1"
|
|
1186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1187
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
1188
|
+
|
|
936
1189
|
[[package]]
|
|
937
1190
|
name = "rayon"
|
|
938
1191
|
version = "1.12.0"
|
|
@@ -962,6 +1215,29 @@ dependencies = [
|
|
|
962
1215
|
"bitflags",
|
|
963
1216
|
]
|
|
964
1217
|
|
|
1218
|
+
[[package]]
|
|
1219
|
+
name = "regex"
|
|
1220
|
+
version = "1.13.1"
|
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
1223
|
+
dependencies = [
|
|
1224
|
+
"aho-corasick",
|
|
1225
|
+
"memchr",
|
|
1226
|
+
"regex-automata",
|
|
1227
|
+
"regex-syntax",
|
|
1228
|
+
]
|
|
1229
|
+
|
|
1230
|
+
[[package]]
|
|
1231
|
+
name = "regex-automata"
|
|
1232
|
+
version = "0.4.18"
|
|
1233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
1235
|
+
dependencies = [
|
|
1236
|
+
"aho-corasick",
|
|
1237
|
+
"memchr",
|
|
1238
|
+
"regex-syntax",
|
|
1239
|
+
]
|
|
1240
|
+
|
|
965
1241
|
[[package]]
|
|
966
1242
|
name = "regex-syntax"
|
|
967
1243
|
version = "0.8.11"
|
|
@@ -980,6 +1256,12 @@ version = "1.1.0"
|
|
|
980
1256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
1257
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
982
1258
|
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "rustc-hash"
|
|
1261
|
+
version = "2.1.3"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
1264
|
+
|
|
983
1265
|
[[package]]
|
|
984
1266
|
name = "rustix"
|
|
985
1267
|
version = "1.1.4"
|
|
@@ -1011,6 +1293,15 @@ dependencies = [
|
|
|
1011
1293
|
"wait-timeout",
|
|
1012
1294
|
]
|
|
1013
1295
|
|
|
1296
|
+
[[package]]
|
|
1297
|
+
name = "same-file"
|
|
1298
|
+
version = "1.0.6"
|
|
1299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1300
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1301
|
+
dependencies = [
|
|
1302
|
+
"winapi-util",
|
|
1303
|
+
]
|
|
1304
|
+
|
|
1014
1305
|
[[package]]
|
|
1015
1306
|
name = "scopeguard"
|
|
1016
1307
|
version = "1.2.0"
|
|
@@ -1047,6 +1338,19 @@ dependencies = [
|
|
|
1047
1338
|
"syn 3.0.3",
|
|
1048
1339
|
]
|
|
1049
1340
|
|
|
1341
|
+
[[package]]
|
|
1342
|
+
name = "serde_json"
|
|
1343
|
+
version = "1.0.151"
|
|
1344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1345
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
1346
|
+
dependencies = [
|
|
1347
|
+
"itoa",
|
|
1348
|
+
"memchr",
|
|
1349
|
+
"serde",
|
|
1350
|
+
"serde_core",
|
|
1351
|
+
"zmij",
|
|
1352
|
+
]
|
|
1353
|
+
|
|
1050
1354
|
[[package]]
|
|
1051
1355
|
name = "slab"
|
|
1052
1356
|
version = "0.4.12"
|
|
@@ -1153,6 +1457,16 @@ dependencies = [
|
|
|
1153
1457
|
"syn 3.0.3",
|
|
1154
1458
|
]
|
|
1155
1459
|
|
|
1460
|
+
[[package]]
|
|
1461
|
+
name = "tinytemplate"
|
|
1462
|
+
version = "1.2.1"
|
|
1463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1464
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
1465
|
+
dependencies = [
|
|
1466
|
+
"serde",
|
|
1467
|
+
"serde_json",
|
|
1468
|
+
]
|
|
1469
|
+
|
|
1156
1470
|
[[package]]
|
|
1157
1471
|
name = "unarray"
|
|
1158
1472
|
version = "0.1.4"
|
|
@@ -1192,6 +1506,16 @@ dependencies = [
|
|
|
1192
1506
|
"libc",
|
|
1193
1507
|
]
|
|
1194
1508
|
|
|
1509
|
+
[[package]]
|
|
1510
|
+
name = "walkdir"
|
|
1511
|
+
version = "2.5.0"
|
|
1512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1514
|
+
dependencies = [
|
|
1515
|
+
"same-file",
|
|
1516
|
+
"winapi-util",
|
|
1517
|
+
]
|
|
1518
|
+
|
|
1195
1519
|
[[package]]
|
|
1196
1520
|
name = "wasip2"
|
|
1197
1521
|
version = "1.0.4+wasi-0.2.12"
|
|
@@ -1331,7 +1655,7 @@ dependencies = [
|
|
|
1331
1655
|
"portable-atomic",
|
|
1332
1656
|
"profiling",
|
|
1333
1657
|
"raw-window-handle",
|
|
1334
|
-
"rustc-hash",
|
|
1658
|
+
"rustc-hash 1.1.0",
|
|
1335
1659
|
"smallvec",
|
|
1336
1660
|
"thiserror",
|
|
1337
1661
|
"wgpu-core-deps-apple",
|
|
@@ -1610,3 +1934,9 @@ dependencies = [
|
|
|
1610
1934
|
"quote",
|
|
1611
1935
|
"syn 2.0.119",
|
|
1612
1936
|
]
|
|
1937
|
+
|
|
1938
|
+
[[package]]
|
|
1939
|
+
name = "zmij"
|
|
1940
|
+
version = "1.0.23"
|
|
1941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1942
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|