[package]
edition = "2024"
name = "scriptty"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A PTY scripting engine for automating interactive terminal sessions"
readme = "README.md"
keywords = [
"pty",
"terminal",
"automation",
"scripting",
"tty",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/justpresident/scriptty"
[lib]
name = "scriptty"
path = "src/lib.rs"
[[bin]]
name = "scriptty"
path = "src/main.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.portable-pty]
version = "0.8"
[dependencies.rand]
version = "0.8"
[dependencies.tokio]
version = "1"
features = ["full"]