watchexec/crates/filterer/ignore/Cargo.toml

47 lines
937 B
TOML
Raw Normal View History

2022-06-15 05:25:05 +02:00
[package]
name = "watchexec-filterer-ignore"
2022-06-16 10:17:04 +02:00
version = "1.0.0-almost-there"
2022-06-15 05:25:05 +02:00
authors = ["Félix Saparelli <felix@passcod.name>"]
license = "Apache-2.0"
description = "Watchexec filterer component for ignore files"
keywords = ["watchexec", "filterer", "ignore"]
documentation = "https://docs.rs/watchexec-filterer-ignore"
homepage = "https://watchexec.github.io"
repository = "https://github.com/watchexec/watchexec"
readme = "README.md"
rust-version = "1.58.0"
edition = "2021"
[dependencies]
ignore = "0.4.18"
tracing = "0.1.26"
[dependencies.ignore-files]
version = "1.0.0"
2022-06-15 05:25:05 +02:00
path = "../../ignore-files"
[dependencies.watchexec]
version = "2.0.0"
path = "../../lib"
2022-06-15 05:25:05 +02:00
[dev-dependencies]
dunce = "1.0.2"
tracing-subscriber = "0.3.6"
[dev-dependencies.project-origins]
version = "1.0.0"
2022-06-15 05:25:05 +02:00
path = "../../project-origins"
[dev-dependencies.tokio]
version = "1.19.2"
features = [
"fs",
"io-std",
"rt",
"rt-multi-thread",
"macros",
]