2016-09-14 15:30:59 +02:00
|
|
|
[package]
|
2016-09-18 22:42:11 +02:00
|
|
|
name = "watchexec"
|
2018-09-09 05:01:18 +02:00
|
|
|
version = "1.9.1"
|
2016-09-14 15:30:59 +02:00
|
|
|
authors = ["Matt Green <mattgreenrocks@gmail.com>"]
|
2016-10-18 03:21:26 +02:00
|
|
|
description = "Executes commands in response to file modifications"
|
2018-08-21 05:12:00 +02:00
|
|
|
documentation = "https://github.com/watchexec/watchexec"
|
|
|
|
homepage = "https://github.com/watchexec/watchexec"
|
|
|
|
repository = "https://github.com/watchexec/watchexec"
|
2016-10-18 03:21:26 +02:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["watcher", "inotify", "fsevents", "kqueue"]
|
2017-02-05 19:18:22 +01:00
|
|
|
categories = ["command-line-utilities"]
|
2016-10-18 03:21:26 +02:00
|
|
|
license = "Apache-2.0"
|
2016-09-14 15:30:59 +02:00
|
|
|
|
2018-08-21 05:12:00 +02:00
|
|
|
[badges]
|
|
|
|
appveyor = { repository = "watchexec/watchexec" }
|
|
|
|
travis-ci = { repository = "watchexec/watchexec" }
|
|
|
|
|
2016-11-11 01:43:13 +01:00
|
|
|
[profile.dev]
|
|
|
|
panic = "abort"
|
|
|
|
|
2016-09-18 22:42:11 +02:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
2016-11-11 01:43:13 +01:00
|
|
|
panic = "abort"
|
2016-09-18 22:42:11 +02:00
|
|
|
|
2016-09-14 15:30:59 +02:00
|
|
|
[dependencies]
|
2016-09-21 23:02:20 +02:00
|
|
|
glob = "0.2.11"
|
2018-08-19 10:58:47 +02:00
|
|
|
globset = "0.4.1"
|
|
|
|
lazy_static = "1.1.0"
|
|
|
|
log = "0.4.4"
|
2017-08-26 21:07:06 +02:00
|
|
|
notify = "4.0"
|
2016-09-18 22:42:11 +02:00
|
|
|
|
2016-10-25 13:05:53 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
mktemp = "0.3.1"
|
|
|
|
|
2016-09-18 22:42:11 +02:00
|
|
|
[dependencies.clap]
|
2017-09-15 01:25:55 +02:00
|
|
|
version = "2.26"
|
2016-09-18 22:42:11 +02:00
|
|
|
default-features = false
|
|
|
|
features = ["wrap_help"]
|
2016-10-14 15:33:23 +02:00
|
|
|
|
|
|
|
[dependencies.env_logger]
|
2018-08-19 10:58:47 +02:00
|
|
|
version = "0.5.12"
|
2016-10-14 15:33:23 +02:00
|
|
|
default-features = false
|
|
|
|
features = []
|
2016-10-22 21:37:03 +02:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
2018-07-30 21:20:12 +02:00
|
|
|
nix = "0.11.0"
|
2016-10-22 21:37:03 +02:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = "0.2.8"
|
|
|
|
kernel32-sys = "0.2.2"
|
2017-06-03 05:16:45 +02:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "watchexec"
|
|
|
|
doc = false
|