watchexec/Cargo.toml

59 lines
1.3 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"
2020-09-30 06:16:54 +02:00
version = "1.14.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"
exclude = ["/ci/*", "/pkg/*", "/.travis.yml", "/Makefile", "/appveyor.yml"]
2019-10-27 11:58:00 +01:00
edition = "2018"
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]
2019-10-28 07:02:57 +01:00
glob = "0.3.0"
2020-06-04 09:38:49 +02:00
globset = "0.4.5"
2018-08-19 10:58:47 +02:00
lazy_static = "1.1.0"
log = "0.4.4"
2020-06-04 09:38:49 +02:00
notify = "4.0.15"
2019-11-19 07:06:43 +01:00
derive_builder = "0.9.0"
2020-03-06 11:28:29 +01:00
walkdir = "2.3.1"
2016-09-18 22:42:11 +02:00
[dependencies.clap]
2020-06-04 09:38:49 +02:00
version = "2.33.1"
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]
2019-10-28 07:02:57 +01:00
version = "0.7.1"
2016-10-14 15:33:23 +02:00
default-features = false
features = []
2016-10-22 21:37:03 +02:00
[target.'cfg(unix)'.dependencies]
2020-06-04 09:38:49 +02:00
nix = "0.17.0"
2016-10-22 21:37:03 +02:00
2019-10-28 00:16:05 +01:00
[target.'cfg(windows)'.dependencies.winapi]
2020-07-03 14:51:51 +02:00
version = "0.3.9"
2019-10-28 00:16:05 +01:00
features = ["ioapiset", "jobapi2", "tlhelp32"]
2017-06-03 05:16:45 +02:00
[[bin]]
name = "watchexec"
doc = false
[build-dependencies]
embed-resource = "1.3.3"