git-features 0.10.1

A crate to integrate various capabilities using compile-time feature flags
Documentation
[[test]]
name = "parallel"
path = "tests/parallel.rs"
required-features = ["parallel"]

[[test]]
name = "pipe"
path = "tests/pipe.rs"
required-features = ["io-pipe"]
[dependencies.bytes]
optional = true
version = "1.0.0"

[dependencies.crc]
version = "1.8.1"

[dependencies.crossbeam-channel]
optional = true
version = "0.5.0"

[dependencies.crossbeam-utils]
optional = true
version = "0.8.0"

[dependencies.ctrlc]
default-features = false
features = ["termination"]
optional = true
version = "3.1.4"

[dependencies.fastsha1]
optional = true
package = "sha-1"
version = "0.9.1"

[dependencies.git-hash]
version = "^0.1.0"

[dependencies.jwalk]
optional = true
version = "0.6.0"

[dependencies.num_cpus]
optional = true
version = "1.13.0"

[dependencies.prodash]
default-features = false
features = ["unit-bytes", "unit-human"]
version = "12.0.0"

[dependencies.sha1]
version = "0.6.0"

[dependencies.walkdir]
version = "2.3.1"

[features]
disable-interrupts = []
fast-sha1 = ["fastsha1"]
interrupt-handler = ["ctrlc"]
io-pipe = ["bytes"]
parallel = ["crossbeam-utils", "crossbeam-channel", "num_cpus", "jwalk"]

[lib]
doctest = false
test = false

[package]
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
description = "A crate to integrate various capabilities using compile-time feature flags"
edition = "2018"
license = "MIT/Apache-2.0"
name = "git-features"
repository = "https://github.com/Byron/gitoxide"
version = "0.10.1"
[package.metadata.docs.rs]
all-features = true