watchexec/Cargo.toml

48 lines
1003 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"
2017-05-18 19:23:24 +02:00
version = "1.8.4"
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"
globset = "0.1"
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-11-03 22:20:43 +01:00
notify = "3.0.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-04-25 01:42:47 +02:00
version = "~2.22.2"
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"