wip: refactor into fewer crates

This commit is contained in:
🪞👃🪞 2025-05-01 17:39:29 +03:00
parent c367a0444e
commit 77703d83a5
105 changed files with 64 additions and 131 deletions

View file

@ -5,13 +5,10 @@ version = "0.2.1"
[workspace]
resolver = "2"
members = [
"./crates/engine",
"./crates/device",
"./crates/app",
"./crates/cli",
"./crates/jack",
"./crates/midi",
"./crates/plugin",
"./crates/sampler",
"./crates/time"
]
exclude = [
"./deps/tengri"
@ -37,13 +34,10 @@ path = "./deps/rust-jack"
#default-features = false
[workspace.dependencies]
tek = { path = "./crates/app" }
tek_cli = { path = "./crates/cli" }
tek_jack = { path = "./crates/jack" }
tek_midi = { path = "./crates/midi" }
tek_plugin = { path = "./crates/plugin", default-features = false }
tek_sampler = { path = "./crates/sampler" }
tek_time = { path = "./crates/time" }
tek_device = { path = "./crates/device" }
tek_engine = { path = "./crates/engine" }
tek = { path = "./crates/app" }
tek_cli = { path = "./crates/cli" }
atomic_float = { version = "1.0.0" }
backtrace = { version = "0.3.72" }