mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 11:46:41 +01:00
wip: refactor into fewer crates
This commit is contained in:
parent
c367a0444e
commit
77703d83a5
105 changed files with 64 additions and 131 deletions
18
Cargo.toml
18
Cargo.toml
|
|
@ -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" }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue