[package]
edition = "2024"
rust-version = "1.93"
name = "terminal-control"
version = "0.3.0"
build = false
include = [
"/src/**",
"/schemas/**",
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Control and test terminal applications through stable visible state"
readme = "README.md"
keywords = [
"terminal",
"tui",
"testing",
"automation",
"ansi",
]
categories = [
"command-line-utilities",
"development-tools::testing",
]
license = "MIT"
repository = "https://github.com/kitlangton/terminal-control"
[lib]
name = "terminal_control"
path = "src/lib.rs"
[[bin]]
name = "termctrl"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.portable-pty]
version = "0.9.0"
[dependencies.resvg]
version = "0.47.0"
features = [
"text",
"system-fonts",
"memmap-fonts",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.vt100]
version = "0.16.2"
[target."cfg(unix)".dependencies.libc]
version = "0.2"