gix-status 0.14.0

A crate of the gitoxide project dealing with 'git status'-like functionality
Documentation
lints.workspace = true

[package]
name = "gix-status"
version = "0.14.0"
repository = "https://github.com/GitoxideLabs/gitoxide"
license = "MIT OR Apache-2.0"
description = "A crate of the gitoxide project dealing with 'git status'-like functionality"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>", "Pascal Kuthe <pascal.kuthe@semimod.de>"]
edition = "2021"
include = ["src/**/*", "LICENSE-*"]
rust-version = "1.65"
autotests = false

[lib]
doctest = false

[features]
## Add support for tracking rewrites along with checking for worktree modifications.
worktree-rewrites = ["dep:gix-dir", "dep:gix-diff"]

[dependencies]
gix-index = { version = "^0.36.0", path = "../gix-index" }
gix-fs = { version = "^0.12.0", path = "../gix-fs" }
gix-hash = { version = "^0.15.0", path = "../gix-hash" }
gix-object = { version = "^0.45.0", path = "../gix-object" }
gix-path = { version = "^0.10.12", path = "../gix-path" }
gix-features = { version = "^0.39.0", path = "../gix-features", features = ["progress"] }
gix-filter = { version = "^0.14.0", path = "../gix-filter" }
gix-worktree = { version = "^0.37.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
gix-pathspec = { version = "^0.8.0", path = "../gix-pathspec" }

gix-dir = { version = "^0.9.0", path = "../gix-dir", optional = true }
gix-diff = { version = "^0.47.0", path = "../gix-diff", default-features = false, features = ["blob"], optional = true }

thiserror = "1.0.26"
filetime = "0.2.15"
bstr = { version = "1.3.0", default-features = false }

document-features = { version = "0.2.0", optional = true }

[target.'cfg(not(target_has_atomic = "64"))'.dependencies]
portable-atomic = "1"

[package.metadata.docs.rs]
features = ["document-features", "worktree-rewrites"]