watchexec/Cargo.toml

42 lines
897 B
TOML
Raw Normal View History

2016-09-14 15:30:59 +02:00
[package]
2016-09-18 22:42:11 +02:00
name = "watchexec"
2016-11-03 21:17:58 +01:00
version = "1.3.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"]
license = "Apache-2.0"
2016-09-14 15:30:59 +02:00
2016-09-18 22:42:11 +02:00
[profile.release]
lto = true
2016-09-14 15:30:59 +02:00
[dependencies]
2016-09-21 23:02:20 +02:00
glob = "0.2.11"
2016-10-22 21:37:03 +02:00
lazy_static = "0.2.1"
libc = "0.2.16"
2016-10-13 23:59:46 +02:00
log = "0.3.6"
2016-09-18 22:42:11 +02:00
notify = "2.6.3"
2016-10-25 13:05:53 +02:00
[dev-dependencies]
mktemp = "0.3.1"
2016-09-18 22:42:11 +02:00
[dependencies.clap]
2016-10-12 15:12:33 +02:00
version = "2.14"
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]
version = "0.3.5"
default-features = false
features = []
2016-10-22 21:37:03 +02:00
[target.'cfg(unix)'.dependencies]
nix = "0.7.0"
2016-10-22 21:37:03 +02:00
[target.'cfg(windows)'.dependencies]
winapi = "0.2.8"
kernel32-sys = "0.2.2"