mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 11:46:41 +01:00
24 lines
638 B
TOML
24 lines
638 B
TOML
[package]
|
|
name = "tek_device"
|
|
edition = { workspace = true }
|
|
version = { workspace = true }
|
|
|
|
[dependencies]
|
|
tengri = { workspace = true }
|
|
tek_engine = { workspace = true }
|
|
uuid = { workspace = true, optional = true }
|
|
livi = { workspace = true, optional = true }
|
|
symphonia = { workspace = true, optional = true }
|
|
wavers = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
default = [ "clock", "sequencer", "sampler" ]
|
|
clock = []
|
|
sampler = [ "symphonia", "wavers" ]
|
|
sequencer = [ "clock", "uuid" ]
|
|
plugin = [] # temporary
|
|
lv2 = [ "livi" ]
|
|
vst2 = []
|
|
vst3 = []
|
|
clap = []
|
|
sf2 = []
|