watchexec/crates/ignore-files/Cargo.toml

29 lines
684 B
TOML
Raw Normal View History

2022-06-15 05:25:05 +02:00
[package]
name = "ignore-files"
version = "1.1.0"
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"
2023-01-11 16:35:34 +01:00
git-config = "0.14.0"
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.23.1", default-features = false, features = ["fs"] }
2023-01-06 14:53:49 +01:00
tracing = "0.1.35"
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"