watchexec/Cargo.toml

67 lines
1.5 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"
2021-04-30 14:27:44 +02:00
version = "1.15.3"
authors = ["Matt Green <mattgreenrocks@gmail.com>", "Félix Saparelli <felix@passcod.name>"]
license = "Apache-2.0"
2016-10-18 03:21:26 +02:00
description = "Executes commands in response to file modifications"
keywords = ["watcher", "inotify", "fsevents", "kqueue"]
categories = ["command-line-utilities"]
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"
2016-09-14 15:30:59 +02:00
edition = "2018"
exclude = ["/pkg", "/bin", "/.github"]
2016-11-11 01:43:13 +01:00
[[bin]]
name = "watchexec"
2016-09-18 22:42:11 +02:00
2016-09-14 15:30:59 +02:00
[dependencies]
2021-04-10 19:51:33 +02:00
derive_builder = "0.10.0"
2019-10-28 07:02:57 +01:00
glob = "0.3.0"
2021-04-10 19:51:33 +02:00
globset = "0.4.6"
2018-08-19 10:58:47 +02:00
lazy_static = "1.1.0"
2021-04-10 19:51:33 +02:00
log = "0.4.14"
2020-06-04 09:38:49 +02:00
notify = "4.0.15"
2021-04-10 19:51:33 +02:00
walkdir = "2.3.2"
2016-09-18 22:42:11 +02:00
[dependencies.clap]
2021-04-10 19:51:33 +02:00
version = "2.33.3"
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]
2021-04-10 19:51:33 +02:00
version = "0.8.3"
2016-10-14 15:33:23 +02:00
default-features = false
features = []
2016-10-22 21:37:03 +02:00
[target.'cfg(unix)'.dependencies]
2021-04-10 19:51:33 +02:00
nix = "0.20.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
[build-dependencies]
2021-04-10 19:51:33 +02:00
embed-resource = "1.6.1"
[profile.dev]
panic = "abort"
[profile.release]
lto = true
panic = "abort"
codegen-units = 1
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/{ version }/{ name }-{ version }-{ target }.tar.xz"
bin-dir = "{ name }-{ version }-{ target }/{ bin }{ format }"
pkg-fmt = "txz"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/{ version }/{ name }-{ version }-{ target }.zip"
pkg-fmt = "zip"