wickra 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. wickra-0.1.0/Cargo.lock +2179 -0
  2. wickra-0.1.0/Cargo.toml +68 -0
  3. wickra-0.1.0/PKG-INFO +93 -0
  4. wickra-0.1.0/README.md +54 -0
  5. wickra-0.1.0/bindings/python/Cargo.toml +26 -0
  6. wickra-0.1.0/bindings/python/README.md +270 -0
  7. wickra-0.1.0/bindings/python/benchmarks/__init__.py +0 -0
  8. wickra-0.1.0/bindings/python/benchmarks/compare_libraries.py +520 -0
  9. wickra-0.1.0/bindings/python/src/lib.rs +1414 -0
  10. wickra-0.1.0/bindings/python/tests/__init__.py +0 -0
  11. wickra-0.1.0/bindings/python/tests/conftest.py +36 -0
  12. wickra-0.1.0/bindings/python/tests/test_known_values.py +114 -0
  13. wickra-0.1.0/bindings/python/tests/test_lifecycle.py +88 -0
  14. wickra-0.1.0/bindings/python/tests/test_smoke.py +57 -0
  15. wickra-0.1.0/bindings/python/tests/test_streaming_vs_batch.py +117 -0
  16. wickra-0.1.0/crates/wickra-core/Cargo.toml +28 -0
  17. wickra-0.1.0/crates/wickra-core/README.md +270 -0
  18. wickra-0.1.0/crates/wickra-core/proptest-regressions/indicators/wma.txt +7 -0
  19. wickra-0.1.0/crates/wickra-core/src/error.rs +30 -0
  20. wickra-0.1.0/crates/wickra-core/src/indicators/adx.rs +298 -0
  21. wickra-0.1.0/crates/wickra-core/src/indicators/aroon.rs +156 -0
  22. wickra-0.1.0/crates/wickra-core/src/indicators/atr.rs +190 -0
  23. wickra-0.1.0/crates/wickra-core/src/indicators/awesome_oscillator.rs +117 -0
  24. wickra-0.1.0/crates/wickra-core/src/indicators/bollinger.rs +243 -0
  25. wickra-0.1.0/crates/wickra-core/src/indicators/cci.rs +150 -0
  26. wickra-0.1.0/crates/wickra-core/src/indicators/dema.rs +117 -0
  27. wickra-0.1.0/crates/wickra-core/src/indicators/donchian.rs +141 -0
  28. wickra-0.1.0/crates/wickra-core/src/indicators/ema.rs +224 -0
  29. wickra-0.1.0/crates/wickra-core/src/indicators/hma.rs +112 -0
  30. wickra-0.1.0/crates/wickra-core/src/indicators/kama.rs +157 -0
  31. wickra-0.1.0/crates/wickra-core/src/indicators/keltner.rs +142 -0
  32. wickra-0.1.0/crates/wickra-core/src/indicators/macd.rs +230 -0
  33. wickra-0.1.0/crates/wickra-core/src/indicators/mfi.rs +166 -0
  34. wickra-0.1.0/crates/wickra-core/src/indicators/mod.rs +57 -0
  35. wickra-0.1.0/crates/wickra-core/src/indicators/obv.rs +159 -0
  36. wickra-0.1.0/crates/wickra-core/src/indicators/psar.rs +241 -0
  37. wickra-0.1.0/crates/wickra-core/src/indicators/roc.rs +120 -0
  38. wickra-0.1.0/crates/wickra-core/src/indicators/rsi.rs +247 -0
  39. wickra-0.1.0/crates/wickra-core/src/indicators/sma.rs +200 -0
  40. wickra-0.1.0/crates/wickra-core/src/indicators/stochastic.rs +315 -0
  41. wickra-0.1.0/crates/wickra-core/src/indicators/tema.rs +107 -0
  42. wickra-0.1.0/crates/wickra-core/src/indicators/trix.rs +131 -0
  43. wickra-0.1.0/crates/wickra-core/src/indicators/vwap.rs +213 -0
  44. wickra-0.1.0/crates/wickra-core/src/indicators/williams_r.rs +141 -0
  45. wickra-0.1.0/crates/wickra-core/src/indicators/wma.rs +229 -0
  46. wickra-0.1.0/crates/wickra-core/src/lib.rs +53 -0
  47. wickra-0.1.0/crates/wickra-core/src/ohlcv.rs +285 -0
  48. wickra-0.1.0/crates/wickra-core/src/traits.rs +287 -0
  49. wickra-0.1.0/pyproject.toml +62 -0
  50. wickra-0.1.0/python/wickra/__init__.py +82 -0
  51. wickra-0.1.0/python/wickra/__init__.pyi +137 -0
  52. wickra-0.1.0/python/wickra/py.typed +0 -0
@@ -0,0 +1,2179 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anes"
16
+ version = "0.1.6"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
19
+
20
+ [[package]]
21
+ name = "anstyle"
22
+ version = "1.0.14"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
25
+
26
+ [[package]]
27
+ name = "anyhow"
28
+ version = "1.0.102"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
31
+
32
+ [[package]]
33
+ name = "approx"
34
+ version = "0.5.1"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
37
+ dependencies = [
38
+ "num-traits",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "autocfg"
43
+ version = "1.5.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
46
+
47
+ [[package]]
48
+ name = "bit-set"
49
+ version = "0.8.0"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
52
+ dependencies = [
53
+ "bit-vec",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "bit-vec"
58
+ version = "0.8.0"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
61
+
62
+ [[package]]
63
+ name = "bitflags"
64
+ version = "2.11.1"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
67
+
68
+ [[package]]
69
+ name = "block-buffer"
70
+ version = "0.10.4"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
73
+ dependencies = [
74
+ "generic-array",
75
+ ]
76
+
77
+ [[package]]
78
+ name = "bumpalo"
79
+ version = "3.20.2"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
82
+
83
+ [[package]]
84
+ name = "byteorder"
85
+ version = "1.5.0"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
88
+
89
+ [[package]]
90
+ name = "bytes"
91
+ version = "1.11.1"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
94
+
95
+ [[package]]
96
+ name = "cast"
97
+ version = "0.3.0"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
100
+
101
+ [[package]]
102
+ name = "cc"
103
+ version = "1.2.62"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
106
+ dependencies = [
107
+ "find-msvc-tools",
108
+ "shlex",
109
+ ]
110
+
111
+ [[package]]
112
+ name = "cfg-if"
113
+ version = "1.0.4"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
116
+
117
+ [[package]]
118
+ name = "ciborium"
119
+ version = "0.2.2"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
122
+ dependencies = [
123
+ "ciborium-io",
124
+ "ciborium-ll",
125
+ "serde",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "ciborium-io"
130
+ version = "0.2.2"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
133
+
134
+ [[package]]
135
+ name = "ciborium-ll"
136
+ version = "0.2.2"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
139
+ dependencies = [
140
+ "ciborium-io",
141
+ "half",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "clap"
146
+ version = "4.6.1"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
149
+ dependencies = [
150
+ "clap_builder",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "clap_builder"
155
+ version = "4.6.0"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
158
+ dependencies = [
159
+ "anstyle",
160
+ "clap_lex",
161
+ ]
162
+
163
+ [[package]]
164
+ name = "clap_lex"
165
+ version = "1.1.0"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
168
+
169
+ [[package]]
170
+ name = "console_error_panic_hook"
171
+ version = "0.1.7"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
174
+ dependencies = [
175
+ "cfg-if",
176
+ "wasm-bindgen",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "convert_case"
181
+ version = "0.6.0"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
184
+ dependencies = [
185
+ "unicode-segmentation",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "core-foundation"
190
+ version = "0.10.1"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
193
+ dependencies = [
194
+ "core-foundation-sys",
195
+ "libc",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "core-foundation-sys"
200
+ version = "0.8.7"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
203
+
204
+ [[package]]
205
+ name = "cpufeatures"
206
+ version = "0.2.17"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
209
+ dependencies = [
210
+ "libc",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "criterion"
215
+ version = "0.5.1"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
218
+ dependencies = [
219
+ "anes",
220
+ "cast",
221
+ "ciborium",
222
+ "clap",
223
+ "criterion-plot",
224
+ "is-terminal",
225
+ "itertools",
226
+ "num-traits",
227
+ "once_cell",
228
+ "oorandom",
229
+ "plotters",
230
+ "rayon",
231
+ "regex",
232
+ "serde",
233
+ "serde_derive",
234
+ "serde_json",
235
+ "tinytemplate",
236
+ "walkdir",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "criterion-plot"
241
+ version = "0.5.0"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
244
+ dependencies = [
245
+ "cast",
246
+ "itertools",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "crossbeam-deque"
251
+ version = "0.8.6"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
254
+ dependencies = [
255
+ "crossbeam-epoch",
256
+ "crossbeam-utils",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "crossbeam-epoch"
261
+ version = "0.9.18"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
264
+ dependencies = [
265
+ "crossbeam-utils",
266
+ ]
267
+
268
+ [[package]]
269
+ name = "crossbeam-utils"
270
+ version = "0.8.21"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
273
+
274
+ [[package]]
275
+ name = "crunchy"
276
+ version = "0.2.4"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
279
+
280
+ [[package]]
281
+ name = "crypto-common"
282
+ version = "0.1.7"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
285
+ dependencies = [
286
+ "generic-array",
287
+ "typenum",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "csv"
292
+ version = "1.4.0"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
295
+ dependencies = [
296
+ "csv-core",
297
+ "itoa",
298
+ "ryu",
299
+ "serde_core",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "csv-core"
304
+ version = "0.1.13"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
307
+ dependencies = [
308
+ "memchr",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "ctor"
313
+ version = "0.2.9"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
316
+ dependencies = [
317
+ "quote",
318
+ "syn",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "data-encoding"
323
+ version = "2.11.0"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
326
+
327
+ [[package]]
328
+ name = "digest"
329
+ version = "0.10.7"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
332
+ dependencies = [
333
+ "block-buffer",
334
+ "crypto-common",
335
+ ]
336
+
337
+ [[package]]
338
+ name = "displaydoc"
339
+ version = "0.2.5"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
342
+ dependencies = [
343
+ "proc-macro2",
344
+ "quote",
345
+ "syn",
346
+ ]
347
+
348
+ [[package]]
349
+ name = "either"
350
+ version = "1.16.0"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
353
+
354
+ [[package]]
355
+ name = "equivalent"
356
+ version = "1.0.2"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
359
+
360
+ [[package]]
361
+ name = "errno"
362
+ version = "0.3.14"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
365
+ dependencies = [
366
+ "libc",
367
+ "windows-sys",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "fastrand"
372
+ version = "2.4.1"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
375
+
376
+ [[package]]
377
+ name = "find-msvc-tools"
378
+ version = "0.1.9"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
381
+
382
+ [[package]]
383
+ name = "fnv"
384
+ version = "1.0.7"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
387
+
388
+ [[package]]
389
+ name = "foldhash"
390
+ version = "0.1.5"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
393
+
394
+ [[package]]
395
+ name = "foreign-types"
396
+ version = "0.3.2"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
399
+ dependencies = [
400
+ "foreign-types-shared",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "foreign-types-shared"
405
+ version = "0.1.1"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
408
+
409
+ [[package]]
410
+ name = "form_urlencoded"
411
+ version = "1.2.2"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
414
+ dependencies = [
415
+ "percent-encoding",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "futures-core"
420
+ version = "0.3.32"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
423
+
424
+ [[package]]
425
+ name = "futures-macro"
426
+ version = "0.3.32"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
429
+ dependencies = [
430
+ "proc-macro2",
431
+ "quote",
432
+ "syn",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "futures-sink"
437
+ version = "0.3.32"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
440
+
441
+ [[package]]
442
+ name = "futures-task"
443
+ version = "0.3.32"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
446
+
447
+ [[package]]
448
+ name = "futures-util"
449
+ version = "0.3.32"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
452
+ dependencies = [
453
+ "futures-core",
454
+ "futures-macro",
455
+ "futures-sink",
456
+ "futures-task",
457
+ "pin-project-lite",
458
+ "slab",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "generic-array"
463
+ version = "0.14.7"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
466
+ dependencies = [
467
+ "typenum",
468
+ "version_check",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "getrandom"
473
+ version = "0.2.17"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
476
+ dependencies = [
477
+ "cfg-if",
478
+ "libc",
479
+ "wasi",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "getrandom"
484
+ version = "0.3.4"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
487
+ dependencies = [
488
+ "cfg-if",
489
+ "libc",
490
+ "r-efi 5.3.0",
491
+ "wasip2",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "getrandom"
496
+ version = "0.4.2"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
499
+ dependencies = [
500
+ "cfg-if",
501
+ "libc",
502
+ "r-efi 6.0.0",
503
+ "wasip2",
504
+ "wasip3",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "half"
509
+ version = "2.7.1"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
512
+ dependencies = [
513
+ "cfg-if",
514
+ "crunchy",
515
+ "zerocopy",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "hashbrown"
520
+ version = "0.15.5"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
523
+ dependencies = [
524
+ "foldhash",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "hashbrown"
529
+ version = "0.17.1"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
532
+
533
+ [[package]]
534
+ name = "heck"
535
+ version = "0.5.0"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
538
+
539
+ [[package]]
540
+ name = "hermit-abi"
541
+ version = "0.5.2"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
544
+
545
+ [[package]]
546
+ name = "http"
547
+ version = "1.4.0"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
550
+ dependencies = [
551
+ "bytes",
552
+ "itoa",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "httparse"
557
+ version = "1.10.1"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
560
+
561
+ [[package]]
562
+ name = "icu_collections"
563
+ version = "2.2.0"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
566
+ dependencies = [
567
+ "displaydoc",
568
+ "potential_utf",
569
+ "utf8_iter",
570
+ "yoke",
571
+ "zerofrom",
572
+ "zerovec",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "icu_locale_core"
577
+ version = "2.2.0"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
580
+ dependencies = [
581
+ "displaydoc",
582
+ "litemap",
583
+ "tinystr",
584
+ "writeable",
585
+ "zerovec",
586
+ ]
587
+
588
+ [[package]]
589
+ name = "icu_normalizer"
590
+ version = "2.2.0"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
593
+ dependencies = [
594
+ "icu_collections",
595
+ "icu_normalizer_data",
596
+ "icu_properties",
597
+ "icu_provider",
598
+ "smallvec",
599
+ "zerovec",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "icu_normalizer_data"
604
+ version = "2.2.0"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
607
+
608
+ [[package]]
609
+ name = "icu_properties"
610
+ version = "2.2.0"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
613
+ dependencies = [
614
+ "icu_collections",
615
+ "icu_locale_core",
616
+ "icu_properties_data",
617
+ "icu_provider",
618
+ "zerotrie",
619
+ "zerovec",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "icu_properties_data"
624
+ version = "2.2.0"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
627
+
628
+ [[package]]
629
+ name = "icu_provider"
630
+ version = "2.2.0"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
633
+ dependencies = [
634
+ "displaydoc",
635
+ "icu_locale_core",
636
+ "writeable",
637
+ "yoke",
638
+ "zerofrom",
639
+ "zerotrie",
640
+ "zerovec",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "id-arena"
645
+ version = "2.3.0"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
648
+
649
+ [[package]]
650
+ name = "idna"
651
+ version = "1.1.0"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
654
+ dependencies = [
655
+ "idna_adapter",
656
+ "smallvec",
657
+ "utf8_iter",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "idna_adapter"
662
+ version = "1.2.2"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
665
+ dependencies = [
666
+ "icu_normalizer",
667
+ "icu_properties",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "indexmap"
672
+ version = "2.14.0"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
675
+ dependencies = [
676
+ "equivalent",
677
+ "hashbrown 0.17.1",
678
+ "serde",
679
+ "serde_core",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "indoc"
684
+ version = "2.0.7"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
687
+ dependencies = [
688
+ "rustversion",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "is-terminal"
693
+ version = "0.4.17"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
696
+ dependencies = [
697
+ "hermit-abi",
698
+ "libc",
699
+ "windows-sys",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "itertools"
704
+ version = "0.10.5"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
707
+ dependencies = [
708
+ "either",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "itoa"
713
+ version = "1.0.18"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
716
+
717
+ [[package]]
718
+ name = "js-sys"
719
+ version = "0.3.98"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
722
+ dependencies = [
723
+ "cfg-if",
724
+ "futures-util",
725
+ "once_cell",
726
+ "wasm-bindgen",
727
+ ]
728
+
729
+ [[package]]
730
+ name = "leb128fmt"
731
+ version = "0.1.0"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
734
+
735
+ [[package]]
736
+ name = "libc"
737
+ version = "0.2.186"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
740
+
741
+ [[package]]
742
+ name = "libloading"
743
+ version = "0.8.9"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
746
+ dependencies = [
747
+ "cfg-if",
748
+ "windows-link",
749
+ ]
750
+
751
+ [[package]]
752
+ name = "linux-raw-sys"
753
+ version = "0.12.1"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
756
+
757
+ [[package]]
758
+ name = "litemap"
759
+ version = "0.8.2"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
762
+
763
+ [[package]]
764
+ name = "log"
765
+ version = "0.4.29"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
768
+
769
+ [[package]]
770
+ name = "matrixmultiply"
771
+ version = "0.3.10"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
774
+ dependencies = [
775
+ "autocfg",
776
+ "rawpointer",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "memchr"
781
+ version = "2.8.0"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
784
+
785
+ [[package]]
786
+ name = "memoffset"
787
+ version = "0.9.1"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
790
+ dependencies = [
791
+ "autocfg",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "mio"
796
+ version = "1.2.0"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
799
+ dependencies = [
800
+ "libc",
801
+ "wasi",
802
+ "windows-sys",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "napi"
807
+ version = "2.16.17"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
810
+ dependencies = [
811
+ "bitflags",
812
+ "ctor",
813
+ "napi-derive",
814
+ "napi-sys",
815
+ "once_cell",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "napi-build"
820
+ version = "2.3.2"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
823
+
824
+ [[package]]
825
+ name = "napi-derive"
826
+ version = "2.16.13"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
829
+ dependencies = [
830
+ "cfg-if",
831
+ "convert_case",
832
+ "napi-derive-backend",
833
+ "proc-macro2",
834
+ "quote",
835
+ "syn",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "napi-derive-backend"
840
+ version = "1.0.75"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
843
+ dependencies = [
844
+ "convert_case",
845
+ "once_cell",
846
+ "proc-macro2",
847
+ "quote",
848
+ "regex",
849
+ "semver",
850
+ "syn",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "napi-sys"
855
+ version = "2.4.0"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
858
+ dependencies = [
859
+ "libloading",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "native-tls"
864
+ version = "0.2.18"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
867
+ dependencies = [
868
+ "libc",
869
+ "log",
870
+ "openssl",
871
+ "openssl-probe",
872
+ "openssl-sys",
873
+ "schannel",
874
+ "security-framework",
875
+ "security-framework-sys",
876
+ "tempfile",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "ndarray"
881
+ version = "0.16.1"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
884
+ dependencies = [
885
+ "matrixmultiply",
886
+ "num-complex",
887
+ "num-integer",
888
+ "num-traits",
889
+ "portable-atomic",
890
+ "portable-atomic-util",
891
+ "rawpointer",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "num-complex"
896
+ version = "0.4.6"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
899
+ dependencies = [
900
+ "num-traits",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "num-integer"
905
+ version = "0.1.46"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
908
+ dependencies = [
909
+ "num-traits",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "num-traits"
914
+ version = "0.2.19"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
917
+ dependencies = [
918
+ "autocfg",
919
+ ]
920
+
921
+ [[package]]
922
+ name = "numpy"
923
+ version = "0.22.1"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "edb929bc0da91a4d85ed6c0a84deaa53d411abfb387fc271124f91bf6b89f14e"
926
+ dependencies = [
927
+ "libc",
928
+ "ndarray",
929
+ "num-complex",
930
+ "num-integer",
931
+ "num-traits",
932
+ "pyo3",
933
+ "rustc-hash",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "once_cell"
938
+ version = "1.21.4"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
941
+
942
+ [[package]]
943
+ name = "oorandom"
944
+ version = "11.1.5"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
947
+
948
+ [[package]]
949
+ name = "openssl"
950
+ version = "0.10.80"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "a45fa2aa886c42762255da344f0a0d313e254066c46aad76f300c3d3da62d967"
953
+ dependencies = [
954
+ "bitflags",
955
+ "cfg-if",
956
+ "foreign-types",
957
+ "libc",
958
+ "openssl-macros",
959
+ "openssl-sys",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "openssl-macros"
964
+ version = "0.1.1"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
967
+ dependencies = [
968
+ "proc-macro2",
969
+ "quote",
970
+ "syn",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "openssl-probe"
975
+ version = "0.2.1"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
978
+
979
+ [[package]]
980
+ name = "openssl-sys"
981
+ version = "0.9.116"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "f28a22dc7140cda5f096e5e7724a6962ca81a7f8bfd2979f9b18c11af56318c4"
984
+ dependencies = [
985
+ "cc",
986
+ "libc",
987
+ "pkg-config",
988
+ "vcpkg",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "percent-encoding"
993
+ version = "2.3.2"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
996
+
997
+ [[package]]
998
+ name = "pin-project-lite"
999
+ version = "0.2.17"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1002
+
1003
+ [[package]]
1004
+ name = "pkg-config"
1005
+ version = "0.3.33"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1008
+
1009
+ [[package]]
1010
+ name = "plotters"
1011
+ version = "0.3.7"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1014
+ dependencies = [
1015
+ "num-traits",
1016
+ "plotters-backend",
1017
+ "plotters-svg",
1018
+ "wasm-bindgen",
1019
+ "web-sys",
1020
+ ]
1021
+
1022
+ [[package]]
1023
+ name = "plotters-backend"
1024
+ version = "0.3.7"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1027
+
1028
+ [[package]]
1029
+ name = "plotters-svg"
1030
+ version = "0.3.7"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1033
+ dependencies = [
1034
+ "plotters-backend",
1035
+ ]
1036
+
1037
+ [[package]]
1038
+ name = "portable-atomic"
1039
+ version = "1.13.1"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1042
+
1043
+ [[package]]
1044
+ name = "portable-atomic-util"
1045
+ version = "0.2.7"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
1048
+ dependencies = [
1049
+ "portable-atomic",
1050
+ ]
1051
+
1052
+ [[package]]
1053
+ name = "potential_utf"
1054
+ version = "0.1.5"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1057
+ dependencies = [
1058
+ "zerovec",
1059
+ ]
1060
+
1061
+ [[package]]
1062
+ name = "ppv-lite86"
1063
+ version = "0.2.21"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1066
+ dependencies = [
1067
+ "zerocopy",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "prettyplease"
1072
+ version = "0.2.37"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1075
+ dependencies = [
1076
+ "proc-macro2",
1077
+ "syn",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "proc-macro2"
1082
+ version = "1.0.106"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1085
+ dependencies = [
1086
+ "unicode-ident",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "proptest"
1091
+ version = "1.11.0"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
1094
+ dependencies = [
1095
+ "bit-set",
1096
+ "bit-vec",
1097
+ "bitflags",
1098
+ "num-traits",
1099
+ "rand 0.9.4",
1100
+ "rand_chacha 0.9.0",
1101
+ "rand_xorshift",
1102
+ "regex-syntax",
1103
+ "rusty-fork",
1104
+ "tempfile",
1105
+ "unarray",
1106
+ ]
1107
+
1108
+ [[package]]
1109
+ name = "pyo3"
1110
+ version = "0.22.6"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
1113
+ dependencies = [
1114
+ "cfg-if",
1115
+ "indoc",
1116
+ "libc",
1117
+ "memoffset",
1118
+ "once_cell",
1119
+ "portable-atomic",
1120
+ "pyo3-build-config",
1121
+ "pyo3-ffi",
1122
+ "pyo3-macros",
1123
+ "unindent",
1124
+ ]
1125
+
1126
+ [[package]]
1127
+ name = "pyo3-build-config"
1128
+ version = "0.22.6"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
1131
+ dependencies = [
1132
+ "once_cell",
1133
+ "target-lexicon",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "pyo3-ffi"
1138
+ version = "0.22.6"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
1141
+ dependencies = [
1142
+ "libc",
1143
+ "pyo3-build-config",
1144
+ ]
1145
+
1146
+ [[package]]
1147
+ name = "pyo3-macros"
1148
+ version = "0.22.6"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
1151
+ dependencies = [
1152
+ "proc-macro2",
1153
+ "pyo3-macros-backend",
1154
+ "quote",
1155
+ "syn",
1156
+ ]
1157
+
1158
+ [[package]]
1159
+ name = "pyo3-macros-backend"
1160
+ version = "0.22.6"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
1163
+ dependencies = [
1164
+ "heck",
1165
+ "proc-macro2",
1166
+ "pyo3-build-config",
1167
+ "quote",
1168
+ "syn",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "quick-error"
1173
+ version = "1.2.3"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1176
+
1177
+ [[package]]
1178
+ name = "quote"
1179
+ version = "1.0.45"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1182
+ dependencies = [
1183
+ "proc-macro2",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "r-efi"
1188
+ version = "5.3.0"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1191
+
1192
+ [[package]]
1193
+ name = "r-efi"
1194
+ version = "6.0.0"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1197
+
1198
+ [[package]]
1199
+ name = "rand"
1200
+ version = "0.8.6"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1203
+ dependencies = [
1204
+ "libc",
1205
+ "rand_chacha 0.3.1",
1206
+ "rand_core 0.6.4",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "rand"
1211
+ version = "0.9.4"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1214
+ dependencies = [
1215
+ "rand_chacha 0.9.0",
1216
+ "rand_core 0.9.5",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "rand_chacha"
1221
+ version = "0.3.1"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1224
+ dependencies = [
1225
+ "ppv-lite86",
1226
+ "rand_core 0.6.4",
1227
+ ]
1228
+
1229
+ [[package]]
1230
+ name = "rand_chacha"
1231
+ version = "0.9.0"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1234
+ dependencies = [
1235
+ "ppv-lite86",
1236
+ "rand_core 0.9.5",
1237
+ ]
1238
+
1239
+ [[package]]
1240
+ name = "rand_core"
1241
+ version = "0.6.4"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1244
+ dependencies = [
1245
+ "getrandom 0.2.17",
1246
+ ]
1247
+
1248
+ [[package]]
1249
+ name = "rand_core"
1250
+ version = "0.9.5"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1253
+ dependencies = [
1254
+ "getrandom 0.3.4",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "rand_xorshift"
1259
+ version = "0.4.0"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1262
+ dependencies = [
1263
+ "rand_core 0.9.5",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "rawpointer"
1268
+ version = "0.2.1"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1271
+
1272
+ [[package]]
1273
+ name = "rayon"
1274
+ version = "1.12.0"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1277
+ dependencies = [
1278
+ "either",
1279
+ "rayon-core",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "rayon-core"
1284
+ version = "1.13.0"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1287
+ dependencies = [
1288
+ "crossbeam-deque",
1289
+ "crossbeam-utils",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "regex"
1294
+ version = "1.12.3"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1297
+ dependencies = [
1298
+ "aho-corasick",
1299
+ "memchr",
1300
+ "regex-automata",
1301
+ "regex-syntax",
1302
+ ]
1303
+
1304
+ [[package]]
1305
+ name = "regex-automata"
1306
+ version = "0.4.14"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1309
+ dependencies = [
1310
+ "aho-corasick",
1311
+ "memchr",
1312
+ "regex-syntax",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "regex-syntax"
1317
+ version = "0.8.10"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1320
+
1321
+ [[package]]
1322
+ name = "rustc-hash"
1323
+ version = "1.1.0"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1326
+
1327
+ [[package]]
1328
+ name = "rustix"
1329
+ version = "1.1.4"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1332
+ dependencies = [
1333
+ "bitflags",
1334
+ "errno",
1335
+ "libc",
1336
+ "linux-raw-sys",
1337
+ "windows-sys",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "rustversion"
1342
+ version = "1.0.22"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1345
+
1346
+ [[package]]
1347
+ name = "rusty-fork"
1348
+ version = "0.3.1"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1351
+ dependencies = [
1352
+ "fnv",
1353
+ "quick-error",
1354
+ "tempfile",
1355
+ "wait-timeout",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "ryu"
1360
+ version = "1.0.23"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1363
+
1364
+ [[package]]
1365
+ name = "same-file"
1366
+ version = "1.0.6"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1369
+ dependencies = [
1370
+ "winapi-util",
1371
+ ]
1372
+
1373
+ [[package]]
1374
+ name = "schannel"
1375
+ version = "0.1.29"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1378
+ dependencies = [
1379
+ "windows-sys",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "security-framework"
1384
+ version = "3.7.0"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
1387
+ dependencies = [
1388
+ "bitflags",
1389
+ "core-foundation",
1390
+ "core-foundation-sys",
1391
+ "libc",
1392
+ "security-framework-sys",
1393
+ ]
1394
+
1395
+ [[package]]
1396
+ name = "security-framework-sys"
1397
+ version = "2.17.0"
1398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1399
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
1400
+ dependencies = [
1401
+ "core-foundation-sys",
1402
+ "libc",
1403
+ ]
1404
+
1405
+ [[package]]
1406
+ name = "semver"
1407
+ version = "1.0.28"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1410
+
1411
+ [[package]]
1412
+ name = "serde"
1413
+ version = "1.0.228"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1416
+ dependencies = [
1417
+ "serde_core",
1418
+ "serde_derive",
1419
+ ]
1420
+
1421
+ [[package]]
1422
+ name = "serde-wasm-bindgen"
1423
+ version = "0.6.5"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
1426
+ dependencies = [
1427
+ "js-sys",
1428
+ "serde",
1429
+ "wasm-bindgen",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "serde_core"
1434
+ version = "1.0.228"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1437
+ dependencies = [
1438
+ "serde_derive",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "serde_derive"
1443
+ version = "1.0.228"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1446
+ dependencies = [
1447
+ "proc-macro2",
1448
+ "quote",
1449
+ "syn",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "serde_json"
1454
+ version = "1.0.149"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1457
+ dependencies = [
1458
+ "itoa",
1459
+ "memchr",
1460
+ "serde",
1461
+ "serde_core",
1462
+ "zmij",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "sha1"
1467
+ version = "0.10.6"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1470
+ dependencies = [
1471
+ "cfg-if",
1472
+ "cpufeatures",
1473
+ "digest",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "shlex"
1478
+ version = "1.3.0"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1481
+
1482
+ [[package]]
1483
+ name = "slab"
1484
+ version = "0.4.12"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1487
+
1488
+ [[package]]
1489
+ name = "smallvec"
1490
+ version = "1.15.1"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1493
+
1494
+ [[package]]
1495
+ name = "socket2"
1496
+ version = "0.6.3"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1499
+ dependencies = [
1500
+ "libc",
1501
+ "windows-sys",
1502
+ ]
1503
+
1504
+ [[package]]
1505
+ name = "stable_deref_trait"
1506
+ version = "1.2.1"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1509
+
1510
+ [[package]]
1511
+ name = "syn"
1512
+ version = "2.0.117"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1515
+ dependencies = [
1516
+ "proc-macro2",
1517
+ "quote",
1518
+ "unicode-ident",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "synstructure"
1523
+ version = "0.13.2"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1526
+ dependencies = [
1527
+ "proc-macro2",
1528
+ "quote",
1529
+ "syn",
1530
+ ]
1531
+
1532
+ [[package]]
1533
+ name = "target-lexicon"
1534
+ version = "0.12.16"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1537
+
1538
+ [[package]]
1539
+ name = "tempfile"
1540
+ version = "3.27.0"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1543
+ dependencies = [
1544
+ "fastrand",
1545
+ "getrandom 0.4.2",
1546
+ "once_cell",
1547
+ "rustix",
1548
+ "windows-sys",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "thiserror"
1553
+ version = "1.0.69"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1556
+ dependencies = [
1557
+ "thiserror-impl 1.0.69",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "thiserror"
1562
+ version = "2.0.18"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1565
+ dependencies = [
1566
+ "thiserror-impl 2.0.18",
1567
+ ]
1568
+
1569
+ [[package]]
1570
+ name = "thiserror-impl"
1571
+ version = "1.0.69"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1574
+ dependencies = [
1575
+ "proc-macro2",
1576
+ "quote",
1577
+ "syn",
1578
+ ]
1579
+
1580
+ [[package]]
1581
+ name = "thiserror-impl"
1582
+ version = "2.0.18"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1585
+ dependencies = [
1586
+ "proc-macro2",
1587
+ "quote",
1588
+ "syn",
1589
+ ]
1590
+
1591
+ [[package]]
1592
+ name = "tinystr"
1593
+ version = "0.8.3"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1596
+ dependencies = [
1597
+ "displaydoc",
1598
+ "zerovec",
1599
+ ]
1600
+
1601
+ [[package]]
1602
+ name = "tinytemplate"
1603
+ version = "1.2.1"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1606
+ dependencies = [
1607
+ "serde",
1608
+ "serde_json",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "tokio"
1613
+ version = "1.52.3"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
1616
+ dependencies = [
1617
+ "bytes",
1618
+ "libc",
1619
+ "mio",
1620
+ "pin-project-lite",
1621
+ "socket2",
1622
+ "tokio-macros",
1623
+ "windows-sys",
1624
+ ]
1625
+
1626
+ [[package]]
1627
+ name = "tokio-macros"
1628
+ version = "2.7.0"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1631
+ dependencies = [
1632
+ "proc-macro2",
1633
+ "quote",
1634
+ "syn",
1635
+ ]
1636
+
1637
+ [[package]]
1638
+ name = "tokio-native-tls"
1639
+ version = "0.3.1"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
1642
+ dependencies = [
1643
+ "native-tls",
1644
+ "tokio",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "tokio-tungstenite"
1649
+ version = "0.24.0"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9"
1652
+ dependencies = [
1653
+ "futures-util",
1654
+ "log",
1655
+ "native-tls",
1656
+ "tokio",
1657
+ "tokio-native-tls",
1658
+ "tungstenite",
1659
+ ]
1660
+
1661
+ [[package]]
1662
+ name = "tungstenite"
1663
+ version = "0.24.0"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a"
1666
+ dependencies = [
1667
+ "byteorder",
1668
+ "bytes",
1669
+ "data-encoding",
1670
+ "http",
1671
+ "httparse",
1672
+ "log",
1673
+ "native-tls",
1674
+ "rand 0.8.6",
1675
+ "sha1",
1676
+ "thiserror 1.0.69",
1677
+ "utf-8",
1678
+ ]
1679
+
1680
+ [[package]]
1681
+ name = "typenum"
1682
+ version = "1.20.0"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
1685
+
1686
+ [[package]]
1687
+ name = "unarray"
1688
+ version = "0.1.4"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1691
+
1692
+ [[package]]
1693
+ name = "unicode-ident"
1694
+ version = "1.0.24"
1695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1696
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1697
+
1698
+ [[package]]
1699
+ name = "unicode-segmentation"
1700
+ version = "1.13.2"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
1703
+
1704
+ [[package]]
1705
+ name = "unicode-xid"
1706
+ version = "0.2.6"
1707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1708
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1709
+
1710
+ [[package]]
1711
+ name = "unindent"
1712
+ version = "0.2.4"
1713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1714
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1715
+
1716
+ [[package]]
1717
+ name = "url"
1718
+ version = "2.5.8"
1719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1720
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1721
+ dependencies = [
1722
+ "form_urlencoded",
1723
+ "idna",
1724
+ "percent-encoding",
1725
+ "serde",
1726
+ ]
1727
+
1728
+ [[package]]
1729
+ name = "utf-8"
1730
+ version = "0.7.6"
1731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1732
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
1733
+
1734
+ [[package]]
1735
+ name = "utf8_iter"
1736
+ version = "1.0.4"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1739
+
1740
+ [[package]]
1741
+ name = "vcpkg"
1742
+ version = "0.2.15"
1743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1744
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1745
+
1746
+ [[package]]
1747
+ name = "version_check"
1748
+ version = "0.9.5"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1751
+
1752
+ [[package]]
1753
+ name = "wait-timeout"
1754
+ version = "0.2.1"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1757
+ dependencies = [
1758
+ "libc",
1759
+ ]
1760
+
1761
+ [[package]]
1762
+ name = "walkdir"
1763
+ version = "2.5.0"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1766
+ dependencies = [
1767
+ "same-file",
1768
+ "winapi-util",
1769
+ ]
1770
+
1771
+ [[package]]
1772
+ name = "wasi"
1773
+ version = "0.11.1+wasi-snapshot-preview1"
1774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1775
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1776
+
1777
+ [[package]]
1778
+ name = "wasip2"
1779
+ version = "1.0.3+wasi-0.2.9"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1782
+ dependencies = [
1783
+ "wit-bindgen 0.57.1",
1784
+ ]
1785
+
1786
+ [[package]]
1787
+ name = "wasip3"
1788
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1791
+ dependencies = [
1792
+ "wit-bindgen 0.51.0",
1793
+ ]
1794
+
1795
+ [[package]]
1796
+ name = "wasm-bindgen"
1797
+ version = "0.2.121"
1798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1799
+ checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
1800
+ dependencies = [
1801
+ "cfg-if",
1802
+ "once_cell",
1803
+ "rustversion",
1804
+ "wasm-bindgen-macro",
1805
+ "wasm-bindgen-shared",
1806
+ ]
1807
+
1808
+ [[package]]
1809
+ name = "wasm-bindgen-macro"
1810
+ version = "0.2.121"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
1813
+ dependencies = [
1814
+ "quote",
1815
+ "wasm-bindgen-macro-support",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "wasm-bindgen-macro-support"
1820
+ version = "0.2.121"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
1823
+ dependencies = [
1824
+ "bumpalo",
1825
+ "proc-macro2",
1826
+ "quote",
1827
+ "syn",
1828
+ "wasm-bindgen-shared",
1829
+ ]
1830
+
1831
+ [[package]]
1832
+ name = "wasm-bindgen-shared"
1833
+ version = "0.2.121"
1834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+ checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
1836
+ dependencies = [
1837
+ "unicode-ident",
1838
+ ]
1839
+
1840
+ [[package]]
1841
+ name = "wasm-encoder"
1842
+ version = "0.244.0"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1845
+ dependencies = [
1846
+ "leb128fmt",
1847
+ "wasmparser",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "wasm-metadata"
1852
+ version = "0.244.0"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1855
+ dependencies = [
1856
+ "anyhow",
1857
+ "indexmap",
1858
+ "wasm-encoder",
1859
+ "wasmparser",
1860
+ ]
1861
+
1862
+ [[package]]
1863
+ name = "wasmparser"
1864
+ version = "0.244.0"
1865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1866
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1867
+ dependencies = [
1868
+ "bitflags",
1869
+ "hashbrown 0.15.5",
1870
+ "indexmap",
1871
+ "semver",
1872
+ ]
1873
+
1874
+ [[package]]
1875
+ name = "web-sys"
1876
+ version = "0.3.98"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "4b572dff8bcf38bad0fa19729c89bb5748b2b9b1d8be70cf90df697e3a8f32aa"
1879
+ dependencies = [
1880
+ "js-sys",
1881
+ "wasm-bindgen",
1882
+ ]
1883
+
1884
+ [[package]]
1885
+ name = "wickra"
1886
+ version = "0.1.0"
1887
+ dependencies = [
1888
+ "approx",
1889
+ "criterion",
1890
+ "proptest",
1891
+ "wickra-core",
1892
+ "wickra-data",
1893
+ ]
1894
+
1895
+ [[package]]
1896
+ name = "wickra-core"
1897
+ version = "0.1.0"
1898
+ dependencies = [
1899
+ "approx",
1900
+ "proptest",
1901
+ "rayon",
1902
+ "thiserror 2.0.18",
1903
+ ]
1904
+
1905
+ [[package]]
1906
+ name = "wickra-data"
1907
+ version = "0.1.0"
1908
+ dependencies = [
1909
+ "approx",
1910
+ "csv",
1911
+ "futures-util",
1912
+ "serde",
1913
+ "serde_json",
1914
+ "tempfile",
1915
+ "thiserror 2.0.18",
1916
+ "tokio",
1917
+ "tokio-tungstenite",
1918
+ "url",
1919
+ "wickra",
1920
+ "wickra-core",
1921
+ ]
1922
+
1923
+ [[package]]
1924
+ name = "wickra-node"
1925
+ version = "0.1.0"
1926
+ dependencies = [
1927
+ "napi",
1928
+ "napi-build",
1929
+ "napi-derive",
1930
+ "wickra-core",
1931
+ ]
1932
+
1933
+ [[package]]
1934
+ name = "wickra-python"
1935
+ version = "0.1.0"
1936
+ dependencies = [
1937
+ "numpy",
1938
+ "pyo3",
1939
+ "wickra-core",
1940
+ ]
1941
+
1942
+ [[package]]
1943
+ name = "wickra-wasm"
1944
+ version = "0.1.0"
1945
+ dependencies = [
1946
+ "console_error_panic_hook",
1947
+ "js-sys",
1948
+ "serde",
1949
+ "serde-wasm-bindgen",
1950
+ "wasm-bindgen",
1951
+ "wickra-core",
1952
+ ]
1953
+
1954
+ [[package]]
1955
+ name = "winapi-util"
1956
+ version = "0.1.11"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1959
+ dependencies = [
1960
+ "windows-sys",
1961
+ ]
1962
+
1963
+ [[package]]
1964
+ name = "windows-link"
1965
+ version = "0.2.1"
1966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1967
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1968
+
1969
+ [[package]]
1970
+ name = "windows-sys"
1971
+ version = "0.61.2"
1972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1973
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1974
+ dependencies = [
1975
+ "windows-link",
1976
+ ]
1977
+
1978
+ [[package]]
1979
+ name = "wit-bindgen"
1980
+ version = "0.51.0"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1983
+ dependencies = [
1984
+ "wit-bindgen-rust-macro",
1985
+ ]
1986
+
1987
+ [[package]]
1988
+ name = "wit-bindgen"
1989
+ version = "0.57.1"
1990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1991
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1992
+
1993
+ [[package]]
1994
+ name = "wit-bindgen-core"
1995
+ version = "0.51.0"
1996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1998
+ dependencies = [
1999
+ "anyhow",
2000
+ "heck",
2001
+ "wit-parser",
2002
+ ]
2003
+
2004
+ [[package]]
2005
+ name = "wit-bindgen-rust"
2006
+ version = "0.51.0"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2009
+ dependencies = [
2010
+ "anyhow",
2011
+ "heck",
2012
+ "indexmap",
2013
+ "prettyplease",
2014
+ "syn",
2015
+ "wasm-metadata",
2016
+ "wit-bindgen-core",
2017
+ "wit-component",
2018
+ ]
2019
+
2020
+ [[package]]
2021
+ name = "wit-bindgen-rust-macro"
2022
+ version = "0.51.0"
2023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2024
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2025
+ dependencies = [
2026
+ "anyhow",
2027
+ "prettyplease",
2028
+ "proc-macro2",
2029
+ "quote",
2030
+ "syn",
2031
+ "wit-bindgen-core",
2032
+ "wit-bindgen-rust",
2033
+ ]
2034
+
2035
+ [[package]]
2036
+ name = "wit-component"
2037
+ version = "0.244.0"
2038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2039
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2040
+ dependencies = [
2041
+ "anyhow",
2042
+ "bitflags",
2043
+ "indexmap",
2044
+ "log",
2045
+ "serde",
2046
+ "serde_derive",
2047
+ "serde_json",
2048
+ "wasm-encoder",
2049
+ "wasm-metadata",
2050
+ "wasmparser",
2051
+ "wit-parser",
2052
+ ]
2053
+
2054
+ [[package]]
2055
+ name = "wit-parser"
2056
+ version = "0.244.0"
2057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2058
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2059
+ dependencies = [
2060
+ "anyhow",
2061
+ "id-arena",
2062
+ "indexmap",
2063
+ "log",
2064
+ "semver",
2065
+ "serde",
2066
+ "serde_derive",
2067
+ "serde_json",
2068
+ "unicode-xid",
2069
+ "wasmparser",
2070
+ ]
2071
+
2072
+ [[package]]
2073
+ name = "writeable"
2074
+ version = "0.6.3"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2077
+
2078
+ [[package]]
2079
+ name = "yoke"
2080
+ version = "0.8.2"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
2083
+ dependencies = [
2084
+ "stable_deref_trait",
2085
+ "yoke-derive",
2086
+ "zerofrom",
2087
+ ]
2088
+
2089
+ [[package]]
2090
+ name = "yoke-derive"
2091
+ version = "0.8.2"
2092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2093
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2094
+ dependencies = [
2095
+ "proc-macro2",
2096
+ "quote",
2097
+ "syn",
2098
+ "synstructure",
2099
+ ]
2100
+
2101
+ [[package]]
2102
+ name = "zerocopy"
2103
+ version = "0.8.48"
2104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
2106
+ dependencies = [
2107
+ "zerocopy-derive",
2108
+ ]
2109
+
2110
+ [[package]]
2111
+ name = "zerocopy-derive"
2112
+ version = "0.8.48"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
2115
+ dependencies = [
2116
+ "proc-macro2",
2117
+ "quote",
2118
+ "syn",
2119
+ ]
2120
+
2121
+ [[package]]
2122
+ name = "zerofrom"
2123
+ version = "0.1.8"
2124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2125
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2126
+ dependencies = [
2127
+ "zerofrom-derive",
2128
+ ]
2129
+
2130
+ [[package]]
2131
+ name = "zerofrom-derive"
2132
+ version = "0.1.7"
2133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2134
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2135
+ dependencies = [
2136
+ "proc-macro2",
2137
+ "quote",
2138
+ "syn",
2139
+ "synstructure",
2140
+ ]
2141
+
2142
+ [[package]]
2143
+ name = "zerotrie"
2144
+ version = "0.2.4"
2145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2146
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2147
+ dependencies = [
2148
+ "displaydoc",
2149
+ "yoke",
2150
+ "zerofrom",
2151
+ ]
2152
+
2153
+ [[package]]
2154
+ name = "zerovec"
2155
+ version = "0.11.6"
2156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2157
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2158
+ dependencies = [
2159
+ "yoke",
2160
+ "zerofrom",
2161
+ "zerovec-derive",
2162
+ ]
2163
+
2164
+ [[package]]
2165
+ name = "zerovec-derive"
2166
+ version = "0.11.3"
2167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2168
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2169
+ dependencies = [
2170
+ "proc-macro2",
2171
+ "quote",
2172
+ "syn",
2173
+ ]
2174
+
2175
+ [[package]]
2176
+ name = "zmij"
2177
+ version = "1.0.21"
2178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2179
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"