git-features 0.16.5

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

[[test]]
name = "parallel"
path = "tests/parallel_threaded.rs"
required-features = ["parallel", "rustsha1"]

[[test]]
name = "multi-threaded"
path = "tests/parallel_shared_threaded.rs"
required-features = ["parallel", "rustsha1"]

[[test]]
name = "single-threaded"
path = "tests/parallel_shared.rs"
required-features = ["rustsha1"]

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

[dependencies.crc32fast]
optional = true
version = "1.2.1"

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

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

[dependencies.flate2]
default-features = false
optional = true
version = "1.0.17"

[dependencies.git-hash]
version = "^0.7.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"]
optional = true
version = "16.0.0"

[dependencies.quick-error]
optional = true
version = "2.0.0"

[dependencies.rustsha1]
optional = true
package = "sha1"
version = "0.6.0"

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

[dependencies.time]
default-features = false
features = ["local-offset"]
optional = true
version = "0.3.2"

[dependencies.walkdir]
optional = true
version = "2.3.1"

[features]
cache-efficiency-debug = []
crc32 = ["crc32fast"]
default = []
fast-sha1 = ["sha-1"]
io-pipe = ["bytes"]
parallel = ["crossbeam-utils", "crossbeam-channel", "num_cpus", "jwalk"]
progress = ["prodash"]
zlib = ["flate2", "flate2/rust_backend", "quick-error"]
zlib-ng-compat = ["flate2/zlib-ng-compat"]
zlib-rust-backend = ["flate2/rust_backend"]

[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"
resolver = "2"
version = "0.16.5"
[package.metadata.docs.rs]
all-features = true
[target."cfg(not(all(target_os = \"windows\", target_env = \"msvc\")))".dependencies.sha-1]
features = ["asm"]
optional = true
version = "0.9.1"