lints.workspace = true
[package]
name = "gix-commitgraph"
version = "0.25.0"
repository = "https://github.com/GitoxideLabs/gitoxide"
documentation = "https://git-scm.com/docs/commit-graph#:~:text=The%20commit-graph%20file%20is%20a%20supplemental%20data%20structure,or%20in%20the%20info%20directory%20of%20an%20alternate."
license = "MIT OR Apache-2.0"
description = "Read-only access to the git commitgraph file format"
authors = ["Conor Davis <gitoxide@conor.fastmail.fm>", "Sebastian Thiel <sebastian.thiel@icloud.com>"]
edition = "2021"
include = ["src/**/*", "LICENSE-*"]
rust-version = "1.65"
[lib]
doctest = false
[features]
serde = ["dep:serde", "gix-hash/serde", "bstr/serde"]
[dependencies]
gix-features = { version = "^0.39.0", path = "../gix-features", features = ["rustsha1"] }
gix-hash = { version = "^0.15.0", path = "../gix-hash" }
gix-chunk = { version = "^0.4.9", path = "../gix-chunk" }
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
memmap2 = "0.9.0"
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
thiserror = "1.0.26"
document-features = { version = "0.2.0", optional = true }
[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
gix-date = { path = "../gix-date" }
[package.metadata.docs.rs]
all-features = true
features = ["document-features"]