sonara 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. sonara-0.1.2/Cargo.lock +1207 -0
  2. sonara-0.1.2/Cargo.toml +28 -0
  3. sonara-0.1.2/LICENSE +21 -0
  4. sonara-0.1.2/PKG-INFO +173 -0
  5. sonara-0.1.2/README.md +145 -0
  6. sonara-0.1.2/pyproject.toml +55 -0
  7. sonara-0.1.2/python/sonara/__init__.py +5 -0
  8. sonara-0.1.2/python/sonara/__init__.pyi +174 -0
  9. sonara-0.1.2/python/sonara/display.py +269 -0
  10. sonara-0.1.2/sonara/Cargo.toml +47 -0
  11. sonara-0.1.2/sonara/README.md +145 -0
  12. sonara-0.1.2/sonara/benches/bench_cqt.rs +47 -0
  13. sonara-0.1.2/sonara/benches/bench_sequence.rs +54 -0
  14. sonara-0.1.2/sonara/benches/bench_stft.rs +117 -0
  15. sonara-0.1.2/sonara/benches/bench_utils.rs +45 -0
  16. sonara-0.1.2/sonara/src/analyze.rs +270 -0
  17. sonara-0.1.2/sonara/src/beat.rs +343 -0
  18. sonara-0.1.2/sonara/src/core/audio.rs +628 -0
  19. sonara-0.1.2/sonara/src/core/constantq.rs +523 -0
  20. sonara-0.1.2/sonara/src/core/convert.rs +696 -0
  21. sonara-0.1.2/sonara/src/core/fft.rs +222 -0
  22. sonara-0.1.2/sonara/src/core/harmonic.rs +197 -0
  23. sonara-0.1.2/sonara/src/core/intervals.rs +182 -0
  24. sonara-0.1.2/sonara/src/core/mod.rs +9 -0
  25. sonara-0.1.2/sonara/src/core/notation.rs +350 -0
  26. sonara-0.1.2/sonara/src/core/pitch.rs +680 -0
  27. sonara-0.1.2/sonara/src/core/spectrum.rs +1197 -0
  28. sonara-0.1.2/sonara/src/decompose.rs +241 -0
  29. sonara-0.1.2/sonara/src/dsp/extrema.rs +114 -0
  30. sonara-0.1.2/sonara/src/dsp/iir.rs +295 -0
  31. sonara-0.1.2/sonara/src/dsp/mod.rs +3 -0
  32. sonara-0.1.2/sonara/src/dsp/windows.rs +305 -0
  33. sonara-0.1.2/sonara/src/effects.rs +249 -0
  34. sonara-0.1.2/sonara/src/error.rs +48 -0
  35. sonara-0.1.2/sonara/src/feature/inverse.rs +160 -0
  36. sonara-0.1.2/sonara/src/feature/mod.rs +3 -0
  37. sonara-0.1.2/sonara/src/feature/rhythm.rs +272 -0
  38. sonara-0.1.2/sonara/src/feature/spectral.rs +794 -0
  39. sonara-0.1.2/sonara/src/filters.rs +461 -0
  40. sonara-0.1.2/sonara/src/lib.rs +21 -0
  41. sonara-0.1.2/sonara/src/onset.rs +236 -0
  42. sonara-0.1.2/sonara/src/segment.rs +291 -0
  43. sonara-0.1.2/sonara/src/sequence.rs +532 -0
  44. sonara-0.1.2/sonara/src/types.rs +93 -0
  45. sonara-0.1.2/sonara/src/util/matching.rs +169 -0
  46. sonara-0.1.2/sonara/src/util/mod.rs +2 -0
  47. sonara-0.1.2/sonara/src/util/utils.rs +680 -0
  48. sonara-0.1.2/sonara-python/Cargo.toml +15 -0
  49. sonara-0.1.2/sonara-python/src/analyze.rs +62 -0
  50. sonara-0.1.2/sonara-python/src/beat.rs +22 -0
  51. sonara-0.1.2/sonara-python/src/core/audio.rs +86 -0
  52. sonara-0.1.2/sonara-python/src/core/convert.rs +241 -0
  53. sonara-0.1.2/sonara-python/src/core/mod.rs +14 -0
  54. sonara-0.1.2/sonara-python/src/core/spectrum.rs +231 -0
  55. sonara-0.1.2/sonara-python/src/error.rs +34 -0
  56. sonara-0.1.2/sonara-python/src/feature/mod.rs +10 -0
  57. sonara-0.1.2/sonara-python/src/feature/spectral.rs +93 -0
  58. sonara-0.1.2/sonara-python/src/filters.rs +24 -0
  59. sonara-0.1.2/sonara-python/src/lib.rs +148 -0
  60. sonara-0.1.2/sonara-python/src/onset.rs +34 -0
  61. sonara-0.1.2/sonara-python/src/util.rs +8 -0
@@ -0,0 +1,1207 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "accelerate-src"
7
+ version = "0.3.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "415ed64958754dbe991900f3940677e6a7eefb4d7367afd70d642677b0c7d19d"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "alloca"
22
+ version = "0.4.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
25
+ dependencies = [
26
+ "cc",
27
+ ]
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
+
41
+ [[package]]
42
+ name = "approx"
43
+ version = "0.5.1"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
46
+ dependencies = [
47
+ "num-traits",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "arrayvec"
52
+ version = "0.7.6"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
55
+
56
+ [[package]]
57
+ name = "audio-core"
58
+ version = "0.2.1"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "f93ebbf82d06013f4c41fe71303feb980cddd78496d904d06be627972de51a24"
61
+
62
+ [[package]]
63
+ name = "audioadapter"
64
+ version = "3.0.0"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "91f87b70b051c5866680ad79f6743a42ccab264c009d1a71f4d33a3872ae60c8"
67
+ dependencies = [
68
+ "audio-core",
69
+ "num-traits",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "audioadapter-buffers"
74
+ version = "3.0.0"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "9097d67933fb083d382ce980430afdb758aada60846010aee6be068c06cef0ca"
77
+ dependencies = [
78
+ "audioadapter",
79
+ "audioadapter-sample",
80
+ "num-traits",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "audioadapter-sample"
85
+ version = "3.0.0"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "34ab94f2bc04a14e1f49ee5f222f66460e8a1b51627bdfedf34eed394d747938"
88
+ dependencies = [
89
+ "audio-core",
90
+ "num-traits",
91
+ ]
92
+
93
+ [[package]]
94
+ name = "autocfg"
95
+ version = "1.5.0"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
98
+
99
+ [[package]]
100
+ name = "bitflags"
101
+ version = "1.3.2"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
104
+
105
+ [[package]]
106
+ name = "blas-src"
107
+ version = "0.14.0"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "5bd439b48f5425c9f4597141b52476358e05e08471bc30f4d1c2a1f4084d7c9f"
110
+ dependencies = [
111
+ "accelerate-src",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "bumpalo"
116
+ version = "3.20.2"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
119
+
120
+ [[package]]
121
+ name = "bytemuck"
122
+ version = "1.25.0"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
125
+
126
+ [[package]]
127
+ name = "cast"
128
+ version = "0.3.0"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
131
+
132
+ [[package]]
133
+ name = "cblas-sys"
134
+ version = "0.1.4"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "b6feecd82cce51b0204cf063f0041d69f24ce83f680d87514b004248e7b0fa65"
137
+ dependencies = [
138
+ "libc",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "cc"
143
+ version = "1.2.60"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
146
+ dependencies = [
147
+ "find-msvc-tools",
148
+ "shlex",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "cfg-if"
153
+ version = "1.0.4"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
156
+
157
+ [[package]]
158
+ name = "ciborium"
159
+ version = "0.2.2"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
162
+ dependencies = [
163
+ "ciborium-io",
164
+ "ciborium-ll",
165
+ "serde",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "ciborium-io"
170
+ version = "0.2.2"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
173
+
174
+ [[package]]
175
+ name = "ciborium-ll"
176
+ version = "0.2.2"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
179
+ dependencies = [
180
+ "ciborium-io",
181
+ "half",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "clap"
186
+ version = "4.6.0"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
189
+ dependencies = [
190
+ "clap_builder",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "clap_builder"
195
+ version = "4.6.0"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
198
+ dependencies = [
199
+ "anstyle",
200
+ "clap_lex",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "clap_lex"
205
+ version = "1.1.0"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
208
+
209
+ [[package]]
210
+ name = "criterion"
211
+ version = "0.8.2"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
214
+ dependencies = [
215
+ "alloca",
216
+ "anes",
217
+ "cast",
218
+ "ciborium",
219
+ "clap",
220
+ "criterion-plot",
221
+ "itertools",
222
+ "num-traits",
223
+ "oorandom",
224
+ "page_size",
225
+ "plotters",
226
+ "rayon",
227
+ "regex",
228
+ "serde",
229
+ "serde_json",
230
+ "tinytemplate",
231
+ "walkdir",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "criterion-plot"
236
+ version = "0.8.2"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
239
+ dependencies = [
240
+ "cast",
241
+ "itertools",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "crossbeam-deque"
246
+ version = "0.8.6"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
249
+ dependencies = [
250
+ "crossbeam-epoch",
251
+ "crossbeam-utils",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "crossbeam-epoch"
256
+ version = "0.9.18"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
259
+ dependencies = [
260
+ "crossbeam-utils",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "crossbeam-utils"
265
+ version = "0.8.21"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
268
+
269
+ [[package]]
270
+ name = "crunchy"
271
+ version = "0.2.4"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
274
+
275
+ [[package]]
276
+ name = "either"
277
+ version = "1.15.0"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
280
+
281
+ [[package]]
282
+ name = "encoding_rs"
283
+ version = "0.8.35"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
286
+ dependencies = [
287
+ "cfg-if",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "extended"
292
+ version = "0.1.0"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "af9673d8203fcb076b19dfd17e38b3d4ae9f44959416ea532ce72415a6020365"
295
+
296
+ [[package]]
297
+ name = "find-msvc-tools"
298
+ version = "0.1.9"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
301
+
302
+ [[package]]
303
+ name = "half"
304
+ version = "2.7.1"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
307
+ dependencies = [
308
+ "cfg-if",
309
+ "crunchy",
310
+ "zerocopy",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "heck"
315
+ version = "0.5.0"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
318
+
319
+ [[package]]
320
+ name = "hound"
321
+ version = "3.5.1"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "62adaabb884c94955b19907d60019f4e145d091c75345379e70d1ee696f7854f"
324
+
325
+ [[package]]
326
+ name = "itertools"
327
+ version = "0.13.0"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
330
+ dependencies = [
331
+ "either",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "itoa"
336
+ version = "1.0.18"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
339
+
340
+ [[package]]
341
+ name = "js-sys"
342
+ version = "0.3.95"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
345
+ dependencies = [
346
+ "once_cell",
347
+ "wasm-bindgen",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "lazy_static"
352
+ version = "1.5.0"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
355
+
356
+ [[package]]
357
+ name = "libc"
358
+ version = "0.2.185"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
361
+
362
+ [[package]]
363
+ name = "log"
364
+ version = "0.4.29"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
367
+
368
+ [[package]]
369
+ name = "matrixmultiply"
370
+ version = "0.3.10"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
373
+ dependencies = [
374
+ "autocfg",
375
+ "rawpointer",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "memchr"
380
+ version = "2.8.0"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
383
+
384
+ [[package]]
385
+ name = "ndarray"
386
+ version = "0.17.2"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
389
+ dependencies = [
390
+ "cblas-sys",
391
+ "libc",
392
+ "matrixmultiply",
393
+ "num-complex",
394
+ "num-integer",
395
+ "num-traits",
396
+ "portable-atomic",
397
+ "portable-atomic-util",
398
+ "rawpointer",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "num-complex"
403
+ version = "0.4.6"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
406
+ dependencies = [
407
+ "num-traits",
408
+ ]
409
+
410
+ [[package]]
411
+ name = "num-integer"
412
+ version = "0.1.46"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
415
+ dependencies = [
416
+ "num-traits",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "num-traits"
421
+ version = "0.2.19"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
424
+ dependencies = [
425
+ "autocfg",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "numpy"
430
+ version = "0.28.0"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "778da78c64ddc928ebf5ad9df5edf0789410ff3bdbf3619aed51cd789a6af1e2"
433
+ dependencies = [
434
+ "libc",
435
+ "ndarray",
436
+ "num-complex",
437
+ "num-integer",
438
+ "num-traits",
439
+ "pyo3",
440
+ "pyo3-build-config",
441
+ "rustc-hash",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "once_cell"
446
+ version = "1.21.4"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
449
+
450
+ [[package]]
451
+ name = "oorandom"
452
+ version = "11.1.5"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
455
+
456
+ [[package]]
457
+ name = "page_size"
458
+ version = "0.6.0"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
461
+ dependencies = [
462
+ "libc",
463
+ "winapi",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "plotters"
468
+ version = "0.3.7"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
471
+ dependencies = [
472
+ "num-traits",
473
+ "plotters-backend",
474
+ "plotters-svg",
475
+ "wasm-bindgen",
476
+ "web-sys",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "plotters-backend"
481
+ version = "0.3.7"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
484
+
485
+ [[package]]
486
+ name = "plotters-svg"
487
+ version = "0.3.7"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
490
+ dependencies = [
491
+ "plotters-backend",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "portable-atomic"
496
+ version = "1.13.1"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
499
+
500
+ [[package]]
501
+ name = "portable-atomic-util"
502
+ version = "0.2.6"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3"
505
+ dependencies = [
506
+ "portable-atomic",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "primal-check"
511
+ version = "0.3.4"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "dc0d895b311e3af9902528fbb8f928688abbd95872819320517cc24ca6b2bd08"
514
+ dependencies = [
515
+ "num-integer",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "proc-macro2"
520
+ version = "1.0.106"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
523
+ dependencies = [
524
+ "unicode-ident",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "pyo3"
529
+ version = "0.28.3"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
532
+ dependencies = [
533
+ "libc",
534
+ "once_cell",
535
+ "portable-atomic",
536
+ "pyo3-build-config",
537
+ "pyo3-ffi",
538
+ "pyo3-macros",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "pyo3-build-config"
543
+ version = "0.28.3"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
546
+ dependencies = [
547
+ "target-lexicon",
548
+ ]
549
+
550
+ [[package]]
551
+ name = "pyo3-ffi"
552
+ version = "0.28.3"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
555
+ dependencies = [
556
+ "libc",
557
+ "pyo3-build-config",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "pyo3-macros"
562
+ version = "0.28.3"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
565
+ dependencies = [
566
+ "proc-macro2",
567
+ "pyo3-macros-backend",
568
+ "quote",
569
+ "syn",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "pyo3-macros-backend"
574
+ version = "0.28.3"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
577
+ dependencies = [
578
+ "heck",
579
+ "proc-macro2",
580
+ "pyo3-build-config",
581
+ "quote",
582
+ "syn",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "quote"
587
+ version = "1.0.45"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
590
+ dependencies = [
591
+ "proc-macro2",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "rawpointer"
596
+ version = "0.2.1"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
599
+
600
+ [[package]]
601
+ name = "rayon"
602
+ version = "1.11.0"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
605
+ dependencies = [
606
+ "either",
607
+ "rayon-core",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "rayon-core"
612
+ version = "1.13.0"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
615
+ dependencies = [
616
+ "crossbeam-deque",
617
+ "crossbeam-utils",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "realfft"
622
+ version = "3.5.0"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "f821338fddb99d089116342c46e9f1fbf3828dba077674613e734e01d6ea8677"
625
+ dependencies = [
626
+ "rustfft",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "regex"
631
+ version = "1.12.3"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
634
+ dependencies = [
635
+ "aho-corasick",
636
+ "memchr",
637
+ "regex-automata",
638
+ "regex-syntax",
639
+ ]
640
+
641
+ [[package]]
642
+ name = "regex-automata"
643
+ version = "0.4.14"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
646
+ dependencies = [
647
+ "aho-corasick",
648
+ "memchr",
649
+ "regex-syntax",
650
+ ]
651
+
652
+ [[package]]
653
+ name = "regex-syntax"
654
+ version = "0.8.10"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
657
+
658
+ [[package]]
659
+ name = "rubato"
660
+ version = "2.0.0"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "ce96ead1a91f7895704a9f08ea5947dfc8bd7c1f2936a22295b655ec67e5c6ef"
663
+ dependencies = [
664
+ "audioadapter",
665
+ "audioadapter-buffers",
666
+ "num-complex",
667
+ "num-integer",
668
+ "num-traits",
669
+ "realfft",
670
+ "visibility",
671
+ "windowfunctions",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "rustc-hash"
676
+ version = "2.1.2"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
679
+
680
+ [[package]]
681
+ name = "rustfft"
682
+ version = "6.4.1"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "21db5f9893e91f41798c88680037dba611ca6674703c1a18601b01a72c8adb89"
685
+ dependencies = [
686
+ "num-complex",
687
+ "num-integer",
688
+ "num-traits",
689
+ "primal-check",
690
+ "strength_reduce",
691
+ "transpose",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "rustversion"
696
+ version = "1.0.22"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
699
+
700
+ [[package]]
701
+ name = "same-file"
702
+ version = "1.0.6"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
705
+ dependencies = [
706
+ "winapi-util",
707
+ ]
708
+
709
+ [[package]]
710
+ name = "serde"
711
+ version = "1.0.228"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
714
+ dependencies = [
715
+ "serde_core",
716
+ "serde_derive",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "serde_core"
721
+ version = "1.0.228"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
724
+ dependencies = [
725
+ "serde_derive",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "serde_derive"
730
+ version = "1.0.228"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
733
+ dependencies = [
734
+ "proc-macro2",
735
+ "quote",
736
+ "syn",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "serde_json"
741
+ version = "1.0.149"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
744
+ dependencies = [
745
+ "itoa",
746
+ "memchr",
747
+ "serde",
748
+ "serde_core",
749
+ "zmij",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "shlex"
754
+ version = "1.3.0"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
757
+
758
+ [[package]]
759
+ name = "sonara"
760
+ version = "0.1.0"
761
+ dependencies = [
762
+ "approx",
763
+ "blas-src",
764
+ "criterion",
765
+ "hound",
766
+ "ndarray",
767
+ "num-complex",
768
+ "num-traits",
769
+ "rayon",
770
+ "realfft",
771
+ "rubato",
772
+ "rustfft",
773
+ "symphonia",
774
+ "thiserror",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "sonara-python"
779
+ version = "0.1.0"
780
+ dependencies = [
781
+ "ndarray",
782
+ "num-complex",
783
+ "numpy",
784
+ "pyo3",
785
+ "sonara",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "strength_reduce"
790
+ version = "0.2.4"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
793
+
794
+ [[package]]
795
+ name = "symphonia"
796
+ version = "0.5.5"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "5773a4c030a19d9bfaa090f49746ff35c75dfddfa700df7a5939d5e076a57039"
799
+ dependencies = [
800
+ "lazy_static",
801
+ "symphonia-bundle-flac",
802
+ "symphonia-bundle-mp3",
803
+ "symphonia-codec-aac",
804
+ "symphonia-codec-adpcm",
805
+ "symphonia-codec-alac",
806
+ "symphonia-codec-pcm",
807
+ "symphonia-codec-vorbis",
808
+ "symphonia-core",
809
+ "symphonia-format-caf",
810
+ "symphonia-format-isomp4",
811
+ "symphonia-format-mkv",
812
+ "symphonia-format-ogg",
813
+ "symphonia-format-riff",
814
+ "symphonia-metadata",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "symphonia-bundle-flac"
819
+ version = "0.5.5"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "c91565e180aea25d9b80a910c546802526ffd0072d0b8974e3ebe59b686c9976"
822
+ dependencies = [
823
+ "log",
824
+ "symphonia-core",
825
+ "symphonia-metadata",
826
+ "symphonia-utils-xiph",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "symphonia-bundle-mp3"
831
+ version = "0.5.5"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "4872dd6bb56bf5eac799e3e957aa1981086c3e613b27e0ac23b176054f7c57ed"
834
+ dependencies = [
835
+ "lazy_static",
836
+ "log",
837
+ "symphonia-core",
838
+ "symphonia-metadata",
839
+ ]
840
+
841
+ [[package]]
842
+ name = "symphonia-codec-aac"
843
+ version = "0.5.5"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "4c263845aa86881416849c1729a54c7f55164f8b96111dba59de46849e73a790"
846
+ dependencies = [
847
+ "lazy_static",
848
+ "log",
849
+ "symphonia-core",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "symphonia-codec-adpcm"
854
+ version = "0.5.5"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "2dddc50e2bbea4cfe027441eece77c46b9f319748605ab8f3443350129ddd07f"
857
+ dependencies = [
858
+ "log",
859
+ "symphonia-core",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "symphonia-codec-alac"
864
+ version = "0.5.5"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "8413fa754942ac16a73634c9dfd1500ed5c61430956b33728567f667fdd393ab"
867
+ dependencies = [
868
+ "log",
869
+ "symphonia-core",
870
+ ]
871
+
872
+ [[package]]
873
+ name = "symphonia-codec-pcm"
874
+ version = "0.5.5"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "4e89d716c01541ad3ebe7c91ce4c8d38a7cf266a3f7b2f090b108fb0cb031d95"
877
+ dependencies = [
878
+ "log",
879
+ "symphonia-core",
880
+ ]
881
+
882
+ [[package]]
883
+ name = "symphonia-codec-vorbis"
884
+ version = "0.5.5"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "f025837c309cd69ffef572750b4a2257b59552c5399a5e49707cc5b1b85d1c73"
887
+ dependencies = [
888
+ "log",
889
+ "symphonia-core",
890
+ "symphonia-utils-xiph",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "symphonia-core"
895
+ version = "0.5.5"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "ea00cc4f79b7f6bb7ff87eddc065a1066f3a43fe1875979056672c9ef948c2af"
898
+ dependencies = [
899
+ "arrayvec",
900
+ "bitflags",
901
+ "bytemuck",
902
+ "lazy_static",
903
+ "log",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "symphonia-format-caf"
908
+ version = "0.5.5"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "b8faf379316b6b6e6bbc274d00e7a592e0d63ff1a7e182ce8ba25e24edd3d096"
911
+ dependencies = [
912
+ "log",
913
+ "symphonia-core",
914
+ "symphonia-metadata",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "symphonia-format-isomp4"
919
+ version = "0.5.5"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "243739585d11f81daf8dac8d9f3d18cc7898f6c09a259675fc364b382c30e0a5"
922
+ dependencies = [
923
+ "encoding_rs",
924
+ "log",
925
+ "symphonia-core",
926
+ "symphonia-metadata",
927
+ "symphonia-utils-xiph",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "symphonia-format-mkv"
932
+ version = "0.5.5"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "122d786d2c43a49beb6f397551b4a050d8229eaa54c7ddf9ee4b98899b8742d0"
935
+ dependencies = [
936
+ "lazy_static",
937
+ "log",
938
+ "symphonia-core",
939
+ "symphonia-metadata",
940
+ "symphonia-utils-xiph",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "symphonia-format-ogg"
945
+ version = "0.5.5"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "2b4955c67c1ed3aa8ae8428d04ca8397fbef6a19b2b051e73b5da8b1435639cb"
948
+ dependencies = [
949
+ "log",
950
+ "symphonia-core",
951
+ "symphonia-metadata",
952
+ "symphonia-utils-xiph",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "symphonia-format-riff"
957
+ version = "0.5.5"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "c2d7c3df0e7d94efb68401d81906eae73c02b40d5ec1a141962c592d0f11a96f"
960
+ dependencies = [
961
+ "extended",
962
+ "log",
963
+ "symphonia-core",
964
+ "symphonia-metadata",
965
+ ]
966
+
967
+ [[package]]
968
+ name = "symphonia-metadata"
969
+ version = "0.5.5"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "36306ff42b9ffe6e5afc99d49e121e0bd62fe79b9db7b9681d48e29fa19e6b16"
972
+ dependencies = [
973
+ "encoding_rs",
974
+ "lazy_static",
975
+ "log",
976
+ "symphonia-core",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "symphonia-utils-xiph"
981
+ version = "0.5.5"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "ee27c85ab799a338446b68eec77abf42e1a6f1bb490656e121c6e27bfbab9f16"
984
+ dependencies = [
985
+ "symphonia-core",
986
+ "symphonia-metadata",
987
+ ]
988
+
989
+ [[package]]
990
+ name = "syn"
991
+ version = "2.0.117"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
994
+ dependencies = [
995
+ "proc-macro2",
996
+ "quote",
997
+ "unicode-ident",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "target-lexicon"
1002
+ version = "0.13.5"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1005
+
1006
+ [[package]]
1007
+ name = "thiserror"
1008
+ version = "2.0.18"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1011
+ dependencies = [
1012
+ "thiserror-impl",
1013
+ ]
1014
+
1015
+ [[package]]
1016
+ name = "thiserror-impl"
1017
+ version = "2.0.18"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1020
+ dependencies = [
1021
+ "proc-macro2",
1022
+ "quote",
1023
+ "syn",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "tinytemplate"
1028
+ version = "1.2.1"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1031
+ dependencies = [
1032
+ "serde",
1033
+ "serde_json",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "transpose"
1038
+ version = "0.2.3"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "1ad61aed86bc3faea4300c7aee358b4c6d0c8d6ccc36524c96e4c92ccf26e77e"
1041
+ dependencies = [
1042
+ "num-integer",
1043
+ "strength_reduce",
1044
+ ]
1045
+
1046
+ [[package]]
1047
+ name = "unicode-ident"
1048
+ version = "1.0.24"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1051
+
1052
+ [[package]]
1053
+ name = "visibility"
1054
+ version = "0.1.1"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "d674d135b4a8c1d7e813e2f8d1c9a58308aee4a680323066025e53132218bd91"
1057
+ dependencies = [
1058
+ "proc-macro2",
1059
+ "quote",
1060
+ "syn",
1061
+ ]
1062
+
1063
+ [[package]]
1064
+ name = "walkdir"
1065
+ version = "2.5.0"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1068
+ dependencies = [
1069
+ "same-file",
1070
+ "winapi-util",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "wasm-bindgen"
1075
+ version = "0.2.118"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
1078
+ dependencies = [
1079
+ "cfg-if",
1080
+ "once_cell",
1081
+ "rustversion",
1082
+ "wasm-bindgen-macro",
1083
+ "wasm-bindgen-shared",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "wasm-bindgen-macro"
1088
+ version = "0.2.118"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
1091
+ dependencies = [
1092
+ "quote",
1093
+ "wasm-bindgen-macro-support",
1094
+ ]
1095
+
1096
+ [[package]]
1097
+ name = "wasm-bindgen-macro-support"
1098
+ version = "0.2.118"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
1101
+ dependencies = [
1102
+ "bumpalo",
1103
+ "proc-macro2",
1104
+ "quote",
1105
+ "syn",
1106
+ "wasm-bindgen-shared",
1107
+ ]
1108
+
1109
+ [[package]]
1110
+ name = "wasm-bindgen-shared"
1111
+ version = "0.2.118"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
1114
+ dependencies = [
1115
+ "unicode-ident",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "web-sys"
1120
+ version = "0.3.95"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
1123
+ dependencies = [
1124
+ "js-sys",
1125
+ "wasm-bindgen",
1126
+ ]
1127
+
1128
+ [[package]]
1129
+ name = "winapi"
1130
+ version = "0.3.9"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1133
+ dependencies = [
1134
+ "winapi-i686-pc-windows-gnu",
1135
+ "winapi-x86_64-pc-windows-gnu",
1136
+ ]
1137
+
1138
+ [[package]]
1139
+ name = "winapi-i686-pc-windows-gnu"
1140
+ version = "0.4.0"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1143
+
1144
+ [[package]]
1145
+ name = "winapi-util"
1146
+ version = "0.1.11"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1149
+ dependencies = [
1150
+ "windows-sys",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "winapi-x86_64-pc-windows-gnu"
1155
+ version = "0.4.0"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1158
+
1159
+ [[package]]
1160
+ name = "windowfunctions"
1161
+ version = "0.1.1"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "90628d739333b7c5d2ee0b70210b97b8cddc38440c682c96fd9e2c24c2db5f3a"
1164
+ dependencies = [
1165
+ "num-traits",
1166
+ ]
1167
+
1168
+ [[package]]
1169
+ name = "windows-link"
1170
+ version = "0.2.1"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1173
+
1174
+ [[package]]
1175
+ name = "windows-sys"
1176
+ version = "0.61.2"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1179
+ dependencies = [
1180
+ "windows-link",
1181
+ ]
1182
+
1183
+ [[package]]
1184
+ name = "zerocopy"
1185
+ version = "0.8.48"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1188
+ dependencies = [
1189
+ "zerocopy-derive",
1190
+ ]
1191
+
1192
+ [[package]]
1193
+ name = "zerocopy-derive"
1194
+ version = "0.8.48"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1197
+ dependencies = [
1198
+ "proc-macro2",
1199
+ "quote",
1200
+ "syn",
1201
+ ]
1202
+
1203
+ [[package]]
1204
+ name = "zmij"
1205
+ version = "1.0.21"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"