mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 19:56:42 +01:00
32 lines
725 B
TOML
32 lines
725 B
TOML
[package]
|
|
name = "tek"
|
|
edition = { workspace = true }
|
|
version = { workspace = true }
|
|
|
|
[dependencies]
|
|
tengri = { workspace = true }
|
|
tengri_proc = { workspace = true }
|
|
|
|
tek_config = { workspace = true }
|
|
tek_device = { workspace = true }
|
|
tek_engine = { workspace = true }
|
|
|
|
backtrace = { workspace = true }
|
|
clap = { workspace = true, optional = true }
|
|
konst = { workspace = true }
|
|
palette = { workspace = true }
|
|
rand = { workspace = true }
|
|
toml = { workspace = true }
|
|
xdg = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
proptest = { workspace = true }
|
|
proptest-derive = { workspace = true }
|
|
|
|
[features]
|
|
default = ["cli"]
|
|
cli = ["clap"]
|
|
host = ["tek_device/lv2"]
|
|
|
|
[lib]
|
|
path = "app.rs"
|