old school music tracker audio backend
at dev 29 lines 778 B view raw
1[package] 2name = "torque-tracker-engine" 3version = "0.2.0" 4edition = "2024" 5authors = ["Lucas Baumann"] 6rust-version = "1.89" 7license = "MPL-2.0" 8description = "Audio Backend for Torque Tracker, an old school music tracker" 9keywords = ["audio", "interactive"] 10categories = ["multimedia::audio"] 11repository = "https://tangled.sh/did:plc:54jgbo4psy24qu2bk4njtpc4/torque-tracker-engine" 12 13[dependencies] 14dasp = { version = "0.11.0", default-features = false, features = ["std"] } 15rtrb = "0.3.1" 16rtsan-standalone = "0.2.0" 17simple-left-right = "0.2.3" 18triomphe = {version = "0.1.15", default-features = false } 19rt-write-lock = "0.1.0" 20 21[dev-dependencies] 22hound = "3.5.1" 23cpal = "0.16.0" 24 25[lints.rust] 26elided_lifetimes_in_paths = "warn" 27 28[lints.clippy] 29uninlined_format_args = "allow"