[package]
edition = "2018"
name = "ptytest"
version = "0.2.0"
authors = ["Dan Aloni <alonid@gmail.com>"]
build = false
include = [
"Cargo.toml",
"src/**/*.rs",
"crates-io.md",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Easy testing of terminal programs by terminal screen compare"
homepage = "https://github.com/da-x/ptytest"
readme = "crates-io.md"
keywords = [
"pty",
"test",
"terminal",
"cli",
]
categories = [
"command-line-interface",
"development-tools::testing",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/da-x/ptytest"
[lib]
name = "ptytest"
path = "src/lib.rs"
[dependencies.difference]
version = "2.0.0"
[dependencies.log]
version = "0.4"
[dependencies.pty-process]
version = "0.5.3"
features = ["async"]
[dependencies.tokio]
version = "1.0"
features = ["full"]
[dependencies.vt100]
version = "0.16"
[dev-dependencies.rustyline]
version = "18"