watchexec/Cargo.toml

51 lines
1.0 KiB
TOML
Raw Normal View History

2016-09-14 15:30:59 +02:00
[package]
2016-09-18 22:42:11 +02:00
name = "watchexec"
2018-08-19 11:31:46 +02:00
version = "1.9.0"
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"
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"]
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
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"
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]
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