git-index 0.12.4

Please use `gix-<thiscrate>` instead ('git' -> 'gix')
Documentation
[package]
name = "git-index"
version = "0.12.4"
repository = "https://github.com/Byron/gitoxide"
license = "MIT/Apache-2.0"
description = "Please use `gix-<thiscrate>` instead ('git' -> 'gix')"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
edition = "2021"
include = ["src/**/*", "README.md", "CHANGELOG.md"]
rust-version = "1.64"
autotests = false


[lib]
doctest = false
test = true

[features]
## Data structures implement `serde::Serialize` and `serde::Deserialize`.
serde1 = ["serde", "smallvec/serde", "git-hash/serde1"]

[dependencies]
git-features = { version = "^0.26.5", path = "../git-features", features = ["rustsha1", "progress"] }
git-hash = { version = "^0.10.3", path = "../git-hash" }
git-bitmap = { version = "^0.2.2", path = "../git-bitmap" }
git-object = { version = "^0.26.2", path = "../git-object" }
git-traverse = { version = "^0.22.2", path = "../git-traverse" }
git-lock = { version = "^3.0.0", path = "../git-lock" }

thiserror = "1.0.32"
memmap2 = "0.5.0"
filetime = "0.2.15"
bstr = { version = "1.0.1", default-features = false }

serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
smallvec = "1.7.0"
atoi = "2.0.0"
itoa = "1.0.3"
bitflags = "1.3.2"

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

[package.metadata.docs.rs]
features = ["document-features", "serde1"]
rustdoc-args = ["--cfg", "docsrs"]