2021-04-30 17:27:17 +02:00
|
|
|
[package]
|
|
|
|
name = "watchexec"
|
2021-12-21 06:19:16 +01:00
|
|
|
version = "2.0.0-pre.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"
|
2021-04-30 17:47:22 +02:00
|
|
|
description = "Library to execute commands in response to file modifications"
|
2021-04-30 17:27:17 +02:00
|
|
|
keywords = ["watcher", "filesystem", "watchexec"]
|
|
|
|
|
2021-07-21 14:13:59 +02:00
|
|
|
documentation = "https://docs.rs/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
|
|
|
|
2021-10-19 13:48:47 +02:00
|
|
|
rust-version = "1.56.0"
|
2021-10-19 13:51:33 +02:00
|
|
|
edition = "2021"
|
2021-04-30 17:27:17 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2021-08-22 16:37:13 +02:00
|
|
|
async-recursion = "0.3.2"
|
2021-10-10 12:35:11 +02:00
|
|
|
async-stream = "0.3.2"
|
2021-08-22 16:37:13 +02:00
|
|
|
atomic-take = "1.0.0"
|
|
|
|
clearscreen = "1.0.6"
|
2021-08-16 15:15:17 +02:00
|
|
|
dunce = "1.0.2"
|
2021-08-18 15:12:50 +02:00
|
|
|
futures = "0.3.16"
|
2021-09-14 10:09:57 +02:00
|
|
|
globset = "0.4.8"
|
2021-10-12 14:49:38 +02:00
|
|
|
ignore = "0.4.18"
|
2021-10-09 07:43:51 +02:00
|
|
|
miette = "3.2.0"
|
2021-09-14 10:09:57 +02:00
|
|
|
nom = "7.0.0"
|
2021-10-16 06:25:21 +02:00
|
|
|
notify = "5.0.0-pre.13"
|
2021-08-22 08:56:57 +02:00
|
|
|
once_cell = "1.8.0"
|
2021-09-13 09:51:07 +02:00
|
|
|
regex = "1.5.4"
|
2021-08-22 16:37:13 +02:00
|
|
|
thiserror = "1.0.26"
|
|
|
|
tracing = "0.1.26"
|
2021-09-29 15:34:27 +02:00
|
|
|
unicase = "2.6.0"
|
2021-04-30 17:27:17 +02:00
|
|
|
|
2021-08-16 17:09:22 +02:00
|
|
|
[dependencies.command-group]
|
2021-10-16 08:08:35 +02:00
|
|
|
version = "1.0.8"
|
2021-08-16 17:09:22 +02:00
|
|
|
features = ["with-tokio"]
|
|
|
|
|
2021-10-15 03:27:17 +02:00
|
|
|
[dependencies.git2]
|
|
|
|
version = "0.13.22"
|
|
|
|
default-features = false
|
|
|
|
|
2021-08-16 11:49:12 +02:00
|
|
|
[dependencies.tokio]
|
2021-12-23 14:28:21 +01:00
|
|
|
version = "1.15.0"
|
2021-10-16 06:25:21 +02:00
|
|
|
features = [
|
2021-10-15 03:27:17 +02:00
|
|
|
"fs",
|
2021-10-16 06:25:21 +02:00
|
|
|
"io-std",
|
|
|
|
"parking_lot",
|
|
|
|
"process",
|
|
|
|
"rt",
|
|
|
|
"rt-multi-thread",
|
|
|
|
"signal",
|
|
|
|
"sync",
|
2021-10-15 03:27:17 +02:00
|
|
|
]
|
2021-04-30 17:27:17 +02:00
|
|
|
|
2021-10-10 12:35:11 +02:00
|
|
|
[dependencies.tokio-stream]
|
|
|
|
version = "0.1.7"
|
|
|
|
features = ["fs"]
|
|
|
|
|
2021-10-21 18:38:48 +02:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
libc = "0.2.104"
|
|
|
|
|
2021-08-16 15:15:17 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
tracing-subscriber = "0.2.19"
|