gix-status 0.10.0

A crate of the gitoxide project dealing with 'git status'-like functionality
Documentation
[package]
name = "gix-status"
version = "0.10.0"
repository = "https://github.com/Byron/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.33.0", path = "../gix-index" }
gix-fs = { version = "^0.11.0", path = "../gix-fs" }
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
gix-object = { version = "^0.42.2", path = "../gix-object" }
gix-path = { version = "^0.10.7", path = "../gix-path" }
gix-features = { version = "^0.38.2", path = "../gix-features", features = ["progress"] }
gix-filter = { version = "^0.11.2", path = "../gix-filter" }
gix-worktree = { version = "^0.34.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
gix-pathspec = { version = "^0.7.5", path = "../gix-pathspec" }

gix-dir = { version = "^0.5.0", path = "../gix-dir", optional = true }
gix-diff = { version = "^0.44.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 }

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