watchexec/crates/cli/Cargo.toml

201 lines
5.3 KiB
TOML
Raw Normal View History

[package]
name = "watchexec-cli"
2024-04-30 10:41:43 +02:00
version = "2.1.1"
authors = ["Félix Saparelli <felix@passcod.name>", "Matt Green <mattgreenrocks@gmail.com>"]
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"
repository = "https://github.com/watchexec/watchexec"
2021-05-08 17:39:13 +02:00
readme = "README.md"
2021-10-19 13:51:33 +02:00
edition = "2021"
[[bin]]
name = "watchexec"
path = "src/main.rs"
[dependencies]
2024-04-20 12:06:53 +02:00
ahash = "0.8.6" # needs to be in sync with jaq's
2024-04-20 07:45:50 +02:00
argfile = "0.2.0"
chrono = "0.4.31"
clap_complete = "4.4.4"
clap_complete_nushell = "4.4.2"
clap_mangen = "0.2.15"
2024-04-20 07:45:50 +02:00
clearscreen = "3.0.0"
2024-04-20 12:06:53 +02:00
dashmap = "5.4.0"
dirs = "5.0.0"
futures = "0.3.29"
humantime = "2.1.0"
2024-04-20 12:06:53 +02:00
indexmap = "2.2.6" # needs to be in sync with jaq's
is-terminal = "0.4.4"
2024-04-20 12:06:53 +02:00
jaq-core = "1.2.1"
jaq-interpret = "1.2.1"
jaq-parse = "1.0.2"
jaq-std = "1.2.1"
jaq-syn = "1.1.0"
notify-rust = "4.9.0"
2024-04-20 12:06:53 +02:00
once_cell = "1.17.1"
serde_json = "1.0.107"
tempfile = "3.8.1"
termcolor = "1.4.0"
tracing = "0.1.40"
tracing-appender = "0.2.3"
2024-04-20 07:45:50 +02:00
which = "6.0.1"
2023-03-18 09:32:24 +01:00
2024-04-20 12:06:53 +02:00
[dependencies.blake3]
version = "1.3.3"
features = ["rayon"]
[dependencies.command-group]
version = "2.1.0"
features = ["with-tokio"]
[dependencies.clap]
version = "4.4.7"
features = ["cargo", "derive", "env", "wrap_help"]
[dependencies.console-subscriber]
version = "0.2.0"
optional = true
2023-12-13 02:08:03 +01:00
[dependencies.eyra]
version = "0.16.8"
features = ["log", "env_logger"]
optional = true
2022-06-15 05:25:05 +02:00
[dependencies.ignore-files]
2024-04-28 08:50:18 +02:00
version = "3.0.1"
2022-06-15 05:25:05 +02:00
path = "../ignore-files"
2023-03-18 09:32:24 +01:00
[dependencies.miette]
2024-04-20 07:45:50 +02:00
version = "7.2.0"
2023-03-18 09:32:24 +01:00
features = ["fancy"]
[dependencies.pid1]
version = "0.1.1"
optional = true
2022-06-15 05:25:05 +02:00
[dependencies.project-origins]
2024-04-28 08:45:52 +02:00
version = "1.4.0"
2022-06-15 05:25:05 +02:00
path = "../project-origins"
2022-06-16 10:17:04 +02:00
[dependencies.watchexec]
2024-04-28 08:51:48 +02:00
version = "4.1.0"
2022-06-16 10:17:04 +02:00
path = "../lib"
2023-03-18 09:32:24 +01:00
[dependencies.watchexec-events]
2024-04-20 14:21:04 +02:00
version = "3.0.0"
2023-03-18 09:32:24 +01:00
path = "../events"
features = ["serde"]
[dependencies.watchexec-signals]
2024-04-20 14:13:30 +02:00
version = "3.0.0"
2023-03-18 09:32:24 +01:00
path = "../signals"
2022-06-16 10:17:04 +02:00
[dependencies.watchexec-filterer-globset]
2024-04-28 08:53:42 +02:00
version = "4.0.1"
2022-06-16 10:17:04 +02:00
path = "../filterer/globset"
[dependencies.tokio]
version = "1.33.0"
2021-10-16 06:25:21 +02:00
features = [
"fs",
2021-10-16 06:25:21 +02:00
"io-std",
"process",
"rt",
"rt-multi-thread",
"signal",
"sync",
]
2021-12-23 14:35:26 +01:00
[dependencies.tracing-subscriber]
2022-01-18 10:14:34 +01:00
version = "0.3.6"
2021-12-23 14:35:26 +01:00
features = [
"env-filter",
"fmt",
"json",
"tracing-log",
"ansi",
2021-12-23 14:35:26 +01:00
]
2021-10-15 03:27:32 +02:00
[target.'cfg(target_env = "musl")'.dependencies]
mimalloc = "0.1.39"
[build-dependencies]
embed-resource = "2.4.0"
[build-dependencies.bosion]
2024-04-20 14:12:21 +02:00
version = "1.0.3"
path = "../bosion"
2024-04-20 12:06:53 +02:00
[dev-dependencies]
tracing-test = "0.2.4"
uuid = { workspace = true, features = [ "v4", "fast-rng" ] }
rand = { workspace = true }
2021-09-28 14:47:18 +02:00
[features]
default = ["pid1"]
2023-12-13 02:08:03 +01:00
## Build using Eyra's pure-Rust libc
eyra = ["dep:eyra"]
## Enables PID1 handling.
pid1 = ["dep:pid1"]
## Enables logging for PID1 handling.
pid1-withlog = ["pid1"]
2022-02-04 04:46:49 +01:00
## For debugging only: enables the Tokio Console.
2023-12-13 02:08:03 +01:00
dev-console = ["dep:console-subscriber"]
2021-09-28 14:47:18 +02:00
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/watchexec-{ version }-{ target }.{ archive-format }"
2022-08-24 09:19:02 +02:00
bin-dir = "watchexec-{ version }-{ target }/{ bin }{ binary-ext }"
pkg-fmt = "txz"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"
[package.metadata.deb]
maintainer = "Félix Saparelli <felix@passcod.name>"
license-file = ["../../LICENSE", "0"]
section = "utility"
depends = "libc6, libgcc-s1" # not needed for musl, but see below
# conf-files = [] # look me up when config file lands
assets = [
["../../target/release/watchexec", "usr/bin/watchexec", "755"],
["README.md", "usr/share/doc/watchexec/README", "644"],
["../../doc/watchexec.1.md", "usr/share/doc/watchexec/watchexec.1.md", "644"],
["../../doc/watchexec.1", "usr/share/man/man1/watchexec.1.html", "644"],
["../../completions/bash", "usr/share/bash-completion/completions/watchexec", "644"],
["../../completions/fish", "usr/share/fish/vendor_completions.d/watchexec.fish", "644"],
["../../completions/zsh", "usr/share/zsh/site-functions/_watchexec", "644"],
["../../doc/logo.svg", "usr/share/icons/hicolor/scalable/apps/watchexec.svg", "644"],
]
[package.metadata.generate-rpm]
assets = [
{ source = "../../target/release/watchexec", dest = "/usr/bin/watchexec", mode = "755" },
{ source = "README.md", dest = "/usr/share/doc/watchexec/README", mode = "644", doc = true },
{ source = "../../doc/watchexec.1.md", dest = "/usr/share/doc/watchexec/watchexec.1.md", mode = "644", doc = true },
{ source = "../../doc/watchexec.1", dest = "/usr/share/man/man1/watchexec.1.html", mode = "644" },
{ source = "../../completions/bash", dest = "/usr/share/bash-completion/completions/watchexec", mode = "644" },
{ source = "../../completions/fish", dest = "/usr/share/fish/vendor_completions.d/watchexec.fish", 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" },
# set conf = true for config file when that lands
]
auto-req = "disabled"
# technically incorrect when using musl, but these are probably
# present on every rpm-using system, so let's worry about it if
# someone asks.
[package.metadata.generate-rpm.requires]
glibc = "*"
libgcc = "*"