[package]
name = "watchdiff-tui"
version = "0.2.0"
edition = "2021"
authors = ["xicv <xicv@users.noreply.github.com>"]
description = "A high-performance file watcher with beautiful TUI showing real-time diffs"
homepage = "https://github.com/xicv/watchdiff"
repository = "https://github.com/xicv/watchdiff"
readme = "README.md"
license = "MIT"
keywords = ["file-watcher", "tui", "diff", "monitoring", "development"]
categories = ["command-line-utilities", "development-tools", "filesystem"]
rust-version = "1.70.0"
[dependencies]
notify = "6.1"
ignore = "0.4"
ratatui = "0.28"
crossterm = "0.28"
clap = { version = "4.5", features = ["derive"] }
similar = "2.6"
syntect = "5.2"
tokio = { version = "1.0", features = ["full"] }
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = "0.3"
ctrlc = "3.4"
chrono = { version = "0.4", features = ["serde"] }
[dev-dependencies]
tempfile = "3.8"