watchexec/crates/ignore-files/Cargo.toml

32 lines
738 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.21"
gix-config = "0.25.1"
2023-01-06 14:53:49 +01:00
ignore = "0.4.18"
miette = "5.3.0"
2022-06-15 05:25:05 +02:00
thiserror = "1.0.31"
tokio = { version = "1.24.2", default-features = false, features = ["fs", "macros", "rt"] }
2023-01-06 14:53:49 +01:00
tracing = "0.1.35"
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
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"