[package]
edition = "2024"
name = "ftui-core"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal lifecycle, capabilities, and event parsing for FrankenTUI."
homepage = "https://github.com/Dicklesworthstone/frankentui"
documentation = "https://docs.rs/ftui-core"
readme = "README.md"
license = "MIT"
repository = "https://github.com/Dicklesworthstone/frankentui"
resolver = "2"
[features]
caps-probe = []
default = []
tracing = ["dep:tracing"]
tracing-json = [
"tracing",
"dep:tracing-subscriber",
]
[lib]
name = "ftui_core"
path = "src/lib.rs"
[[test]]
name = "animation_test"
path = "tests/animation_test.rs"
[[test]]
name = "input_parity_test"
path = "tests/input_parity_test.rs"
[dependencies.bitflags]
version = "2.10.0"
[dependencies.crossterm]
version = "0.29.0"
[dev-dependencies.portable-pty]
version = "0.9.0"
[dev-dependencies.proptest]
version = "1"
[target."cfg(unix)".dependencies.signal-hook]
version = "0.4.3"
features = ["iterator"]
[target."cfg(unix)".dependencies.tracing]
version = "0.1"
optional = true
[target."cfg(unix)".dependencies.tracing-subscriber]
version = "0.3"
features = [
"json",
"env-filter",
]
optional = true