[package] name = "tek" edition = "2021" version = "0.2.0" [dependencies] tek_tui = { path = "./tui" } atomic_float = "1.0.0" backtrace = "0.3.72" clap = { version = "4.5.4", features = [ "derive" ] } jack = { path = "./rust-jack" } livi = "0.7.4" midly = "0.5" once_cell = "1.19.0" palette = { version = "0.7.6", features = [ "random" ] } quanta = "0.12.3" 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 = ["tek_input", "tek_output", "tek_edn"] tek_input = [ "tek_tui/tek_input" ] tek_output = [ "tek_tui/tek_output" ] tek_edn = [ "tek_tui/tek_edn" ] [[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