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

2
.gitmodules vendored
View file

@ -3,5 +3,5 @@
url = https://codeberg.org/unspeaker/rust-jack
branch = timebase
[submodule "tengri"]
path = tengri
path = deps/tengri
url = ../tengri/

8
Cargo.lock generated
View file

@ -193,9 +193,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
version = "4.5.36"
version = "4.5.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2df961d8c8a0d08aa9945718ccf584145eee3f3aa06cddbeac12933781102e04"
checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071"
dependencies = [
"clap_builder",
"clap_derive",
@ -203,9 +203,9 @@ dependencies = [
[[package]]
name = "clap_builder"
version = "4.5.36"
version = "4.5.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "132dbda40fb6753878316a489d5a1242a8ef2f0d9e47ba01c951ea8aa7d013a5"
checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2"
dependencies = [
"anstream",
"anstyle",

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" }

Some files were not shown because too many files have changed in this diff Show more