old school music tracker audio backend
at main 1104 lines 29 kB view raw
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 = "crossbeam-utils" 121version = "0.8.21" 122source = "registry+https://github.com/rust-lang/crates.io-index" 123checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 124 125[[package]] 126name = "dasp" 127version = "0.11.0" 128source = "registry+https://github.com/rust-lang/crates.io-index" 129checksum = "7381b67da416b639690ac77c73b86a7b5e64a29e31d1f75fb3b1102301ef355a" 130dependencies = [ 131 "dasp_envelope", 132 "dasp_frame", 133 "dasp_interpolate", 134 "dasp_peak", 135 "dasp_ring_buffer", 136 "dasp_rms", 137 "dasp_sample", 138 "dasp_signal", 139 "dasp_slice", 140 "dasp_window", 141] 142 143[[package]] 144name = "dasp_envelope" 145version = "0.11.0" 146source = "registry+https://github.com/rust-lang/crates.io-index" 147checksum = "8ec617ce7016f101a87fe85ed44180839744265fae73bb4aa43e7ece1b7668b6" 148dependencies = [ 149 "dasp_frame", 150 "dasp_peak", 151 "dasp_ring_buffer", 152 "dasp_rms", 153 "dasp_sample", 154] 155 156[[package]] 157name = "dasp_frame" 158version = "0.11.0" 159source = "registry+https://github.com/rust-lang/crates.io-index" 160checksum = "b2a3937f5fe2135702897535c8d4a5553f8b116f76c1529088797f2eee7c5cd6" 161dependencies = [ 162 "dasp_sample", 163] 164 165[[package]] 166name = "dasp_interpolate" 167version = "0.11.0" 168source = "registry+https://github.com/rust-lang/crates.io-index" 169checksum = "7fc975a6563bb7ca7ec0a6c784ead49983a21c24835b0bc96eea11ee407c7486" 170dependencies = [ 171 "dasp_frame", 172 "dasp_ring_buffer", 173 "dasp_sample", 174] 175 176[[package]] 177name = "dasp_peak" 178version = "0.11.0" 179source = "registry+https://github.com/rust-lang/crates.io-index" 180checksum = "5cf88559d79c21f3d8523d91250c397f9a15b5fc72fbb3f87fdb0a37b79915bf" 181dependencies = [ 182 "dasp_frame", 183 "dasp_sample", 184] 185 186[[package]] 187name = "dasp_ring_buffer" 188version = "0.11.0" 189source = "registry+https://github.com/rust-lang/crates.io-index" 190checksum = "07d79e19b89618a543c4adec9c5a347fe378a19041699b3278e616e387511ea1" 191 192[[package]] 193name = "dasp_rms" 194version = "0.11.0" 195source = "registry+https://github.com/rust-lang/crates.io-index" 196checksum = "a6c5dcb30b7e5014486e2822537ea2beae50b19722ffe2ed7549ab03774575aa" 197dependencies = [ 198 "dasp_frame", 199 "dasp_ring_buffer", 200 "dasp_sample", 201] 202 203[[package]] 204name = "dasp_sample" 205version = "0.11.0" 206source = "registry+https://github.com/rust-lang/crates.io-index" 207checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f" 208 209[[package]] 210name = "dasp_signal" 211version = "0.11.0" 212source = "registry+https://github.com/rust-lang/crates.io-index" 213checksum = "aa1ab7d01689c6ed4eae3d38fe1cea08cba761573fbd2d592528d55b421077e7" 214dependencies = [ 215 "dasp_envelope", 216 "dasp_frame", 217 "dasp_interpolate", 218 "dasp_peak", 219 "dasp_ring_buffer", 220 "dasp_rms", 221 "dasp_sample", 222 "dasp_window", 223] 224 225[[package]] 226name = "dasp_slice" 227version = "0.11.0" 228source = "registry+https://github.com/rust-lang/crates.io-index" 229checksum = "4e1c7335d58e7baedafa516cb361360ff38d6f4d3f9d9d5ee2a2fc8e27178fa1" 230dependencies = [ 231 "dasp_frame", 232 "dasp_sample", 233] 234 235[[package]] 236name = "dasp_window" 237version = "0.11.1" 238source = "registry+https://github.com/rust-lang/crates.io-index" 239checksum = "99ded7b88821d2ce4e8b842c9f1c86ac911891ab89443cc1de750cae764c5076" 240dependencies = [ 241 "dasp_sample", 242] 243 244[[package]] 245name = "dispatch2" 246version = "0.3.0" 247source = "registry+https://github.com/rust-lang/crates.io-index" 248checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" 249dependencies = [ 250 "bitflags 2.9.1", 251 "objc2", 252] 253 254[[package]] 255name = "equivalent" 256version = "1.0.2" 257source = "registry+https://github.com/rust-lang/crates.io-index" 258checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 259 260[[package]] 261name = "errno" 262version = "0.3.13" 263source = "registry+https://github.com/rust-lang/crates.io-index" 264checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad" 265dependencies = [ 266 "libc", 267 "windows-sys 0.60.2", 268] 269 270[[package]] 271name = "fastrand" 272version = "2.3.0" 273source = "registry+https://github.com/rust-lang/crates.io-index" 274checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 275 276[[package]] 277name = "getrandom" 278version = "0.3.3" 279source = "registry+https://github.com/rust-lang/crates.io-index" 280checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" 281dependencies = [ 282 "cfg-if", 283 "libc", 284 "r-efi", 285 "wasi", 286] 287 288[[package]] 289name = "hashbrown" 290version = "0.15.4" 291source = "registry+https://github.com/rust-lang/crates.io-index" 292checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5" 293 294[[package]] 295name = "hermit-abi" 296version = "0.5.2" 297source = "registry+https://github.com/rust-lang/crates.io-index" 298checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 299 300[[package]] 301name = "hound" 302version = "3.5.1" 303source = "registry+https://github.com/rust-lang/crates.io-index" 304checksum = "62adaabb884c94955b19907d60019f4e145d091c75345379e70d1ee696f7854f" 305 306[[package]] 307name = "indexmap" 308version = "2.10.0" 309source = "registry+https://github.com/rust-lang/crates.io-index" 310checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661" 311dependencies = [ 312 "equivalent", 313 "hashbrown", 314] 315 316[[package]] 317name = "jni" 318version = "0.21.1" 319source = "registry+https://github.com/rust-lang/crates.io-index" 320checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 321dependencies = [ 322 "cesu8", 323 "cfg-if", 324 "combine", 325 "jni-sys", 326 "log", 327 "thiserror", 328 "walkdir", 329 "windows-sys 0.45.0", 330] 331 332[[package]] 333name = "jni-sys" 334version = "0.3.0" 335source = "registry+https://github.com/rust-lang/crates.io-index" 336checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 337 338[[package]] 339name = "js-sys" 340version = "0.3.77" 341source = "registry+https://github.com/rust-lang/crates.io-index" 342checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" 343dependencies = [ 344 "once_cell", 345 "wasm-bindgen", 346] 347 348[[package]] 349name = "libc" 350version = "0.2.174" 351source = "registry+https://github.com/rust-lang/crates.io-index" 352checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" 353 354[[package]] 355name = "linux-raw-sys" 356version = "0.9.4" 357source = "registry+https://github.com/rust-lang/crates.io-index" 358checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" 359 360[[package]] 361name = "log" 362version = "0.4.27" 363source = "registry+https://github.com/rust-lang/crates.io-index" 364checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" 365 366[[package]] 367name = "mach2" 368version = "0.4.3" 369source = "registry+https://github.com/rust-lang/crates.io-index" 370checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44" 371dependencies = [ 372 "libc", 373] 374 375[[package]] 376name = "memchr" 377version = "2.7.5" 378source = "registry+https://github.com/rust-lang/crates.io-index" 379checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" 380 381[[package]] 382name = "ndk" 383version = "0.9.0" 384source = "registry+https://github.com/rust-lang/crates.io-index" 385checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" 386dependencies = [ 387 "bitflags 2.9.1", 388 "jni-sys", 389 "log", 390 "ndk-sys", 391 "num_enum", 392 "thiserror", 393] 394 395[[package]] 396name = "ndk-context" 397version = "0.1.1" 398source = "registry+https://github.com/rust-lang/crates.io-index" 399checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 400 401[[package]] 402name = "ndk-sys" 403version = "0.6.0+11769913" 404source = "registry+https://github.com/rust-lang/crates.io-index" 405checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873" 406dependencies = [ 407 "jni-sys", 408] 409 410[[package]] 411name = "num-derive" 412version = "0.4.2" 413source = "registry+https://github.com/rust-lang/crates.io-index" 414checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" 415dependencies = [ 416 "proc-macro2", 417 "quote", 418 "syn", 419] 420 421[[package]] 422name = "num-traits" 423version = "0.2.19" 424source = "registry+https://github.com/rust-lang/crates.io-index" 425checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 426dependencies = [ 427 "autocfg", 428] 429 430[[package]] 431name = "num_cpus" 432version = "1.17.0" 433source = "registry+https://github.com/rust-lang/crates.io-index" 434checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" 435dependencies = [ 436 "hermit-abi", 437 "libc", 438] 439 440[[package]] 441name = "num_enum" 442version = "0.7.4" 443source = "registry+https://github.com/rust-lang/crates.io-index" 444checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a" 445dependencies = [ 446 "num_enum_derive", 447 "rustversion", 448] 449 450[[package]] 451name = "num_enum_derive" 452version = "0.7.4" 453source = "registry+https://github.com/rust-lang/crates.io-index" 454checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d" 455dependencies = [ 456 "proc-macro-crate", 457 "proc-macro2", 458 "quote", 459 "syn", 460] 461 462[[package]] 463name = "objc2" 464version = "0.6.1" 465source = "registry+https://github.com/rust-lang/crates.io-index" 466checksum = "88c6597e14493ab2e44ce58f2fdecf095a51f12ca57bec060a11c57332520551" 467dependencies = [ 468 "objc2-encode", 469] 470 471[[package]] 472name = "objc2-audio-toolbox" 473version = "0.3.1" 474source = "registry+https://github.com/rust-lang/crates.io-index" 475checksum = "10cbe18d879e20a4aea544f8befe38bcf52255eb63d3f23eca2842f3319e4c07" 476dependencies = [ 477 "bitflags 2.9.1", 478 "libc", 479 "objc2", 480 "objc2-core-audio", 481 "objc2-core-audio-types", 482 "objc2-core-foundation", 483 "objc2-foundation", 484] 485 486[[package]] 487name = "objc2-core-audio" 488version = "0.3.1" 489source = "registry+https://github.com/rust-lang/crates.io-index" 490checksum = "ca44961e888e19313b808f23497073e3f6b3c22bb485056674c8b49f3b025c82" 491dependencies = [ 492 "dispatch2", 493 "objc2", 494 "objc2-core-audio-types", 495 "objc2-core-foundation", 496] 497 498[[package]] 499name = "objc2-core-audio-types" 500version = "0.3.1" 501source = "registry+https://github.com/rust-lang/crates.io-index" 502checksum = "c0f1cc99bb07ad2ddb6527ddf83db6a15271bb036b3eb94b801cd44fdc666ee1" 503dependencies = [ 504 "bitflags 2.9.1", 505 "objc2", 506] 507 508[[package]] 509name = "objc2-core-foundation" 510version = "0.3.1" 511source = "registry+https://github.com/rust-lang/crates.io-index" 512checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166" 513dependencies = [ 514 "bitflags 2.9.1", 515 "dispatch2", 516 "objc2", 517] 518 519[[package]] 520name = "objc2-encode" 521version = "4.1.0" 522source = "registry+https://github.com/rust-lang/crates.io-index" 523checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" 524 525[[package]] 526name = "objc2-foundation" 527version = "0.3.1" 528source = "registry+https://github.com/rust-lang/crates.io-index" 529checksum = "900831247d2fe1a09a683278e5384cfb8c80c79fe6b166f9d14bfdde0ea1b03c" 530dependencies = [ 531 "objc2", 532] 533 534[[package]] 535name = "once_cell" 536version = "1.21.3" 537source = "registry+https://github.com/rust-lang/crates.io-index" 538checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 539 540[[package]] 541name = "pkg-config" 542version = "0.3.32" 543source = "registry+https://github.com/rust-lang/crates.io-index" 544checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 545 546[[package]] 547name = "proc-macro-crate" 548version = "3.3.0" 549source = "registry+https://github.com/rust-lang/crates.io-index" 550checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35" 551dependencies = [ 552 "toml_edit", 553] 554 555[[package]] 556name = "proc-macro2" 557version = "1.0.95" 558source = "registry+https://github.com/rust-lang/crates.io-index" 559checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" 560dependencies = [ 561 "unicode-ident", 562] 563 564[[package]] 565name = "quote" 566version = "1.0.40" 567source = "registry+https://github.com/rust-lang/crates.io-index" 568checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 569dependencies = [ 570 "proc-macro2", 571] 572 573[[package]] 574name = "r-efi" 575version = "5.3.0" 576source = "registry+https://github.com/rust-lang/crates.io-index" 577checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 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.1" 646source = "registry+https://github.com/rust-lang/crates.io-index" 647checksum = "72462f680e6aa61b8a5b31a0c98c2d0f1537d9cebab68fbf42a795e3f345b64d" 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.1.0" 713dependencies = [ 714 "cpal", 715 "dasp", 716 "hound", 717 "rtrb", 718 "rtsan-standalone", 719 "simple-left-right", 720 "triple_buffer", 721] 722 723[[package]] 724name = "triple_buffer" 725version = "8.1.1" 726source = "registry+https://github.com/rust-lang/crates.io-index" 727checksum = "420466259f9fa5decc654c490b9ab538400e5420df8237f84ecbe20368bcf72b" 728dependencies = [ 729 "crossbeam-utils", 730] 731 732[[package]] 733name = "unicode-ident" 734version = "1.0.18" 735source = "registry+https://github.com/rust-lang/crates.io-index" 736checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" 737 738[[package]] 739name = "walkdir" 740version = "2.5.0" 741source = "registry+https://github.com/rust-lang/crates.io-index" 742checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 743dependencies = [ 744 "same-file", 745 "winapi-util", 746] 747 748[[package]] 749name = "wasi" 750version = "0.14.2+wasi-0.2.4" 751source = "registry+https://github.com/rust-lang/crates.io-index" 752checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" 753dependencies = [ 754 "wit-bindgen-rt", 755] 756 757[[package]] 758name = "wasm-bindgen" 759version = "0.2.100" 760source = "registry+https://github.com/rust-lang/crates.io-index" 761checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 762dependencies = [ 763 "cfg-if", 764 "once_cell", 765 "rustversion", 766 "wasm-bindgen-macro", 767] 768 769[[package]] 770name = "wasm-bindgen-backend" 771version = "0.2.100" 772source = "registry+https://github.com/rust-lang/crates.io-index" 773checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 774dependencies = [ 775 "bumpalo", 776 "log", 777 "proc-macro2", 778 "quote", 779 "syn", 780 "wasm-bindgen-shared", 781] 782 783[[package]] 784name = "wasm-bindgen-futures" 785version = "0.4.50" 786source = "registry+https://github.com/rust-lang/crates.io-index" 787checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" 788dependencies = [ 789 "cfg-if", 790 "js-sys", 791 "once_cell", 792 "wasm-bindgen", 793 "web-sys", 794] 795 796[[package]] 797name = "wasm-bindgen-macro" 798version = "0.2.100" 799source = "registry+https://github.com/rust-lang/crates.io-index" 800checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 801dependencies = [ 802 "quote", 803 "wasm-bindgen-macro-support", 804] 805 806[[package]] 807name = "wasm-bindgen-macro-support" 808version = "0.2.100" 809source = "registry+https://github.com/rust-lang/crates.io-index" 810checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 811dependencies = [ 812 "proc-macro2", 813 "quote", 814 "syn", 815 "wasm-bindgen-backend", 816 "wasm-bindgen-shared", 817] 818 819[[package]] 820name = "wasm-bindgen-shared" 821version = "0.2.100" 822source = "registry+https://github.com/rust-lang/crates.io-index" 823checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 824dependencies = [ 825 "unicode-ident", 826] 827 828[[package]] 829name = "web-sys" 830version = "0.3.77" 831source = "registry+https://github.com/rust-lang/crates.io-index" 832checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" 833dependencies = [ 834 "js-sys", 835 "wasm-bindgen", 836] 837 838[[package]] 839name = "winapi-util" 840version = "0.1.9" 841source = "registry+https://github.com/rust-lang/crates.io-index" 842checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 843dependencies = [ 844 "windows-sys 0.59.0", 845] 846 847[[package]] 848name = "windows" 849version = "0.54.0" 850source = "registry+https://github.com/rust-lang/crates.io-index" 851checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49" 852dependencies = [ 853 "windows-core", 854 "windows-targets 0.52.6", 855] 856 857[[package]] 858name = "windows-core" 859version = "0.54.0" 860source = "registry+https://github.com/rust-lang/crates.io-index" 861checksum = "12661b9c89351d684a50a8a643ce5f608e20243b9fb84687800163429f161d65" 862dependencies = [ 863 "windows-result", 864 "windows-targets 0.52.6", 865] 866 867[[package]] 868name = "windows-result" 869version = "0.1.2" 870source = "registry+https://github.com/rust-lang/crates.io-index" 871checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" 872dependencies = [ 873 "windows-targets 0.52.6", 874] 875 876[[package]] 877name = "windows-sys" 878version = "0.45.0" 879source = "registry+https://github.com/rust-lang/crates.io-index" 880checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 881dependencies = [ 882 "windows-targets 0.42.2", 883] 884 885[[package]] 886name = "windows-sys" 887version = "0.59.0" 888source = "registry+https://github.com/rust-lang/crates.io-index" 889checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 890dependencies = [ 891 "windows-targets 0.52.6", 892] 893 894[[package]] 895name = "windows-sys" 896version = "0.60.2" 897source = "registry+https://github.com/rust-lang/crates.io-index" 898checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 899dependencies = [ 900 "windows-targets 0.53.2", 901] 902 903[[package]] 904name = "windows-targets" 905version = "0.42.2" 906source = "registry+https://github.com/rust-lang/crates.io-index" 907checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 908dependencies = [ 909 "windows_aarch64_gnullvm 0.42.2", 910 "windows_aarch64_msvc 0.42.2", 911 "windows_i686_gnu 0.42.2", 912 "windows_i686_msvc 0.42.2", 913 "windows_x86_64_gnu 0.42.2", 914 "windows_x86_64_gnullvm 0.42.2", 915 "windows_x86_64_msvc 0.42.2", 916] 917 918[[package]] 919name = "windows-targets" 920version = "0.52.6" 921source = "registry+https://github.com/rust-lang/crates.io-index" 922checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 923dependencies = [ 924 "windows_aarch64_gnullvm 0.52.6", 925 "windows_aarch64_msvc 0.52.6", 926 "windows_i686_gnu 0.52.6", 927 "windows_i686_gnullvm 0.52.6", 928 "windows_i686_msvc 0.52.6", 929 "windows_x86_64_gnu 0.52.6", 930 "windows_x86_64_gnullvm 0.52.6", 931 "windows_x86_64_msvc 0.52.6", 932] 933 934[[package]] 935name = "windows-targets" 936version = "0.53.2" 937source = "registry+https://github.com/rust-lang/crates.io-index" 938checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef" 939dependencies = [ 940 "windows_aarch64_gnullvm 0.53.0", 941 "windows_aarch64_msvc 0.53.0", 942 "windows_i686_gnu 0.53.0", 943 "windows_i686_gnullvm 0.53.0", 944 "windows_i686_msvc 0.53.0", 945 "windows_x86_64_gnu 0.53.0", 946 "windows_x86_64_gnullvm 0.53.0", 947 "windows_x86_64_msvc 0.53.0", 948] 949 950[[package]] 951name = "windows_aarch64_gnullvm" 952version = "0.42.2" 953source = "registry+https://github.com/rust-lang/crates.io-index" 954checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 955 956[[package]] 957name = "windows_aarch64_gnullvm" 958version = "0.52.6" 959source = "registry+https://github.com/rust-lang/crates.io-index" 960checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 961 962[[package]] 963name = "windows_aarch64_gnullvm" 964version = "0.53.0" 965source = "registry+https://github.com/rust-lang/crates.io-index" 966checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" 967 968[[package]] 969name = "windows_aarch64_msvc" 970version = "0.42.2" 971source = "registry+https://github.com/rust-lang/crates.io-index" 972checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 973 974[[package]] 975name = "windows_aarch64_msvc" 976version = "0.52.6" 977source = "registry+https://github.com/rust-lang/crates.io-index" 978checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 979 980[[package]] 981name = "windows_aarch64_msvc" 982version = "0.53.0" 983source = "registry+https://github.com/rust-lang/crates.io-index" 984checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" 985 986[[package]] 987name = "windows_i686_gnu" 988version = "0.42.2" 989source = "registry+https://github.com/rust-lang/crates.io-index" 990checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 991 992[[package]] 993name = "windows_i686_gnu" 994version = "0.52.6" 995source = "registry+https://github.com/rust-lang/crates.io-index" 996checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 997 998[[package]] 999name = "windows_i686_gnu" 1000version = "0.53.0" 1001source = "registry+https://github.com/rust-lang/crates.io-index" 1002checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" 1003 1004[[package]] 1005name = "windows_i686_gnullvm" 1006version = "0.52.6" 1007source = "registry+https://github.com/rust-lang/crates.io-index" 1008checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 1009 1010[[package]] 1011name = "windows_i686_gnullvm" 1012version = "0.53.0" 1013source = "registry+https://github.com/rust-lang/crates.io-index" 1014checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" 1015 1016[[package]] 1017name = "windows_i686_msvc" 1018version = "0.42.2" 1019source = "registry+https://github.com/rust-lang/crates.io-index" 1020checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 1021 1022[[package]] 1023name = "windows_i686_msvc" 1024version = "0.52.6" 1025source = "registry+https://github.com/rust-lang/crates.io-index" 1026checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 1027 1028[[package]] 1029name = "windows_i686_msvc" 1030version = "0.53.0" 1031source = "registry+https://github.com/rust-lang/crates.io-index" 1032checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" 1033 1034[[package]] 1035name = "windows_x86_64_gnu" 1036version = "0.42.2" 1037source = "registry+https://github.com/rust-lang/crates.io-index" 1038checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 1039 1040[[package]] 1041name = "windows_x86_64_gnu" 1042version = "0.52.6" 1043source = "registry+https://github.com/rust-lang/crates.io-index" 1044checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 1045 1046[[package]] 1047name = "windows_x86_64_gnu" 1048version = "0.53.0" 1049source = "registry+https://github.com/rust-lang/crates.io-index" 1050checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" 1051 1052[[package]] 1053name = "windows_x86_64_gnullvm" 1054version = "0.42.2" 1055source = "registry+https://github.com/rust-lang/crates.io-index" 1056checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 1057 1058[[package]] 1059name = "windows_x86_64_gnullvm" 1060version = "0.52.6" 1061source = "registry+https://github.com/rust-lang/crates.io-index" 1062checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 1063 1064[[package]] 1065name = "windows_x86_64_gnullvm" 1066version = "0.53.0" 1067source = "registry+https://github.com/rust-lang/crates.io-index" 1068checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" 1069 1070[[package]] 1071name = "windows_x86_64_msvc" 1072version = "0.42.2" 1073source = "registry+https://github.com/rust-lang/crates.io-index" 1074checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 1075 1076[[package]] 1077name = "windows_x86_64_msvc" 1078version = "0.52.6" 1079source = "registry+https://github.com/rust-lang/crates.io-index" 1080checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 1081 1082[[package]] 1083name = "windows_x86_64_msvc" 1084version = "0.53.0" 1085source = "registry+https://github.com/rust-lang/crates.io-index" 1086checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" 1087 1088[[package]] 1089name = "winnow" 1090version = "0.7.12" 1091source = "registry+https://github.com/rust-lang/crates.io-index" 1092checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95" 1093dependencies = [ 1094 "memchr", 1095] 1096 1097[[package]] 1098name = "wit-bindgen-rt" 1099version = "0.39.0" 1100source = "registry+https://github.com/rust-lang/crates.io-index" 1101checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" 1102dependencies = [ 1103 "bitflags 2.9.1", 1104]