mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-16 17:18:30 +01:00
47 lines
1,003 B
TOML
47 lines
1,003 B
TOML
[package]
|
|
name = "watchexec"
|
|
version = "1.7.0"
|
|
authors = ["Matt Green <mattgreenrocks@gmail.com>"]
|
|
description = "Executes commands in response to file modifications"
|
|
documentation = "https://github.com/mattgreen/watchexec"
|
|
homepage = "https://github.com/mattgreen/watchexec"
|
|
repository = "https://github.com/mattgreen/watchexec"
|
|
readme = "README.md"
|
|
keywords = ["watcher", "inotify", "fsevents", "kqueue"]
|
|
categories = ["command-line-utilities"]
|
|
license = "Apache-2.0"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
panic = "abort"
|
|
|
|
[dependencies]
|
|
glob = "0.2.11"
|
|
globset = "0.1"
|
|
lazy_static = "0.2.1"
|
|
libc = "0.2.16"
|
|
log = "0.3.6"
|
|
notify = "3.0.0"
|
|
|
|
[dev-dependencies]
|
|
mktemp = "0.3.1"
|
|
|
|
[dependencies.clap]
|
|
version = "~2.19.2"
|
|
default-features = false
|
|
features = ["wrap_help"]
|
|
|
|
[dependencies.env_logger]
|
|
version = "0.3.5"
|
|
default-features = false
|
|
features = []
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix = "0.7.0"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = "0.2.8"
|
|
kernel32-sys = "0.2.2"
|