2021-04-30 17:27:17 +02:00
|
|
|
[package]
|
|
|
|
name = "watchexec"
|
2023-11-29 06:41:27 +01:00
|
|
|
version = "3.0.1"
|
2021-04-30 17:27:17 +02:00
|
|
|
|
2024-04-20 12:06:53 +02:00
|
|
|
authors = ["Félix Saparelli <felix@passcod.name>", "Matt Green <mattgreenrocks@gmail.com>"]
|
2021-04-30 17:27:17 +02:00
|
|
|
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
|
|
|
|
2023-01-06 14:53:49 +01:00
|
|
|
rust-version = "1.61.0"
|
2021-10-19 13:51:33 +02:00
|
|
|
edition = "2021"
|
2021-04-30 17:27:17 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2024-01-04 10:13:08 +01:00
|
|
|
async-priority-channel = "0.2.0"
|
2023-11-25 21:33:44 +01:00
|
|
|
async-recursion = "1.0.5"
|
2021-08-22 16:37:13 +02:00
|
|
|
atomic-take = "1.0.0"
|
2023-11-25 21:33:44 +01:00
|
|
|
futures = "0.3.29"
|
2024-04-20 07:45:50 +02:00
|
|
|
miette = "7.2.0"
|
2023-11-25 21:33:44 +01:00
|
|
|
notify = "6.0.0"
|
2021-08-22 08:56:57 +02:00
|
|
|
once_cell = "1.8.0"
|
2023-11-25 21:33:44 +01:00
|
|
|
thiserror = "1.0.44"
|
2023-01-06 14:53:49 +01:00
|
|
|
normalize-path = "0.2.0"
|
2021-04-30 17:27:17 +02:00
|
|
|
|
2024-04-20 06:58:17 +02:00
|
|
|
[dependencies.process-wrap]
|
|
|
|
version = "8.0.0"
|
|
|
|
features = ["tokio1"]
|
2021-08-16 17:09:22 +02:00
|
|
|
|
2023-03-18 09:32:24 +01:00
|
|
|
[dependencies.watchexec-events]
|
2023-11-29 06:56:23 +01:00
|
|
|
version = "2.0.1"
|
2023-03-18 09:32:24 +01:00
|
|
|
path = "../events"
|
|
|
|
|
|
|
|
[dependencies.watchexec-signals]
|
2023-12-09 11:25:41 +01:00
|
|
|
version = "2.1.0"
|
2023-03-18 09:32:24 +01:00
|
|
|
path = "../signals"
|
|
|
|
|
2023-11-25 21:33:44 +01:00
|
|
|
[dependencies.watchexec-supervisor]
|
2023-12-19 12:31:34 +01:00
|
|
|
version = "1.0.3"
|
2023-11-25 21:33:44 +01:00
|
|
|
path = "../supervisor"
|
|
|
|
|
2022-06-15 05:25:05 +02:00
|
|
|
[dependencies.ignore-files]
|
2024-01-04 12:32:58 +01:00
|
|
|
version = "2.1.0"
|
2022-06-15 05:25:05 +02:00
|
|
|
path = "../ignore-files"
|
|
|
|
|
|
|
|
[dependencies.project-origins]
|
2024-01-01 07:07:03 +01:00
|
|
|
version = "1.3.0"
|
2022-06-15 05:25:05 +02:00
|
|
|
path = "../project-origins"
|
2022-03-14 00:50:46 +01:00
|
|
|
|
2021-08-16 11:49:12 +02:00
|
|
|
[dependencies.tokio]
|
2023-11-25 21:33:44 +01:00
|
|
|
version = "1.33.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",
|
|
|
|
"process",
|
|
|
|
"rt",
|
|
|
|
"rt-multi-thread",
|
|
|
|
"signal",
|
|
|
|
"sync",
|
2021-10-15 03:27:17 +02:00
|
|
|
]
|
2021-04-30 17:27:17 +02:00
|
|
|
|
2022-06-07 14:15:17 +02:00
|
|
|
[dependencies.tracing]
|
2023-11-25 21:33:44 +01:00
|
|
|
version = "0.1.40"
|
2022-06-07 14:15:17 +02:00
|
|
|
features = ["log"]
|
|
|
|
|
2023-02-14 23:11:57 +01:00
|
|
|
[target.'cfg(unix)'.dependencies.nix]
|
2024-04-20 07:45:50 +02:00
|
|
|
version = "0.28.0"
|
2023-02-14 23:11:57 +01:00
|
|
|
features = ["signal"]
|
|
|
|
|
2023-11-25 21:33:44 +01:00
|
|
|
[dev-dependencies.tracing-subscriber]
|
|
|
|
version = "0.3.6"
|
|
|
|
features = ["env-filter"]
|