watchexec/Cargo.toml

56 lines
1.2 KiB
TOML

[package]
name = "watchexec"
version = "1.13.1"
authors = ["Matt Green <mattgreenrocks@gmail.com>"]
description = "Executes commands in response to file modifications"
documentation = "https://github.com/watchexec/watchexec"
homepage = "https://github.com/watchexec/watchexec"
repository = "https://github.com/watchexec/watchexec"
readme = "README.md"
keywords = ["watcher", "inotify", "fsevents", "kqueue"]
categories = ["command-line-utilities"]
license = "Apache-2.0"
exclude = ["/ci/*", "/pkg/*", "/.travis.yml", "/Makefile", "/appveyor.yml"]
edition = "2018"
[badges]
appveyor = { repository = "watchexec/watchexec" }
travis-ci = { repository = "watchexec/watchexec" }
[profile.dev]
panic = "abort"
[profile.release]
lto = true
panic = "abort"
[dependencies]
glob = "0.3.0"
globset = "0.4.5"
lazy_static = "1.1.0"
log = "0.4.4"
notify = "4.0.15"
derive_builder = "0.9.0"
walkdir = "2.3.1"
[dependencies.clap]
version = "2.33.1"
default-features = false
features = ["wrap_help"]
[dependencies.env_logger]
version = "0.7.1"
default-features = false
features = []
[target.'cfg(unix)'.dependencies]
nix = "0.17.0"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3.9"
features = ["ioapiset", "jobapi2", "tlhelp32"]
[[bin]]
name = "watchexec"
doc = false