mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 19:56:42 +01:00
wip: refactor into api and app
This commit is contained in:
parent
051c3d3663
commit
70fc3c97d1
61 changed files with 453 additions and 255 deletions
47
crates/tek_app/Cargo.toml
Normal file
47
crates/tek_app/Cargo.toml
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
[package]
|
||||
name = "tek_app"
|
||||
edition = "2021"
|
||||
version = "0.1.0"
|
||||
|
||||
[dependencies]
|
||||
tek_core = { path = "../tek_core" }
|
||||
tek_api = { path = "../tek_api" }
|
||||
|
||||
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"
|
||||
|
||||
[[bin]]
|
||||
name = "tek_mixer"
|
||||
path = "src/mixer_cli.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "tek_track"
|
||||
path = "src/track_cli.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "tek_sampler"
|
||||
path = "src/sampler_cli.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "tek_plugin"
|
||||
path = "src/plugin_cli.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "tek_sequencer"
|
||||
path = "src/sequencer_cli.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "tek_arranger"
|
||||
path = "src/arranger_cli.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "tek_transport"
|
||||
path = "src/transport_cli.rs"
|
||||
Loading…
Add table
Add a link
Reference in a new issue