tengri/tengri/Cargo.toml
unspeaker a4dbf88220
Some checks are pending
/ build (push) Waiting to run
perf: use mold
2025-09-08 00:31:18 +03:00

27 lines
826 B
TOML

[package]
name = "tengri"
edition = "2024"
description = "UI metaframework."
version = { workspace = true }
[features]
default = [ "input", "output", "tui" ]
input = [ "tengri_input" ]
output = [ "tengri_output" ]
tui = [ "tengri_tui" ]
dsl = [ "tengri_dsl", "tengri_output/dsl", "tengri_tui/dsl" ]
[dependencies]
tengri_core = { workspace = true }
tengri_dsl = { optional = true, path = "../dsl" }
tengri_input = { optional = true, path = "../input" }
tengri_output = { optional = true, path = "../output" }
tengri_tui = { optional = true, path = "../tui" }
[dev-dependencies]
tengri_proc = { path = "../proc" }
tengri = { path = ".", features = [ "dsl" ] }
crossterm = { workspace = true }
[target.'cfg(target_os = "linux")']
rustflags = ["-C", "link-arg=-fuse-ld=mold"]