[package]
edition = "2024"
name = "cc-hook"
version = "0.1.0"
build = false
exclude = [
".claude/",
"CLAUDE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A cross-platform CLI that installs a git commit-msg hook to enforce Conventional Commits"
readme = "README.md"
keywords = [
"git",
"hook",
"conventional-commits",
"commit",
"validation",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/Gabriel-c0Nsp/Conventional-Commits-Hook"
[[bin]]
name = "cc-hook"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.color-eyre]
version = "0.6"
[dependencies.regex]
version = "1"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"