git-features 0.21.1

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

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

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

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

[[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.7"

[dependencies.document-features]
optional = true
version = "0.2.0"

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

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

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

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

[dependencies.parking_lot]
default-features = false
optional = true
version = "0.12.0"

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

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

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

[dependencies.sha1_smol]
optional = true
version = "1.0.0"

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

[dependencies.walkdir]
optional = true
version = "2.3.1"
[dev-dependencies.bstr]
default-features = false
version = "0.2.15"

[features]
cache-efficiency-debug = []
crc32 = ["crc32fast"]
default = []
fast-sha1 = ["sha-1"]
io-pipe = ["bytes"]
parallel = ["crossbeam-utils", "crossbeam-channel", "num_cpus", "jwalk", "parking_lot"]
progress = ["prodash"]
rustsha1 = ["sha1_smol"]
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.21.1"
[package.metadata.docs.rs]
all-features = true
features = ["document-features"]
[target."cfg(not(all(target_os = \"windows\", target_env = \"msvc\")))".dependencies.sha-1]
features = ["asm"]
optional = true
version = "0.10.0"
[target."cfg(unix)".dependencies.libc]
version = "0.2.119"