watchexec/cli/Cargo.toml

51 lines
1.3 KiB
TOML
Raw Normal View History

[package]
name = "watchexec-cli"
2021-07-10 10:08:45 +02:00
version = "1.16.2"
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"
edition = "2018"
[[bin]]
name = "watchexec"
path = "src/main.rs"
[dependencies]
log = "0.4.14"
2021-07-10 10:08:23 +02:00
watchexec = { path = "../lib", version = "1.16.1" }
color-eyre = "0.5.11"
[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"
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"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/cli-v{ version }/watchexec-{ version }-{ target }.tar.xz"
bin-dir = "watchexec-{ version }-{ target }/{ bin }{ format }"
pkg-fmt = "txz"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/cli-v{ version }/watchexec-{ version }-{ target }.zip"
pkg-fmt = "zip"