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