watchexec/crates/ignore-files/Cargo.toml

49 lines
921 B
TOML
Raw Permalink Normal View History

2022-06-15 05:25:05 +02:00
[package]
name = "ignore-files"
2024-04-28 08:50:18 +02:00
version = "3.0.1"
2022-06-15 05:25:05 +02:00
authors = ["Félix Saparelli <felix@passcod.name>"]
license = "Apache-2.0"
description = "Find, parse, and interpret ignore files"
keywords = ["ignore", "files", "discover", "find"]
documentation = "https://docs.rs/ignore-files"
repository = "https://github.com/watchexec/watchexec"
readme = "README.md"
rust-version = "1.58.0"
edition = "2021"
[dependencies]
futures = "0.3.29"
2024-04-20 07:45:50 +02:00
gix-config = "0.36.1"
2023-01-06 14:53:49 +01:00
ignore = "0.4.18"
2024-04-20 07:45:50 +02:00
miette = "7.2.0"
normalize-path = "0.2.1"
thiserror = "1.0.50"
tracing = "0.1.40"
2023-05-09 00:13:04 +02:00
radix_trie = "0.2.1"
dunce = "1.0.4"
2022-06-15 05:25:05 +02:00
[dependencies.tokio]
version = "1.33.0"
default-features = false
features = [
"fs",
"macros",
"rt",
]
2022-06-15 05:25:05 +02:00
[dependencies.project-origins]
2024-04-28 08:45:52 +02:00
version = "1.4.0"
2022-06-15 05:25:05 +02:00
path = "../project-origins"
[dev-dependencies]
tracing-subscriber = "0.3.6"
[features]
default = []
## Don't hide ignore::gitignore::Gitignore Debug impl
full_debug = []