git-checks 4.0.2

Checks to run against a topic in git to enforce coding standards.
Documentation
[package]
name = "git-checks"
version = "4.0.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.0"
keywords = ["git", "code-review"]
workspace = ".."

[dev-dependencies]
serde_json = "^1.0"
tempdir = "~0.3.6"

[dependencies]
derive_builder = "~0.9"
itertools = "~0.8"
lazy_static = "^1.1"
log = "~0.4"
rayon = "^1.1"
thiserror = "^1.0.2"
ttl_cache = "~0.5"
wait-timeout = "~0.2"

git-checks-core = { version = "^1.0", path = "../git-checks-core" }
git-workarea = "^4.0"
regex = "^1.0"

git-checks-config = { version = "~0.1", path = "../git-checks-config", optional = true }
inventory = { version = "~0.1", optional = true }
serde = { version = "^1.0", optional = true }
serde_derive = { version = "^1.0", optional = true }

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

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