[package]
name = "git-commit-helper"
version = "0.1.5"
authors = ["coding@dfine.tech"]
edition = "2024"
repository = "https://github.com/newdee/git-commit-helper.git"
description = "Git Commit Helper is a practical tool that leverages large language models (LLMs) to analyze changes in a Git repository. It helps users generate meaningful commit messages, addressing the difficulties users may encounter when writing commit messages. At the same time, it provides a user-friendly command-line interaction experience."
license = "MIT"
keywords = ["git", "commit","ai", "llm"]
categories = ["command-line-utilities" ]
publish = ["crates-io"]
[dependencies]
async-openai = "0.28.1"
clap = { version = "4.5.37", features = ["derive"] }
git2 = "0.20.2"
ollama-rs = "0.3.1"
tokio = { version = "1.45.0", features = ["full"] }
[lib]
name = "git_commit_helper"
path = "src/lib.rs"
[[bin]]
name = "git-commit-helper"
path = "src/main.rs"
[profile.release]
opt-level=3
lto = "fat"
codegen-units = 1
panic= "abort"