[package]
edition = "2024"
name = "watch-and-commit"
version = "1.0.1"
authors = ["Rodolfo Villaruz <rodolfo@yes.ph>"]
build = false
exclude = [
".github/",
"tests/",
".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI tool that automatically stages and commits file changes using a filesystem watcher"
homepage = "https://github.com/rodolfovillaruz/watch-and-commit"
documentation = "https://docs.rs/watch-and-commit"
readme = "README.md"
keywords = [
"git",
"automation",
"watcher",
"cli",
"commit",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/rodolfovillaruz/watch-and-commit"
[[bin]]
name = "wac"
path = "src/main.rs"
[dependencies.notify]
version = "8.2.0"
[dependencies.tokio]
version = "1.47.1"
features = ["full"]