[package]
name = "termwright"
version = "0.2.0"
edition = "2024"
rust-version = "1.85.0"
license = "MIT"
description = "Playwright-like automation framework for terminal TUI applications"
repository = "https://github.com/fcoury/termwright"
keywords = ["terminal", "tui", "automation", "testing", "pty"]
categories = ["development-tools::testing", "command-line-interface"]
[dependencies]
portable-pty = "0.8"
vt100 = "0.15"
tokio = { version = "1", features = ["rt-multi-thread", "time", "sync", "io-util", "net", "macros"] }
thiserror = "2"
regex = "1"
tracing = "0.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
base64 = "0.22"
chrono = { version = "0.4", features = ["clock"] }
clap = { version = "4", features = ["derive"] }
ab_glyph = "0.2"
font-kit = "0.14"
image = "0.25"
imageproc = "0.25"
[dev-dependencies]
tokio-test = "0.4"
tempfile = "3"