old school music tracker audio backend
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "alsa"
7version = "0.9.1"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "ed7572b7ba83a31e20d1b48970ee402d2e3e0537dcfe0a3ff4d6eb7508617d43"
10dependencies = [
11 "alsa-sys",
12 "bitflags 2.9.1",
13 "cfg-if",
14 "libc",
15]
16
17[[package]]
18name = "alsa-sys"
19version = "0.3.1"
20source = "registry+https://github.com/rust-lang/crates.io-index"
21checksum = "db8fee663d06c4e303404ef5f40488a53e062f89ba8bfed81f42325aafad1527"
22dependencies = [
23 "libc",
24 "pkg-config",
25]
26
27[[package]]
28name = "autocfg"
29version = "1.5.0"
30source = "registry+https://github.com/rust-lang/crates.io-index"
31checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
32
33[[package]]
34name = "bitflags"
35version = "1.3.2"
36source = "registry+https://github.com/rust-lang/crates.io-index"
37checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
38
39[[package]]
40name = "bitflags"
41version = "2.9.1"
42source = "registry+https://github.com/rust-lang/crates.io-index"
43checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
44
45[[package]]
46name = "bumpalo"
47version = "3.19.0"
48source = "registry+https://github.com/rust-lang/crates.io-index"
49checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
50
51[[package]]
52name = "bytes"
53version = "1.10.1"
54source = "registry+https://github.com/rust-lang/crates.io-index"
55checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
56
57[[package]]
58name = "cesu8"
59version = "1.1.0"
60source = "registry+https://github.com/rust-lang/crates.io-index"
61checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
62
63[[package]]
64name = "cfg-if"
65version = "1.0.1"
66source = "registry+https://github.com/rust-lang/crates.io-index"
67checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
68
69[[package]]
70name = "combine"
71version = "4.6.7"
72source = "registry+https://github.com/rust-lang/crates.io-index"
73checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
74dependencies = [
75 "bytes",
76 "memchr",
77]
78
79[[package]]
80name = "coreaudio-rs"
81version = "0.13.0"
82source = "registry+https://github.com/rust-lang/crates.io-index"
83checksum = "1aae284fbaf7d27aa0e292f7677dfbe26503b0d555026f702940805a630eac17"
84dependencies = [
85 "bitflags 1.3.2",
86 "libc",
87 "objc2-audio-toolbox",
88 "objc2-core-audio",
89 "objc2-core-audio-types",
90 "objc2-core-foundation",
91]
92
93[[package]]
94name = "cpal"
95version = "0.16.0"
96source = "registry+https://github.com/rust-lang/crates.io-index"
97checksum = "cbd307f43cc2a697e2d1f8bc7a1d824b5269e052209e28883e5bc04d095aaa3f"
98dependencies = [
99 "alsa",
100 "coreaudio-rs",
101 "dasp_sample",
102 "jni",
103 "js-sys",
104 "libc",
105 "mach2",
106 "ndk",
107 "ndk-context",
108 "num-derive",
109 "num-traits",
110 "objc2-audio-toolbox",
111 "objc2-core-audio",
112 "objc2-core-audio-types",
113 "wasm-bindgen",
114 "wasm-bindgen-futures",
115 "web-sys",
116 "windows",
117]
118
119[[package]]
120name = "dasp"
121version = "0.11.0"
122source = "registry+https://github.com/rust-lang/crates.io-index"
123checksum = "7381b67da416b639690ac77c73b86a7b5e64a29e31d1f75fb3b1102301ef355a"
124dependencies = [
125 "dasp_envelope",
126 "dasp_frame",
127 "dasp_interpolate",
128 "dasp_peak",
129 "dasp_ring_buffer",
130 "dasp_rms",
131 "dasp_sample",
132 "dasp_signal",
133 "dasp_slice",
134 "dasp_window",
135]
136
137[[package]]
138name = "dasp_envelope"
139version = "0.11.0"
140source = "registry+https://github.com/rust-lang/crates.io-index"
141checksum = "8ec617ce7016f101a87fe85ed44180839744265fae73bb4aa43e7ece1b7668b6"
142dependencies = [
143 "dasp_frame",
144 "dasp_peak",
145 "dasp_ring_buffer",
146 "dasp_rms",
147 "dasp_sample",
148]
149
150[[package]]
151name = "dasp_frame"
152version = "0.11.0"
153source = "registry+https://github.com/rust-lang/crates.io-index"
154checksum = "b2a3937f5fe2135702897535c8d4a5553f8b116f76c1529088797f2eee7c5cd6"
155dependencies = [
156 "dasp_sample",
157]
158
159[[package]]
160name = "dasp_interpolate"
161version = "0.11.0"
162source = "registry+https://github.com/rust-lang/crates.io-index"
163checksum = "7fc975a6563bb7ca7ec0a6c784ead49983a21c24835b0bc96eea11ee407c7486"
164dependencies = [
165 "dasp_frame",
166 "dasp_ring_buffer",
167 "dasp_sample",
168]
169
170[[package]]
171name = "dasp_peak"
172version = "0.11.0"
173source = "registry+https://github.com/rust-lang/crates.io-index"
174checksum = "5cf88559d79c21f3d8523d91250c397f9a15b5fc72fbb3f87fdb0a37b79915bf"
175dependencies = [
176 "dasp_frame",
177 "dasp_sample",
178]
179
180[[package]]
181name = "dasp_ring_buffer"
182version = "0.11.0"
183source = "registry+https://github.com/rust-lang/crates.io-index"
184checksum = "07d79e19b89618a543c4adec9c5a347fe378a19041699b3278e616e387511ea1"
185
186[[package]]
187name = "dasp_rms"
188version = "0.11.0"
189source = "registry+https://github.com/rust-lang/crates.io-index"
190checksum = "a6c5dcb30b7e5014486e2822537ea2beae50b19722ffe2ed7549ab03774575aa"
191dependencies = [
192 "dasp_frame",
193 "dasp_ring_buffer",
194 "dasp_sample",
195]
196
197[[package]]
198name = "dasp_sample"
199version = "0.11.0"
200source = "registry+https://github.com/rust-lang/crates.io-index"
201checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f"
202
203[[package]]
204name = "dasp_signal"
205version = "0.11.0"
206source = "registry+https://github.com/rust-lang/crates.io-index"
207checksum = "aa1ab7d01689c6ed4eae3d38fe1cea08cba761573fbd2d592528d55b421077e7"
208dependencies = [
209 "dasp_envelope",
210 "dasp_frame",
211 "dasp_interpolate",
212 "dasp_peak",
213 "dasp_ring_buffer",
214 "dasp_rms",
215 "dasp_sample",
216 "dasp_window",
217]
218
219[[package]]
220name = "dasp_slice"
221version = "0.11.0"
222source = "registry+https://github.com/rust-lang/crates.io-index"
223checksum = "4e1c7335d58e7baedafa516cb361360ff38d6f4d3f9d9d5ee2a2fc8e27178fa1"
224dependencies = [
225 "dasp_frame",
226 "dasp_sample",
227]
228
229[[package]]
230name = "dasp_window"
231version = "0.11.1"
232source = "registry+https://github.com/rust-lang/crates.io-index"
233checksum = "99ded7b88821d2ce4e8b842c9f1c86ac911891ab89443cc1de750cae764c5076"
234dependencies = [
235 "dasp_sample",
236]
237
238[[package]]
239name = "dispatch2"
240version = "0.3.0"
241source = "registry+https://github.com/rust-lang/crates.io-index"
242checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec"
243dependencies = [
244 "bitflags 2.9.1",
245 "objc2",
246]
247
248[[package]]
249name = "equivalent"
250version = "1.0.2"
251source = "registry+https://github.com/rust-lang/crates.io-index"
252checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
253
254[[package]]
255name = "errno"
256version = "0.3.13"
257source = "registry+https://github.com/rust-lang/crates.io-index"
258checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
259dependencies = [
260 "libc",
261 "windows-sys 0.60.2",
262]
263
264[[package]]
265name = "fastrand"
266version = "2.3.0"
267source = "registry+https://github.com/rust-lang/crates.io-index"
268checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
269
270[[package]]
271name = "getrandom"
272version = "0.3.3"
273source = "registry+https://github.com/rust-lang/crates.io-index"
274checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
275dependencies = [
276 "cfg-if",
277 "libc",
278 "r-efi",
279 "wasi",
280]
281
282[[package]]
283name = "hashbrown"
284version = "0.15.4"
285source = "registry+https://github.com/rust-lang/crates.io-index"
286checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
287
288[[package]]
289name = "hermit-abi"
290version = "0.5.2"
291source = "registry+https://github.com/rust-lang/crates.io-index"
292checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
293
294[[package]]
295name = "hound"
296version = "3.5.1"
297source = "registry+https://github.com/rust-lang/crates.io-index"
298checksum = "62adaabb884c94955b19907d60019f4e145d091c75345379e70d1ee696f7854f"
299
300[[package]]
301name = "indexmap"
302version = "2.10.0"
303source = "registry+https://github.com/rust-lang/crates.io-index"
304checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
305dependencies = [
306 "equivalent",
307 "hashbrown",
308]
309
310[[package]]
311name = "jni"
312version = "0.21.1"
313source = "registry+https://github.com/rust-lang/crates.io-index"
314checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
315dependencies = [
316 "cesu8",
317 "cfg-if",
318 "combine",
319 "jni-sys",
320 "log",
321 "thiserror",
322 "walkdir",
323 "windows-sys 0.45.0",
324]
325
326[[package]]
327name = "jni-sys"
328version = "0.3.0"
329source = "registry+https://github.com/rust-lang/crates.io-index"
330checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
331
332[[package]]
333name = "js-sys"
334version = "0.3.77"
335source = "registry+https://github.com/rust-lang/crates.io-index"
336checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
337dependencies = [
338 "once_cell",
339 "wasm-bindgen",
340]
341
342[[package]]
343name = "libc"
344version = "0.2.174"
345source = "registry+https://github.com/rust-lang/crates.io-index"
346checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
347
348[[package]]
349name = "linux-raw-sys"
350version = "0.9.4"
351source = "registry+https://github.com/rust-lang/crates.io-index"
352checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
353
354[[package]]
355name = "log"
356version = "0.4.27"
357source = "registry+https://github.com/rust-lang/crates.io-index"
358checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
359
360[[package]]
361name = "mach2"
362version = "0.4.3"
363source = "registry+https://github.com/rust-lang/crates.io-index"
364checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
365dependencies = [
366 "libc",
367]
368
369[[package]]
370name = "memchr"
371version = "2.7.5"
372source = "registry+https://github.com/rust-lang/crates.io-index"
373checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
374
375[[package]]
376name = "ndk"
377version = "0.9.0"
378source = "registry+https://github.com/rust-lang/crates.io-index"
379checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
380dependencies = [
381 "bitflags 2.9.1",
382 "jni-sys",
383 "log",
384 "ndk-sys",
385 "num_enum",
386 "thiserror",
387]
388
389[[package]]
390name = "ndk-context"
391version = "0.1.1"
392source = "registry+https://github.com/rust-lang/crates.io-index"
393checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
394
395[[package]]
396name = "ndk-sys"
397version = "0.6.0+11769913"
398source = "registry+https://github.com/rust-lang/crates.io-index"
399checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
400dependencies = [
401 "jni-sys",
402]
403
404[[package]]
405name = "num-derive"
406version = "0.4.2"
407source = "registry+https://github.com/rust-lang/crates.io-index"
408checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
409dependencies = [
410 "proc-macro2",
411 "quote",
412 "syn",
413]
414
415[[package]]
416name = "num-traits"
417version = "0.2.19"
418source = "registry+https://github.com/rust-lang/crates.io-index"
419checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
420dependencies = [
421 "autocfg",
422]
423
424[[package]]
425name = "num_cpus"
426version = "1.17.0"
427source = "registry+https://github.com/rust-lang/crates.io-index"
428checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
429dependencies = [
430 "hermit-abi",
431 "libc",
432]
433
434[[package]]
435name = "num_enum"
436version = "0.7.4"
437source = "registry+https://github.com/rust-lang/crates.io-index"
438checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a"
439dependencies = [
440 "num_enum_derive",
441 "rustversion",
442]
443
444[[package]]
445name = "num_enum_derive"
446version = "0.7.4"
447source = "registry+https://github.com/rust-lang/crates.io-index"
448checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d"
449dependencies = [
450 "proc-macro-crate",
451 "proc-macro2",
452 "quote",
453 "syn",
454]
455
456[[package]]
457name = "objc2"
458version = "0.6.1"
459source = "registry+https://github.com/rust-lang/crates.io-index"
460checksum = "88c6597e14493ab2e44ce58f2fdecf095a51f12ca57bec060a11c57332520551"
461dependencies = [
462 "objc2-encode",
463]
464
465[[package]]
466name = "objc2-audio-toolbox"
467version = "0.3.1"
468source = "registry+https://github.com/rust-lang/crates.io-index"
469checksum = "10cbe18d879e20a4aea544f8befe38bcf52255eb63d3f23eca2842f3319e4c07"
470dependencies = [
471 "bitflags 2.9.1",
472 "libc",
473 "objc2",
474 "objc2-core-audio",
475 "objc2-core-audio-types",
476 "objc2-core-foundation",
477 "objc2-foundation",
478]
479
480[[package]]
481name = "objc2-core-audio"
482version = "0.3.1"
483source = "registry+https://github.com/rust-lang/crates.io-index"
484checksum = "ca44961e888e19313b808f23497073e3f6b3c22bb485056674c8b49f3b025c82"
485dependencies = [
486 "dispatch2",
487 "objc2",
488 "objc2-core-audio-types",
489 "objc2-core-foundation",
490]
491
492[[package]]
493name = "objc2-core-audio-types"
494version = "0.3.1"
495source = "registry+https://github.com/rust-lang/crates.io-index"
496checksum = "c0f1cc99bb07ad2ddb6527ddf83db6a15271bb036b3eb94b801cd44fdc666ee1"
497dependencies = [
498 "bitflags 2.9.1",
499 "objc2",
500]
501
502[[package]]
503name = "objc2-core-foundation"
504version = "0.3.1"
505source = "registry+https://github.com/rust-lang/crates.io-index"
506checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166"
507dependencies = [
508 "bitflags 2.9.1",
509 "dispatch2",
510 "objc2",
511]
512
513[[package]]
514name = "objc2-encode"
515version = "4.1.0"
516source = "registry+https://github.com/rust-lang/crates.io-index"
517checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
518
519[[package]]
520name = "objc2-foundation"
521version = "0.3.1"
522source = "registry+https://github.com/rust-lang/crates.io-index"
523checksum = "900831247d2fe1a09a683278e5384cfb8c80c79fe6b166f9d14bfdde0ea1b03c"
524dependencies = [
525 "objc2",
526]
527
528[[package]]
529name = "once_cell"
530version = "1.21.3"
531source = "registry+https://github.com/rust-lang/crates.io-index"
532checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
533
534[[package]]
535name = "pkg-config"
536version = "0.3.32"
537source = "registry+https://github.com/rust-lang/crates.io-index"
538checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
539
540[[package]]
541name = "proc-macro-crate"
542version = "3.3.0"
543source = "registry+https://github.com/rust-lang/crates.io-index"
544checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
545dependencies = [
546 "toml_edit",
547]
548
549[[package]]
550name = "proc-macro2"
551version = "1.0.95"
552source = "registry+https://github.com/rust-lang/crates.io-index"
553checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
554dependencies = [
555 "unicode-ident",
556]
557
558[[package]]
559name = "quote"
560version = "1.0.40"
561source = "registry+https://github.com/rust-lang/crates.io-index"
562checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
563dependencies = [
564 "proc-macro2",
565]
566
567[[package]]
568name = "r-efi"
569version = "5.3.0"
570source = "registry+https://github.com/rust-lang/crates.io-index"
571checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
572
573[[package]]
574name = "rt-write-lock"
575version = "0.1.0"
576source = "registry+https://github.com/rust-lang/crates.io-index"
577checksum = "79ce7f6e4b55e98feea9066f403ac0866c1d16d602d7522367151771d2800a15"
578
579[[package]]
580name = "rtrb"
581version = "0.3.2"
582source = "registry+https://github.com/rust-lang/crates.io-index"
583checksum = "ad8388ea1a9e0ea807e442e8263a699e7edcb320ecbcd21b4fa8ff859acce3ba"
584
585[[package]]
586name = "rtsan-standalone"
587version = "0.2.0"
588source = "registry+https://github.com/rust-lang/crates.io-index"
589checksum = "3c6a4b90a2bb001ee7995beb43c38b9ed112660936ae2183d462ee5e794a1b59"
590dependencies = [
591 "rtsan-standalone-macros",
592 "rtsan-standalone-sys",
593]
594
595[[package]]
596name = "rtsan-standalone-macros"
597version = "0.2.0"
598source = "registry+https://github.com/rust-lang/crates.io-index"
599checksum = "849bff7a4ddb988fd4daa20f818e7cd699195ac81c9a6f2372444e04ba88e71e"
600dependencies = [
601 "quote",
602 "syn",
603]
604
605[[package]]
606name = "rtsan-standalone-sys"
607version = "0.2.0"
608source = "registry+https://github.com/rust-lang/crates.io-index"
609checksum = "8b463f269f93c0e4be0e325b3a3fe46b3948992d36b37c8a5d949e9b903d9294"
610dependencies = [
611 "num_cpus",
612 "tempfile",
613]
614
615[[package]]
616name = "rustix"
617version = "1.0.8"
618source = "registry+https://github.com/rust-lang/crates.io-index"
619checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
620dependencies = [
621 "bitflags 2.9.1",
622 "errno",
623 "libc",
624 "linux-raw-sys",
625 "windows-sys 0.60.2",
626]
627
628[[package]]
629name = "rustversion"
630version = "1.0.21"
631source = "registry+https://github.com/rust-lang/crates.io-index"
632checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
633
634[[package]]
635name = "same-file"
636version = "1.0.6"
637source = "registry+https://github.com/rust-lang/crates.io-index"
638checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
639dependencies = [
640 "winapi-util",
641]
642
643[[package]]
644name = "simple-left-right"
645version = "0.2.3"
646source = "registry+https://github.com/rust-lang/crates.io-index"
647checksum = "a3a8aae2755857e854bf0aaa2024e240c39c75228789afe556f552a52dbb9d74"
648
649[[package]]
650name = "syn"
651version = "2.0.104"
652source = "registry+https://github.com/rust-lang/crates.io-index"
653checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
654dependencies = [
655 "proc-macro2",
656 "quote",
657 "unicode-ident",
658]
659
660[[package]]
661name = "tempfile"
662version = "3.20.0"
663source = "registry+https://github.com/rust-lang/crates.io-index"
664checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
665dependencies = [
666 "fastrand",
667 "getrandom",
668 "once_cell",
669 "rustix",
670 "windows-sys 0.59.0",
671]
672
673[[package]]
674name = "thiserror"
675version = "1.0.69"
676source = "registry+https://github.com/rust-lang/crates.io-index"
677checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
678dependencies = [
679 "thiserror-impl",
680]
681
682[[package]]
683name = "thiserror-impl"
684version = "1.0.69"
685source = "registry+https://github.com/rust-lang/crates.io-index"
686checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
687dependencies = [
688 "proc-macro2",
689 "quote",
690 "syn",
691]
692
693[[package]]
694name = "toml_datetime"
695version = "0.6.11"
696source = "registry+https://github.com/rust-lang/crates.io-index"
697checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
698
699[[package]]
700name = "toml_edit"
701version = "0.22.27"
702source = "registry+https://github.com/rust-lang/crates.io-index"
703checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
704dependencies = [
705 "indexmap",
706 "toml_datetime",
707 "winnow",
708]
709
710[[package]]
711name = "torque-tracker-engine"
712version = "0.2.0"
713dependencies = [
714 "cpal",
715 "dasp",
716 "hound",
717 "rt-write-lock",
718 "rtrb",
719 "rtsan-standalone",
720 "simple-left-right",
721 "triomphe",
722]
723
724[[package]]
725name = "triomphe"
726version = "0.1.15"
727source = "registry+https://github.com/rust-lang/crates.io-index"
728checksum = "dd69c5aa8f924c7519d6372789a74eac5b94fb0f8fcf0d4a97eb0bfc3e785f39"
729
730[[package]]
731name = "unicode-ident"
732version = "1.0.18"
733source = "registry+https://github.com/rust-lang/crates.io-index"
734checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
735
736[[package]]
737name = "walkdir"
738version = "2.5.0"
739source = "registry+https://github.com/rust-lang/crates.io-index"
740checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
741dependencies = [
742 "same-file",
743 "winapi-util",
744]
745
746[[package]]
747name = "wasi"
748version = "0.14.2+wasi-0.2.4"
749source = "registry+https://github.com/rust-lang/crates.io-index"
750checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
751dependencies = [
752 "wit-bindgen-rt",
753]
754
755[[package]]
756name = "wasm-bindgen"
757version = "0.2.100"
758source = "registry+https://github.com/rust-lang/crates.io-index"
759checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
760dependencies = [
761 "cfg-if",
762 "once_cell",
763 "rustversion",
764 "wasm-bindgen-macro",
765]
766
767[[package]]
768name = "wasm-bindgen-backend"
769version = "0.2.100"
770source = "registry+https://github.com/rust-lang/crates.io-index"
771checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
772dependencies = [
773 "bumpalo",
774 "log",
775 "proc-macro2",
776 "quote",
777 "syn",
778 "wasm-bindgen-shared",
779]
780
781[[package]]
782name = "wasm-bindgen-futures"
783version = "0.4.50"
784source = "registry+https://github.com/rust-lang/crates.io-index"
785checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
786dependencies = [
787 "cfg-if",
788 "js-sys",
789 "once_cell",
790 "wasm-bindgen",
791 "web-sys",
792]
793
794[[package]]
795name = "wasm-bindgen-macro"
796version = "0.2.100"
797source = "registry+https://github.com/rust-lang/crates.io-index"
798checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
799dependencies = [
800 "quote",
801 "wasm-bindgen-macro-support",
802]
803
804[[package]]
805name = "wasm-bindgen-macro-support"
806version = "0.2.100"
807source = "registry+https://github.com/rust-lang/crates.io-index"
808checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
809dependencies = [
810 "proc-macro2",
811 "quote",
812 "syn",
813 "wasm-bindgen-backend",
814 "wasm-bindgen-shared",
815]
816
817[[package]]
818name = "wasm-bindgen-shared"
819version = "0.2.100"
820source = "registry+https://github.com/rust-lang/crates.io-index"
821checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
822dependencies = [
823 "unicode-ident",
824]
825
826[[package]]
827name = "web-sys"
828version = "0.3.77"
829source = "registry+https://github.com/rust-lang/crates.io-index"
830checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
831dependencies = [
832 "js-sys",
833 "wasm-bindgen",
834]
835
836[[package]]
837name = "winapi-util"
838version = "0.1.9"
839source = "registry+https://github.com/rust-lang/crates.io-index"
840checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
841dependencies = [
842 "windows-sys 0.59.0",
843]
844
845[[package]]
846name = "windows"
847version = "0.54.0"
848source = "registry+https://github.com/rust-lang/crates.io-index"
849checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49"
850dependencies = [
851 "windows-core",
852 "windows-targets 0.52.6",
853]
854
855[[package]]
856name = "windows-core"
857version = "0.54.0"
858source = "registry+https://github.com/rust-lang/crates.io-index"
859checksum = "12661b9c89351d684a50a8a643ce5f608e20243b9fb84687800163429f161d65"
860dependencies = [
861 "windows-result",
862 "windows-targets 0.52.6",
863]
864
865[[package]]
866name = "windows-result"
867version = "0.1.2"
868source = "registry+https://github.com/rust-lang/crates.io-index"
869checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
870dependencies = [
871 "windows-targets 0.52.6",
872]
873
874[[package]]
875name = "windows-sys"
876version = "0.45.0"
877source = "registry+https://github.com/rust-lang/crates.io-index"
878checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
879dependencies = [
880 "windows-targets 0.42.2",
881]
882
883[[package]]
884name = "windows-sys"
885version = "0.59.0"
886source = "registry+https://github.com/rust-lang/crates.io-index"
887checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
888dependencies = [
889 "windows-targets 0.52.6",
890]
891
892[[package]]
893name = "windows-sys"
894version = "0.60.2"
895source = "registry+https://github.com/rust-lang/crates.io-index"
896checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
897dependencies = [
898 "windows-targets 0.53.2",
899]
900
901[[package]]
902name = "windows-targets"
903version = "0.42.2"
904source = "registry+https://github.com/rust-lang/crates.io-index"
905checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
906dependencies = [
907 "windows_aarch64_gnullvm 0.42.2",
908 "windows_aarch64_msvc 0.42.2",
909 "windows_i686_gnu 0.42.2",
910 "windows_i686_msvc 0.42.2",
911 "windows_x86_64_gnu 0.42.2",
912 "windows_x86_64_gnullvm 0.42.2",
913 "windows_x86_64_msvc 0.42.2",
914]
915
916[[package]]
917name = "windows-targets"
918version = "0.52.6"
919source = "registry+https://github.com/rust-lang/crates.io-index"
920checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
921dependencies = [
922 "windows_aarch64_gnullvm 0.52.6",
923 "windows_aarch64_msvc 0.52.6",
924 "windows_i686_gnu 0.52.6",
925 "windows_i686_gnullvm 0.52.6",
926 "windows_i686_msvc 0.52.6",
927 "windows_x86_64_gnu 0.52.6",
928 "windows_x86_64_gnullvm 0.52.6",
929 "windows_x86_64_msvc 0.52.6",
930]
931
932[[package]]
933name = "windows-targets"
934version = "0.53.2"
935source = "registry+https://github.com/rust-lang/crates.io-index"
936checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
937dependencies = [
938 "windows_aarch64_gnullvm 0.53.0",
939 "windows_aarch64_msvc 0.53.0",
940 "windows_i686_gnu 0.53.0",
941 "windows_i686_gnullvm 0.53.0",
942 "windows_i686_msvc 0.53.0",
943 "windows_x86_64_gnu 0.53.0",
944 "windows_x86_64_gnullvm 0.53.0",
945 "windows_x86_64_msvc 0.53.0",
946]
947
948[[package]]
949name = "windows_aarch64_gnullvm"
950version = "0.42.2"
951source = "registry+https://github.com/rust-lang/crates.io-index"
952checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
953
954[[package]]
955name = "windows_aarch64_gnullvm"
956version = "0.52.6"
957source = "registry+https://github.com/rust-lang/crates.io-index"
958checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
959
960[[package]]
961name = "windows_aarch64_gnullvm"
962version = "0.53.0"
963source = "registry+https://github.com/rust-lang/crates.io-index"
964checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
965
966[[package]]
967name = "windows_aarch64_msvc"
968version = "0.42.2"
969source = "registry+https://github.com/rust-lang/crates.io-index"
970checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
971
972[[package]]
973name = "windows_aarch64_msvc"
974version = "0.52.6"
975source = "registry+https://github.com/rust-lang/crates.io-index"
976checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
977
978[[package]]
979name = "windows_aarch64_msvc"
980version = "0.53.0"
981source = "registry+https://github.com/rust-lang/crates.io-index"
982checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
983
984[[package]]
985name = "windows_i686_gnu"
986version = "0.42.2"
987source = "registry+https://github.com/rust-lang/crates.io-index"
988checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
989
990[[package]]
991name = "windows_i686_gnu"
992version = "0.52.6"
993source = "registry+https://github.com/rust-lang/crates.io-index"
994checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
995
996[[package]]
997name = "windows_i686_gnu"
998version = "0.53.0"
999source = "registry+https://github.com/rust-lang/crates.io-index"
1000checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
1001
1002[[package]]
1003name = "windows_i686_gnullvm"
1004version = "0.52.6"
1005source = "registry+https://github.com/rust-lang/crates.io-index"
1006checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1007
1008[[package]]
1009name = "windows_i686_gnullvm"
1010version = "0.53.0"
1011source = "registry+https://github.com/rust-lang/crates.io-index"
1012checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
1013
1014[[package]]
1015name = "windows_i686_msvc"
1016version = "0.42.2"
1017source = "registry+https://github.com/rust-lang/crates.io-index"
1018checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
1019
1020[[package]]
1021name = "windows_i686_msvc"
1022version = "0.52.6"
1023source = "registry+https://github.com/rust-lang/crates.io-index"
1024checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1025
1026[[package]]
1027name = "windows_i686_msvc"
1028version = "0.53.0"
1029source = "registry+https://github.com/rust-lang/crates.io-index"
1030checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
1031
1032[[package]]
1033name = "windows_x86_64_gnu"
1034version = "0.42.2"
1035source = "registry+https://github.com/rust-lang/crates.io-index"
1036checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
1037
1038[[package]]
1039name = "windows_x86_64_gnu"
1040version = "0.52.6"
1041source = "registry+https://github.com/rust-lang/crates.io-index"
1042checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1043
1044[[package]]
1045name = "windows_x86_64_gnu"
1046version = "0.53.0"
1047source = "registry+https://github.com/rust-lang/crates.io-index"
1048checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
1049
1050[[package]]
1051name = "windows_x86_64_gnullvm"
1052version = "0.42.2"
1053source = "registry+https://github.com/rust-lang/crates.io-index"
1054checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
1055
1056[[package]]
1057name = "windows_x86_64_gnullvm"
1058version = "0.52.6"
1059source = "registry+https://github.com/rust-lang/crates.io-index"
1060checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1061
1062[[package]]
1063name = "windows_x86_64_gnullvm"
1064version = "0.53.0"
1065source = "registry+https://github.com/rust-lang/crates.io-index"
1066checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
1067
1068[[package]]
1069name = "windows_x86_64_msvc"
1070version = "0.42.2"
1071source = "registry+https://github.com/rust-lang/crates.io-index"
1072checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
1073
1074[[package]]
1075name = "windows_x86_64_msvc"
1076version = "0.52.6"
1077source = "registry+https://github.com/rust-lang/crates.io-index"
1078checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1079
1080[[package]]
1081name = "windows_x86_64_msvc"
1082version = "0.53.0"
1083source = "registry+https://github.com/rust-lang/crates.io-index"
1084checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
1085
1086[[package]]
1087name = "winnow"
1088version = "0.7.12"
1089source = "registry+https://github.com/rust-lang/crates.io-index"
1090checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
1091dependencies = [
1092 "memchr",
1093]
1094
1095[[package]]
1096name = "wit-bindgen-rt"
1097version = "0.39.0"
1098source = "registry+https://github.com/rust-lang/crates.io-index"
1099checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
1100dependencies = [
1101 "bitflags 2.9.1",
1102]