mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 19:56:42 +01:00
Some checks failed
/ build (push) Has been cancelled
the definitions are unified alright. it's just not supported yet :D the idea being that tek offers to write out the default configs to ~/.config/tek-v0 where the user can customize them.
61 lines
1.5 KiB
TOML
61 lines
1.5 KiB
TOML
[workspace.package]
|
|
edition = "2021"
|
|
version = "0.2.1"
|
|
|
|
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"./crates/engine",
|
|
"./crates/device",
|
|
"./crates/app",
|
|
"./crates/cli",
|
|
]
|
|
exclude = [
|
|
"./deps/tengri"
|
|
]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
|
|
[profile.coverage]
|
|
inherits = "test"
|
|
lto = false
|
|
|
|
[workspace.dependencies.tengri]
|
|
path = "./deps/tengri/tengri"
|
|
features = [ "tui", "dsl" ]
|
|
|
|
[workspace.dependencies.tengri_proc]
|
|
path = "./deps/tengri/proc"
|
|
|
|
[workspace.dependencies.jack]
|
|
path = "./deps/rust-jack"
|
|
|
|
[workspace.dependencies]
|
|
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" }
|
|
clap = { version = "4.5.4", features = [ "derive" ] }
|
|
gtk = { version = "0.18.1" }
|
|
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.9.2" }
|
|
uuid = { version = "1.10.0", features = [ "v4" ] }
|
|
wavers = { version = "1.4.3" }
|
|
winit = { version = "0.30.4", features = [ "x11" ] }
|
|
xdg = { version = "3.0.0" }
|
|
#once_cell = "1.19.0"
|
|
#no_deadlocks = "1.3.2"
|
|
#suil-rs = { path = "../suil" }
|
|
#vst = "0.4.0"
|
|
#vst3 = "0.1.0"
|
|
proptest = { version = "^1" }
|
|
proptest-derive = { version = "^0.5.1" }
|