[package] name = "tek" edition = "2021" version = "0.2.0" [dependencies] tek_tui = { path = "./tui" } tek_jack = { path = "./jack" } tek_midi = { path = "./midi" } backtrace = "0.3.72" clap = { version = "4.5.4", features = [ "derive" ] } livi = "0.7.4" once_cell = "1.19.0" palette = { version = "0.7.6", features = [ "random" ] } rand = "0.8.5" symphonia = { version = "0.5.4", features = [ "all" ] } toml = "0.8.12" uuid = { version = "1.10.0", features = [ "v4" ] } wavers = "1.4.3" #no_deadlocks = "1.3.2" #suil-rs = { path = "../suil" } #vst = "0.4.0" #vst3 = "0.1.0" #winit = { version = "0.30.4", features = [ "x11" ] } [features] default = [] [[bin]] name = "tek" path = "bin/tek.rs" #[[bin]] #name = "tek_arranger" #path = "bin/cli_arranger.rs" #[[bin]] #name = "tek_sequencer" #path = "bin/cli_sequencer.rs" #[[bin]] #name = "tek_groovebox" #path = "bin/cli_groovebox.rs" #[[bin]] #name = "tek_clock" #path = "bin/cli_clock.rs" #[[bin]] #name = "tek_sampler" #path = "bin/cli_sampler.rs" #[[bin]] #name = "tek_mixer" #path = "src/cli_mixer.rs" #[[bin]] #name = "tek_track" #path = "src/cli_track.rs" #[[bin]] #name = "tek_plugin" #path = "src/cli_plugin.rs" [lib] path = "src/lib.rs" [profile.release] lto = true