collect crates/ and deps/

This commit is contained in:
🪞👃🪞 2025-04-19 01:23:43 +03:00
parent 2f8882f6cd
commit 8fa0f8a409
140 changed files with 23 additions and 21 deletions

View file

@ -1,14 +1,16 @@
[workspace]
resolver = "2"
exclude = [ "./tengri" ]
members = [
"./app",
"./cli",
"./jack",
"./midi",
"./plugin",
"./sampler",
"./time"
"./crates/app",
"./crates/cli",
"./crates/jack",
"./crates/midi",
"./crates/plugin",
"./crates/sampler",
"./crates/time"
]
exclude = [
"./deps/tengri"
]
[profile.release]
@ -19,19 +21,19 @@ inherits = "test"
lto = false
[workspace.dependencies.tengri]
path = "./tengri/tengri"
path = "./deps/tengri/tengri"
#git = "https://codeberg.org/unspeaker/tengri"
#rev = "6048d24"
features = [ "tui", "dsl" ]
[workspace.dependencies]
tek = { path = "./app" }
tek_cli = { path = "./cli" }
tek_jack = { path = "./jack" }
tek_midi = { path = "./midi" }
tek_plugin = { path = "./plugin", default-features = false }
tek_sampler = { path = "./sampler" }
tek_time = { path = "./time" }
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" }
atomic_float = { version = "1.0.0" }
backtrace = { version = "0.3.72" }