gitoxide-core 0.9.0

The library implementating all capabilities of the gitoxide CLI
Documentation
[package]
name = "gitoxide-core"
description = "The library implementating all capabilities of the gitoxide CLI"
repository = "https://github.com/Byron/gitoxide"
version = "0.9.0"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
license = "MIT/Apache-2.0"
edition = "2018"

[lib]
doctest = false
test = false

[features]
serde1 = ["git-commitgraph/serde1", "git-object/serde1", "git-odb/serde1", "git-protocol/serde1", "serde_json", "serde"]
organize = ["git-url", "jwalk"]
estimate-hours = ["itertools", "rayon", "git-traverse", "bstr", "fs-err"]

[package.metadata.docs.rs]
all-features = true

[dependencies]
git-repository = { version = "^0.5.0", path = "../git-repository" }
git-object = { version = "^0.9.0", path = "../git-object" }
git-hash = { version = "^0.3.0", path = "../git-hash" }
git-odb = { version = "^0.15.0", path = "../git-odb", features = ["pack-cache-lru-static"] }
git-protocol = { version = "^0.7.0", path = "../git-protocol" }
git-features = { version = "^0.14.0", path = "../git-features" }
git-commitgraph = { version = "^0.4.0", path = "../git-commitgraph" }
git-config = { version = "^0.1.0", path = "../git-config" }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
anyhow = "1.0.31"
quick-error = "2.0.0"
bytesize = "1.0.1"
serde_json = { version = "1.0.56", optional = true }

# for 'organize' functionality
git-url = { version = "^0.3.0", path = "../git-url", optional = true }
jwalk = { version = "0.6.0", optional = true }

# for estimate-hours command
git-traverse = { version = "^0.2", path = "../git-traverse", optional = true }
rayon = { version = "1.5.0", optional = true }
itertools = { version = "0.10.0", optional = true }
bstr = { version = "0.2.13", default-features = false, features = ["std", "unicode"], optional = true }
fs-err = { version = "2.6.0", optional = true }