git-checks 4.2.2

Checks to run against a topic in git to enforce coding standards.
Documentation
[package]
name = "git-checks"
version = "4.2.2"
authors = ["Ben Boeckel <ben.boeckel@kitware.com>"]
license = "MIT/Apache-2.0"
description = """
Checks to run against a topic in git to enforce coding standards.
"""
repository = "https://gitlab.kitware.com/utils/rust-git-checks"
documentation = "https://docs.rs/git-checks/~4.2"
keywords = ["git", "code-review"]
edition = "2018"
workspace = ".."

[dev-dependencies]
serde_json = "^1.0"
tempfile = "^3.2.0"

[dependencies]
derive_builder = "~0.11.2"
itertools = "~0.10"
lazy_static = "^1.1"
log = "~0.4.4"
rayon = "^1.5"
thiserror = "^1.0.2"
ttl_cache = "~0.5"
wait-timeout = "~0.2"

git-checks-core = { version = "^1.2", path = "../git-checks-core" }
git-workarea = "^4.0"
regex = { version = "^1.5.5", default-features = false, features = ["std", "unicode-perl"] }

git-checks-config = { version = "~0.2.1", path = "../git-checks-config", optional = true }
serde = { version = "^1.0", features = ["derive"], optional = true }

# Minimum version fixes.
#
# linked-hash-map creates uninitialized NonNull pointer
# https://rustsec.org/advisories/RUSTSEC-2020-0026
# https://github.com/stusmall/ttl_cache/pull/24
linked-hash-map = "^0.5.3"

[features]
default = []
config = ["git-checks-config", "serde"]

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