commitbot 0.2.1

A CLI assistant that generates commit and PR messages from your diffs using LLMs.
[[bin]]
name = "commitbot"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
features = ["derive", "env"]
version = "4.5"

[dependencies.crossterm]
version = "0.29"

[dependencies.dirs]
version = "6.0.0"

[dependencies.reqwest]
features = ["json", "blocking"]
version = "0.12"

[dependencies.serde]
features = ["derive"]
version = "1"

[dependencies.toml]
version = "0.9.8"

[dev-dependencies.assert_cmd]
version = "2.1.1"

[dev-dependencies.predicates]
version = "3.1.3"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools", "text-processing"]
description = "A CLI assistant that generates commit and PR messages from your diffs using LLMs."
documentation = "https://docs.rs/commitbot"
edition = "2024"
homepage = "https://github.com/MikeGarde/commitbot"
keywords = ["git", "commit", "cli", "llm", "chatgpt"]
license = "GPL-3.0-only"
name = "commitbot"
readme = "README.md"
repository = "https://github.com/MikeGarde/commitbot"
version = "0.2.1"

[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "abort"
strip = "symbols"

[[test]]
name = "cli_basics"
path = "tests/cli_basics.rs"