watchexec/crates/ignore-files/Cargo.toml

39 lines
751 B
TOML
Raw Normal View History

2022-06-15 05:25:05 +02:00
[package]
name = "ignore-files"
version = "1.3.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"
gix-config = "0.31.0"
2023-01-06 14:53:49 +01:00
ignore = "0.4.18"
miette = "5.3.0"
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]
version = "1.2.0"
2022-06-15 05:25:05 +02:00
path = "../project-origins"