aigitcommit 1.9.5

A simple git commit message generator by OpenAI compaction model.
Documentation
[package]
name = "aigitcommit"
version = "1.9.5"
edition = "2024"
description = "A simple git commit message generator by OpenAI compaction model."
license-file = "LICENSE"
readme = "README.md"
keywords = ["git", "tools", "ai", "development"]
authors = ["mingcheng <mingcheng@apache.org>"]
repository = "https://github.com/mingcheng/aigitcommit"
homepage = "https://github.com/mingcheng/aigitcommit"
exclude = ["assets/*"]
categories = ["command-line-utilities", "development-tools"]

[dependencies]
reqwest = { version = "0.13", features = [
    "json",
    "stream",
    "socks",
    "blocking",
    "multipart",
    "http2",
    "charset",
    "native-tls-vendored",
] }
askama = "0.16"
async-openai = { version = "0.41", features = ["chat-completion", "model"] }
git2 = "0.21"
tokio = { version = "1.52.3", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
log = "0.4"
clap = { version = "4.6", features = ["derive", "env"] }
tracing = "0.1"
tracing-subscriber = "0.3"
arboard = "3.6"
tabled = "0.21"
cliclack = "0.5.4"
regex = "1.12.4"

[[bin]]
name = "aigitcommit"
path = "src/main.rs"

[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
debug = false

[build-dependencies]
built = "0.8"