mirror of
https://codeberg.org/unspeaker/tengri.git
synced 2025-12-06 11:46:42 +01:00
19 lines
539 B
TOML
19 lines
539 B
TOML
[package]
|
|
name = "tengri_output"
|
|
description = "UI metaframework, output layer."
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
|
|
[features]
|
|
dsl = [ "tengri_dsl" ]
|
|
|
|
[dependencies]
|
|
tengri_core = { path = "../core" }
|
|
tengri_dsl = { optional = true, path = "../dsl" }
|
|
|
|
[dev-dependencies]
|
|
tengri = { path = "../tengri", features = [ "dsl", "tui" ] }
|
|
tengri_tui = { path = "../tui" }
|
|
tengri_dsl = { path = "../dsl" }
|
|
proptest = { workspace = true }
|
|
proptest-derive = { workspace = true }
|