tek/Cargo.toml
unspeaker 71c519b711
Some checks are pending
/ build (push) Waiting to run
wip: bringing it back from the dead once again
2025-07-19 08:42:25 +03:00

60 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" ] }
#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" }