mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 11:46:41 +01:00
collect crates/ and deps/
This commit is contained in:
parent
2f8882f6cd
commit
8fa0f8a409
140 changed files with 23 additions and 21 deletions
34
Cargo.toml
34
Cargo.toml
|
|
@ -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" }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue