2021-04-30 17:27:17 +02:00
|
|
|
[package]
|
|
|
|
name = "watchexec"
|
2021-07-21 15:36:33 +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"
|
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
|
|
|
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-08-16 11:49:12 +02:00
|
|
|
miette = "0.7.0"
|
|
|
|
notify = "5.0.0-pre.11"
|
|
|
|
thiserror = "1.0.26"
|
|
|
|
tracing = "0.1.26"
|
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-08-19 11:28:56 +02:00
|
|
|
derive_builder = "0.10.2"
|
2021-08-19 16:55:34 +02:00
|
|
|
atomic-take = "1.0.0"
|
2021-04-30 17:27:17 +02:00
|
|
|
|
2021-08-16 17:09:22 +02:00
|
|
|
[dependencies.command-group]
|
|
|
|
version = "1.0.5"
|
|
|
|
features = ["with-tokio"]
|
|
|
|
|
2021-08-16 11:49:12 +02:00
|
|
|
[dependencies.tokio]
|
|
|
|
version = "1.10.0"
|
|
|
|
features = ["full"]
|
2021-04-30 17:27:17 +02:00
|
|
|
|
2021-08-16 15:15:17 +02:00
|
|
|
[dev-dependencies]
|
2021-08-16 15:37:01 +02:00
|
|
|
color-eyre = "0.5.11"
|
2021-08-16 15:15:17 +02:00
|
|
|
tracing-subscriber = "0.2.19"
|