[package]
edition = "2021"
name = "rwatch"
version = "0.1.2"
authors = ["David H. Frankel"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A modern, cross-platform Rust alternative to 'watch', with color, diff, and more. Periodically runs a command and displays its output fullscreen, with diff, color, beep, and more."
documentation = "https://docs.rs/rwatch"
readme = "README.md"
keywords = [
"watch",
"cli",
"terminal",
"diff",
"color",
]
categories = [
"command-line-utilities",
"development-tools::debugging",
"os::unix-apis",
]
license = "MIT"
repository = "https://github.com/davidhfrankelcodes/rwatch"
[[bin]]
name = "rwatch"
path = "src/main.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
default-features = false
[dependencies.clap]
version = "4.1"
features = ["derive"]
[dependencies.crossterm]
version = "0.26"
[dependencies.difference]
version = "2.0"
[dependencies.regex]
version = "1"
[dependencies.shell-words]
version = "1.1"