mirror of
https://github.com/Byron/gitoxide
synced 2025-10-06 01:52:40 +02:00
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
lints.workspace = true
|
|
|
|
[package]
|
|
name = "gix-ignore"
|
|
version = "0.12.1"
|
|
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.70"
|
|
|
|
[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.17.1", path = "../gix-glob" }
|
|
gix-path = { version = "^0.10.13", 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"]
|