watchexec/crates/lib/Cargo.toml

62 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "watchexec"
version = "2.0.2"
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"
keywords = ["watcher", "filesystem", "watchexec"]
2021-07-21 14:13:59 +02:00
documentation = "https://docs.rs/watchexec"
homepage = "https://watchexec.github.io"
repository = "https://github.com/watchexec/watchexec"
2021-05-08 17:39:13 +02:00
readme = "README.md"
2023-01-06 14:53:49 +01:00
rust-version = "1.61.0"
2021-10-19 13:51:33 +02:00
edition = "2021"
[dependencies]
async-priority-channel = "0.1.0"
2022-01-18 10:14:34 +01:00
async-recursion = "1.0.0"
2021-08-22 16:37:13 +02:00
atomic-take = "1.0.0"
2021-12-23 14:35:26 +01:00
clearscreen = "1.0.9"
2021-08-18 15:12:50 +02:00
futures = "0.3.16"
miette = "5.3.0"
once_cell = "1.8.0"
2021-08-22 16:37:13 +02:00
thiserror = "1.0.26"
2023-01-06 14:53:49 +01:00
normalize-path = "0.2.0"
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"]
2022-06-15 05:25:05 +02:00
[dependencies.ignore-files]
version = "1.0.1"
2022-06-15 05:25:05 +02:00
path = "../ignore-files"
2022-03-14 00:50:46 +01:00
[dependencies.notify]
2022-09-02 11:12:47 +02:00
version = "5.0.0"
2022-06-15 05:25:05 +02:00
[dependencies.project-origins]
version = "1.1.1"
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]
version = "1.19.2"
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",
]
2022-06-07 14:15:17 +02:00
[dependencies.tracing]
version = "0.1.26"
features = ["log"]
2021-08-16 15:15:17 +02:00
[dev-dependencies]
2022-01-18 10:14:34 +01:00
tracing-subscriber = "0.3.6"