2021-04-30 17:27:17 +02:00
|
|
|
[package]
|
|
|
|
name = "watchexec-cli"
|
2021-07-30 20:37:29 +02:00
|
|
|
version = "1.17.1"
|
2021-04-30 17:27:17 +02:00
|
|
|
|
|
|
|
authors = ["Matt Green <mattgreenrocks@gmail.com>", "Félix Saparelli <felix@passcod.name>"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
description = "Executes commands in response to file modifications"
|
|
|
|
keywords = ["watcher", "filesystem", "cli", "watchexec"]
|
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
|
2021-07-21 14:13:59 +02:00
|
|
|
documentation = "https://watchexec.github.io/docs/#watchexec"
|
|
|
|
homepage = "https://watchexec.github.io"
|
2021-04-30 17:27:17 +02:00
|
|
|
repository = "https://github.com/watchexec/watchexec"
|
2021-05-08 17:39:13 +02:00
|
|
|
readme = "README.md"
|
2021-04-30 17:27:17 +02:00
|
|
|
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "watchexec"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = "0.4.14"
|
2021-08-16 11:49:22 +02:00
|
|
|
watchexec = "1.17.1"
|
2021-07-16 15:33:04 +02:00
|
|
|
color-eyre = "0.5.11"
|
2021-07-30 19:11:42 +02:00
|
|
|
notify-rust = "4.5.2"
|
2021-04-30 17:27:17 +02:00
|
|
|
|
|
|
|
[dependencies.clap]
|
|
|
|
version = "2.33.3"
|
|
|
|
default-features = false
|
|
|
|
features = ["wrap_help"]
|
|
|
|
|
|
|
|
[dependencies.env_logger]
|
2021-07-21 13:57:31 +02:00
|
|
|
version = "0.9.0"
|
2021-04-30 17:27:17 +02:00
|
|
|
default-features = false
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
embed-resource = "1.6.1"
|
|
|
|
|
2021-05-10 13:02:31 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
assert_cmd = "1.0.3"
|
|
|
|
insta = "1.7.1"
|
|
|
|
|
2021-04-30 17:27:17 +02:00
|
|
|
[package.metadata.binstall]
|
2021-04-30 18:22:33 +02:00
|
|
|
pkg-url = "{ repo }/releases/download/cli-v{ version }/watchexec-{ version }-{ target }.tar.xz"
|
2021-04-30 17:27:17 +02:00
|
|
|
bin-dir = "watchexec-{ version }-{ target }/{ bin }{ format }"
|
|
|
|
pkg-fmt = "txz"
|
|
|
|
|
|
|
|
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
|
2021-04-30 18:22:33 +02:00
|
|
|
pkg-url = "{ repo }/releases/download/cli-v{ version }/watchexec-{ version }-{ target }.zip"
|
2021-04-30 17:27:17 +02:00
|
|
|
pkg-fmt = "zip"
|
2021-06-27 13:55:40 +02:00
|
|
|
|
|
|
|
[package.metadata.deb]
|
|
|
|
maintainer = "Félix Saparelli <felix@passcod.name>"
|
|
|
|
license-file = ["../LICENSE", "0"]
|
|
|
|
section = "utility"
|
|
|
|
# conf-files = [] # look me up when config file lands
|
|
|
|
assets = [
|
|
|
|
["../target/release/watchexec", "usr/bin/", "755"],
|
|
|
|
["README.md", "usr/share/doc/watchexec/README", "644"],
|
|
|
|
["../doc/watchexec.1.html", "usr/share/doc/watchexec/watchexec.1.html", "644"],
|
|
|
|
["../doc/watchexec.1", "usr/share/man/man1/watchexec.1.html", "644"],
|
|
|
|
["../completions/zsh", "usr/share/zsh/site-functions/_watchexec", "644"],
|
|
|
|
["../doc/logo.svg", "usr/share/icons/hicolor/scalable/apps/watchexec.svg", "644"],
|
|
|
|
]
|
|
|
|
|
2021-06-27 13:55:56 +02:00
|
|
|
[package.metadata.generate-rpm]
|
|
|
|
assets = [
|
2021-07-21 16:14:03 +02:00
|
|
|
{ source = "../target/release/watchexec", dest = "/usr/bin/", mode = "755" },
|
|
|
|
{ source = "../cli/README.md", dest = "/usr/share/doc/watchexec/README", mode = "644", doc = true },
|
|
|
|
{ source = "../doc/watchexec.1.html", dest = "/usr/share/doc/watchexec/watchexec.1.html", mode = "644", doc = true },
|
|
|
|
{ source = "../doc/watchexec.1", dest = "/usr/share/man/man1/watchexec.1.html", mode = "644" },
|
|
|
|
{ source = "../completions/zsh", dest = "/usr/share/zsh/site-functions/_watchexec", mode = "644" },
|
|
|
|
{ source = "../doc/logo.svg", dest = "/usr/share/icons/hicolor/scalable/apps/watchexec.svg", mode = "644" },
|
2021-06-27 13:55:56 +02:00
|
|
|
# set conf = true for config file when that lands
|
|
|
|
]
|