mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 19:56:42 +01:00
refactor: merge plugin, sampler -> mixer; transport -> sequencer; time -> core
This commit is contained in:
parent
6206a43b4a
commit
a659062dbc
46 changed files with 128 additions and 198 deletions
|
|
@ -6,13 +6,14 @@ 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" ]
|
||||
livi = "0.7.4"
|
||||
suil-rs = { path = "../suil" }
|
||||
symphonia = { version = "0.5.4", features = [ "all" ] }
|
||||
vst = "0.4.0"
|
||||
#vst3 = "0.1.0"
|
||||
wavers = "1.4.3"
|
||||
winit = { version = "0.30.4", features = [ "x11" ] }
|
||||
|
||||
[lib]
|
||||
path = "src/lib.rs"
|
||||
|
|
@ -24,3 +25,11 @@ path = "src/mixer_main.rs"
|
|||
[[bin]]
|
||||
name = "tek_track"
|
||||
path = "src/track_main.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "tek_sampler"
|
||||
path = "src/sampler_main.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "tek_plugin"
|
||||
path = "src/sampler_main.rs"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue