mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 19:56:42 +01:00
28 lines
682 B
TOML
28 lines
682 B
TOML
[package]
|
|
name = "tek"
|
|
edition = { workspace = true }
|
|
version = { workspace = true }
|
|
|
|
[dependencies]
|
|
tengri = { workspace = true }
|
|
|
|
tek_jack = { workspace = true }
|
|
tek_time = { workspace = true }
|
|
tek_midi = { workspace = true }
|
|
tek_sampler = { workspace = true }
|
|
tek_plugin = { workspace = true, optional = true }
|
|
|
|
backtrace = { workspace = true }
|
|
clap = { workspace = true, optional = true }
|
|
palette = { workspace = true }
|
|
rand = { workspace = true }
|
|
toml = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
proptest = { workspace = true }
|
|
proptest-derive = { workspace = true }
|
|
|
|
[features]
|
|
default = ["cli"]
|
|
cli = ["clap"]
|
|
host = ["tek_plugin"]
|