lints.workspace = true
[package]
name = "gix-ignore"
version = "0.12.0"
repository = "https://github.com/GitoxideLabs/gitoxide"
license = "MIT OR Apache-2.0"
description = "A crate of the gitoxide project dealing .gitignore files"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
edition = "2021"
include = ["src/**/*", "LICENSE-*"]
rust-version = "1.65"
[lib]
doctest = false
[features]
serde = ["dep:serde", "bstr/serde", "gix-glob/serde"]
[dependencies]
gix-glob = { version = "^0.17.0", path = "../gix-glob" }
gix-path = { version = "^0.10.12", path = "../gix-path" }
gix-trace = { version = "^0.1.11", path = "../gix-trace" }
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }
unicode-bom = { version = "2.0.3" }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
document-features = { version = "0.2.1", optional = true }
[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
gix-fs = { path = "../gix-fs" }
[package.metadata.docs.rs]
all-features = true
features = ["document-features"]