watchexec/crates/filterer/globset/Cargo.toml
Félix Saparelli 6c23afe839
feat: make it possible to watch non-recursively (#827)
Fixes #227
Fixes #174

docs(cli): be more precise in print-events advice to use `-v`
docs(cli): improve jaq error help
feat(cli): add `-W` for non-recursive watches
feat(cli): use non-blocking logging
feat(globset): hide `fmt::Debug` spew from ignore crate
feat(ignore-files): hide `fmt::Debug` spew from ignore crate
feat(lib): make it possible to watch non-recursively
fix(lib): inserting `WatchedPath`s directly should be possible
refactor(lib): move `WatchedPath` out of `fs` mod
2024-04-28 06:33:07 +00:00

56 lines
1.1 KiB
TOML

[package]
name = "watchexec-filterer-globset"
version = "4.0.0"
authors = ["Matt Green <mattgreenrocks@gmail.com>", "Félix Saparelli <felix@passcod.name>"]
license = "Apache-2.0"
description = "Watchexec filterer component based on globset"
keywords = ["watchexec", "filterer", "globset"]
documentation = "https://docs.rs/watchexec-filterer-globset"
homepage = "https://watchexec.github.io"
repository = "https://github.com/watchexec/watchexec"
readme = "README.md"
rust-version = "1.61.0"
edition = "2021"
[dependencies]
ignore = "0.4.18"
tracing = "0.1.40"
[dependencies.ignore-files]
version = "3.0.0"
path = "../../ignore-files"
[dependencies.watchexec]
version = "4.0.0"
path = "../../lib"
[dependencies.watchexec-events]
version = "3.0.0"
path = "../../events"
[dependencies.watchexec-filterer-ignore]
version = "4.0.0"
path = "../ignore"
[dev-dependencies]
tracing-subscriber = "0.3.6"
[dev-dependencies.tokio]
version = "1.33.0"
features = [
"fs",
"io-std",
"rt",
"rt-multi-thread",
"macros",
]
[features]
default = []
## Don't hide ignore::gitignore::Gitignore Debug impl
full_debug = []