[go: up one dir, main page]

gix-ignore 0.1.0

A WIP crate of the gitoxide project dealing .gitignore files
Documentation
[package]
name = "gix-ignore"
version = "0.1.0"
repository = "https://github.com/Byron/gitoxide"
license = "MIT/Apache-2.0"
description = "A WIP crate of the gitoxide project dealing .gitignore files"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
edition = "2021"
include = ["src/**/*", "CHANGELOG.md"]
rust-version = "1.64"

[lib]
doctest = false

[features]
## Data structures implement `serde::Serialize` and `serde::Deserialize`.
serde = ["dep:serde", "bstr/serde", "gix-glob/serde"]

[dependencies]
gix-glob = { version = "^0.6.0", path = "../gix-glob" }
gix-path = { version = "^0.7.4", path = "../gix-path" }

bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"]}
unicode-bom = "2.0.2"
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
rustdoc-args = ["--cfg", "docsrs"]
features = ["document-features"]