[package]
edition = "2024"
name = "ftui-tty"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native Unix terminal backend for FrankenTUI (replaces Crossterm)."
homepage = "https://github.com/Dicklesworthstone/frankentui"
documentation = "https://docs.rs/ftui-tty"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/Dicklesworthstone/frankentui"
resolver = "2"
[lib]
name = "ftui_tty"
path = "src/lib.rs"
[[test]]
name = "proptest_tty_invariants"
path = "tests/proptest_tty_invariants.rs"
[dependencies.ftui-backend]
version = "0.2.1"
[dependencies.ftui-core]
version = "0.2.1"
[dependencies.ftui-render]
version = "0.2.1"
[dev-dependencies.portable-pty]
version = "0.9.0"
[dev-dependencies.proptest]
version = "1.6.0"
[target."cfg(unix)".dependencies.nix]
version = "0.31.1"
features = [
"term",
"poll",
]
[target."cfg(unix)".dependencies.rustix]
version = "1.1.3"
features = [
"termios",
"fs",
]
[target."cfg(unix)".dependencies.signal-hook]
version = "0.4.3"
features = ["iterator"]