mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 19:56:42 +01:00
21 lines
447 B
TOML
21 lines
447 B
TOML
[package]
|
|
name = "tek_mixer"
|
|
edition = "2021"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
tek_core = { path = "../tek_core" }
|
|
tek_jack = { path = "../tek_jack" }
|
|
tek_chain = { path = "../tek_chain" }
|
|
tek_sampler = { path = "../tek_sampler", optional = true }
|
|
tek_plugin = { path = "../tek_plugin", optional = true }
|
|
|
|
[features]
|
|
standalone_devices = [ "tek_sampler", "tek_plugin" ]
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "tek_mixer"
|
|
path = "src/main.rs"
|