[package]
edition = "2024"
rust-version = "1.94"
name = "git-aicommit"
version = "0.1.0"
authors = ["Justin Chung <noreply@justinchung.net>"]
build = false
exclude = [
"target/",
"/.github",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generate git commit messages from staged diffs using Claude."
homepage = "https://github.com/getkono/git-ai-commits"
readme = "README.md"
keywords = [
"git",
"commit",
"ai",
"claude",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/getkono/git-ai-commits"
[[bin]]
name = "git-aicommit"
path = "src/main.rs"
[dependencies.indicatif]
version = "0.17"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
strip = "symbols"