mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 03:36:41 +01:00
wip: centralize dependencies
This commit is contained in:
parent
4229364363
commit
5b61c71503
8 changed files with 76 additions and 84 deletions
39
Cargo.toml
39
Cargo.toml
|
|
@ -16,3 +16,42 @@ lto = true
|
|||
[profile.coverage]
|
||||
inherits = "test"
|
||||
lto = false
|
||||
|
||||
[workspace.dependencies.tengri]
|
||||
git = "https://codeberg.org/unspeaker/tengri"
|
||||
rev = "d30eda33d1"
|
||||
features = [ "tui", "dsl" ]
|
||||
|
||||
[workspace.dependencies]
|
||||
tek = { path = "./app" }
|
||||
tek_cli = { path = "./cli" }
|
||||
tek_jack = { path = "./jack" }
|
||||
tek_midi = { path = "./midi" }
|
||||
tek_plugin = { path = "./plugin" }
|
||||
tek_sampler = { path = "./sampler" }
|
||||
tek_time = { path = "./time" }
|
||||
|
||||
atomic_float = { version = "1.0.0" }
|
||||
backtrace = { version = "0.3.72" }
|
||||
clap = { version = "4.5.4", features = [ "derive" ] }
|
||||
gtk = { version = "0.18.1" }
|
||||
jack = { git = "https://codeberg.org/unspeaker/rust-jack", ref = "a13c1c4" }
|
||||
livi = { version = "0.7.4" }
|
||||
midly = { version = "0.5" }
|
||||
palette = { version = "0.7.6", features = [ "random" ] }
|
||||
quanta = { version = "0.12.3" }
|
||||
rand = { version = "0.8.5" }
|
||||
symphonia = { version = "0.5.4", features = [ "all" ] }
|
||||
toml = { version = "0.8.12" }
|
||||
uuid = { version = "1.10.0", features = [ "v4" ] }
|
||||
wavers = { version = "1.4.3" }
|
||||
#once_cell = "1.19.0"
|
||||
#no_deadlocks = "1.3.2"
|
||||
#suil-rs = { path = "../suil" }
|
||||
#vst = "0.4.0"
|
||||
#vst3 = "0.1.0"
|
||||
#winit = { version = "0.30.4", features = [ "x11" ] }
|
||||
|
||||
[workspace.dev-dependencies]
|
||||
proptest = "^1"
|
||||
proptest-derive = "^0.5.1"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue