wip: multi-crate refactor

This commit is contained in:
🪞👃🪞 2024-12-27 14:46:35 +01:00
parent 911c47fc7c
commit e08a79b507
25 changed files with 311 additions and 265 deletions

40
crates/cli/Cargo.toml Normal file
View file

@ -0,0 +1,40 @@
[package]
name = "tek_cli"
edition = "2021"
version = "0.2.0"
[dependencies]
tek = { path = "../tek" }
clap = { version = "4.5.4", features = [ "derive" ] }
[[bin]]
name = "tek_arranger"
path = "src/cli_arranger.rs"
[[bin]]
name = "tek_sequencer"
path = "src/cli_sequencer.rs"
[[bin]]
name = "tek_groovebox"
path = "src/cli_groovebox.rs"
[[bin]]
name = "tek_transport"
path = "src/cli_transport.rs"
[[bin]]
name = "tek_sampler"
path = "src/cli_sampler.rs"
#[[bin]]
#name = "tek_mixer"
#path = "src/cli_mixer.rs"
#[[bin]]
#name = "tek_track"
#path = "src/cli_track.rs"
#[[bin]]
#name = "tek_plugin"
#path = "src/cli_plugin.rs"