[package]
name = "git-checks"
version = "4.4.0"
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.3"
keywords = ["git", "code-review"]
edition = "2018"
workspace = ".."
rust-version = "1.71"
[dev-dependencies]
serde_json = "^1.0"
tempfile = "^3.2.0"
[dependencies]
derive_builder = "~0.20"
itertools = "~0.14"
lazy_static = "^1.1"
log = "~0.4.4"
rayon = "^1.5"
thiserror = "^2"
hickory-resolver = { version = "0.26.1", default-features = false, features = ["system-config", "tokio"] }
ttl_cache = "~0.5"
wait-timeout = "~0.2"
git-checks-core = { version = "^1.4", 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.3", path = "../git-checks-config", optional = true }
serde = { version = "^1.0", features = ["derive"], optional = true }
linked-hash-map = "^0.5.3"
tokio = { version = "^1.43.1", features = ["rt"] }
url = "^2.5.4"
web-sys = "~0.3.36"
bumpalo = "^3.11.1"
rand = "0.10.1"
ring = "0.17.12"
backtrace = "^0.3.74"
hickory-net = "0.26.1"
hickory-proto = "0.26.1"
num-traits = "0.2.4"
wasm-bindgen = "0.2.88"
[features]
default = []
config = ["git-checks-config", "serde"]
[package.metadata.docs.rs]
all-features = true