[package]
edition = "2021"
name = "auto-commit-rs"
version = "1.1.0"
authors = ["Gabriel Tkacz <gabriel@tkacz.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, lightweight CLI tool that generates git commit messages using LLMs. Single binary, no runtime dependencies."
homepage = "https://github.com/gtkacz/auto-commit-rs"
documentation = "https://github.com/gtkacz/auto-commit-rs"
readme = "README.md"
keywords = [
"git",
"commit",
"llm",
"ai",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/gtkacz/auto-commit-rs"
[lib]
name = "auto_commit_rs"
path = "src/lib.rs"
[[bin]]
name = "cgen"
path = "src/main.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "git_tests"
path = "tests/git_tests.rs"
[[test]]
name = "interpolation_tests"
path = "tests/interpolation_tests.rs"
[[test]]
name = "prompt_tests"
path = "tests/prompt_tests.rs"
[[test]]
name = "provider_tests"
path = "tests/provider_tests.rs"
[[test]]
name = "update_tests"
path = "tests/update_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.colored]
version = "2"
[dependencies.dirs]
version = "6"
[dependencies.dotenvy]
version = "0.15"
[dependencies.indicatif]
version = "0.17"
[dependencies.inquire]
version = "0.7"
[dependencies.regex-lite]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "0.8"
[dependencies.ureq]
version = "2"
features = ["json"]
[dev-dependencies.mockito]
version = "1"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true