flash-watcher 0.1.1

An impossibly fast file watcher that executes commands when files change
[[bench]]
harness = false
name = "file_watcher"
path = "benches/file_watcher.rs"

[[bin]]
name = "flash-watcher"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.chrono]
version = "0.4"

[dependencies.clap]
features = ["derive"]
version = "4.5.37"

[dependencies.colored]
version = "3.0"

[dependencies.glob]
version = "0.3"

[dependencies.notify]
features = ["serde"]
version = "8.0"

[dependencies.notify-debouncer-mini]
version = "0.6"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.sysinfo]
version = "0.30.5"

[dependencies.walkdir]
version = "2.4"

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.tempfile]
version = "3.9"

[dev-dependencies.which]
version = "5.0"

[package]
authors = ["Brayden Moon <crazywolf132@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools", "filesystem"]
description = "An impossibly fast file watcher that executes commands when files change"
documentation = "https://github.com/sage-scm/Flash"
edition = "2021"
homepage = "https://github.com/sage-scm/Flash"
keywords = ["file-watcher", "cli", "development", "automation", "rust"]
license = "MIT"
name = "flash-watcher"
readme = "README.md"
repository = "https://github.com/sage-scm/Flash"
version = "0.1.1"

[[test]]
name = "bench_results"
path = "tests/bench_results.rs"

[[test]]
name = "command_runner"
path = "tests/command_runner.rs"

[[test]]
name = "config"
path = "tests/config.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[[test]]
name = "path_filtering"
path = "tests/path_filtering.rs"