2021-04-30 17:27:17 +02:00
|
|
|
[package]
|
|
|
|
name = "watchexec-cli"
|
2021-05-08 16:21:07 +02:00
|
|
|
version = "1.16.0"
|
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"]
|
|
|
|
|
|
|
|
documentation = "https://github.com/watchexec/watchexec"
|
|
|
|
homepage = "https://github.com/watchexec/watchexec"
|
|
|
|
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-05-08 17:54:06 +02:00
|
|
|
watchexec = { path = "../lib", version = "1.16.0" }
|
2021-04-30 17:27:17 +02:00
|
|
|
|
|
|
|
[dependencies.clap]
|
|
|
|
version = "2.33.3"
|
|
|
|
default-features = false
|
|
|
|
features = ["wrap_help"]
|
|
|
|
|
|
|
|
[dependencies.env_logger]
|
|
|
|
version = "0.8.3"
|
|
|
|
default-features = false
|
|
|
|
features = []
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
embed-resource = "1.6.1"
|
|
|
|
|
|
|
|
[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"
|