mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-07 12:16:42 +01:00
26 lines
517 B
TOML
26 lines
517 B
TOML
[package]
|
|
name = "tek_mixer"
|
|
edition = "2021"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
tek_core = { path = "../tek_core" }
|
|
tek_jack = { path = "../tek_jack" }
|
|
tek_sampler = { path = "../tek_sampler", optional = true }
|
|
tek_plugin = { path = "../tek_plugin", optional = true }
|
|
|
|
[features]
|
|
standalone_devices = [ "sampler", "plugin" ]
|
|
sampler = [ "tek_sampler" ]
|
|
plugin = [ "tek_plugin" ]
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "tek_mixer"
|
|
path = "src/mixer_main.rs"
|
|
|
|
[[bin]]
|
|
name = "tek_track"
|
|
path = "src/track_main.rs"
|