git-checks 4.4.0

Checks to run against a topic in git to enforce coding standards.
Documentation
[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 }

# 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"
# Pin to a lower version.
tokio = { version = "^1.43.1", features = ["rt"] }
# Avoid an old dependency on `idna`.
url = "^2.5.4"
# Avoid transitive dependencies on `failure` and `atty`
web-sys = "~0.3.36"
bumpalo = "^3.11.1"
# Avoid https://rustsec.org/advisories/RUSTSEC-2026-0097
rand = "0.10.1"
# Avoid https://rustsec.org/advisories/RUSTSEC-2025-0009
ring = "0.17.12"
# Bumps minimum so that its `miniz_oxide` dependency drops the unmaintained
# `adler` crate for `adler2`.
backtrace = "^0.3.74"
# Bump hickory minimums.
# Avoid https://rustsec.org/advisories/RUSTSEC-2026-0119
# Avoid https://rustsec.org/advisories/RUSTSEC-2026-0120
hickory-net = "0.26.1"
hickory-proto = "0.26.1"
# Fixes compilation. Transitive from `hickory-resolver`
num-traits = "0.2.4"
# Bump chrono minimum to match our minimum.
wasm-bindgen = "0.2.88"

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

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