[package]
name = "gix-object"
version = "0.33.0"
description = "Immutable and mutable git objects with decoding and encoding support"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
repository = "https://github.com/Byron/gitoxide"
license = "MIT/Apache-2.0"
edition = "2021"
include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"]
rust-version = "1.65"
[lib]
doctest = false
[features]
serde = ["dep:serde", "bstr/serde", "smallvec/serde", "gix-hash/serde", "gix-actor/serde"]
verbose-object-parsing-errors = ["nom/std"]
[dependencies]
gix-features = { version = "^0.32.0", path = "../gix-features", features = ["rustsha1"] }
gix-hash = { version = "^0.11.3", path = "../gix-hash" }
gix-validate = { version = "^0.7.6", path = "../gix-validate" }
gix-actor = { version = "^0.24.0", path = "../gix-actor" }
gix-date = { version = "^0.7.0", path = "../gix-date" }
btoi = "0.4.2"
itoa = "1.0.1"
thiserror = "1.0.34"
hex = "0.4.2"
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }
nom = { version = "7", default-features = false, features = ["std"]}
smallvec = { version = "1.4.0", features = ["write"] }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
document-features = { version = "0.2.0", optional = true }
[dev-dependencies]
pretty_assertions = "1.0.0"
gix-testtools = { path = "../tests/tools"}
[package.metadata.docs.rs]
all-features = true
features = ["document-features"]
rustdoc-args = ["--cfg", "docsrs"]