[package]
edition = "2024"
name = "ftui-core"
version = "0.1.1"
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 = []
test-helpers = []
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"
[[test]]
name = "pty_terminal_session"
path = "tests/pty_terminal_session.rs"
[dependencies.bitflags]
version = "2.10.0"
[dependencies.crossterm]
version = "0.29.0"
[dependencies.unicode-display-width]
version = "0.3.0"
[dependencies.unicode-segmentation]
version = "1.12.0"
[dependencies.unicode-width]
version = "0.2.2"
[dev-dependencies.portable-pty]
version = "0.9.0"
[dev-dependencies.proptest]
version = "1.7.0"
[target."cfg(unix)".dependencies.signal-hook]
version = "0.4.3"
features = ["iterator"]
[target."cfg(unix)".dependencies.tracing]
version = "0.1.41"
optional = true
[target."cfg(unix)".dependencies.tracing-subscriber]
version = "0.3.20"
features = [
"json",
"env-filter",
]
optional = true