[package]
edition = "2021"
name = "hooksmith"
version = "1.16.0"
authors = ["Tom Planche <tomplanche@proton.me>"]
build = false
include = [
"/Cargo.toml",
"/LICENSE-APACHE",
"/LICENSE-MIT",
"/README.md",
"/src/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Trivial git hook management tool"
homepage = "https://github.com/TomPlanche/hooksmith"
readme = "README.md"
keywords = [
"cli",
"git",
"git-hooks",
"rust",
]
categories = ["command-line-utilities"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/TomPlanche/hooksmith"
[lib]
name = "hooksmith"
path = "src/lib.rs"
[[bin]]
name = "hooksmith"
path = "src/main.rs"
[dependencies.clap]
version = "4.5.60"
features = ["derive"]
[dependencies.console]
version = "0.15.11"
[dependencies.dialoguer]
version = "0.12.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.thiserror]
version = "2.0.18"
[profile.release]
lto = false
codegen-units = 1