[package]
edition = "2021"
name = "git-comma"
version = "1.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AI-powered git commit message generator using OpenRouter API"
readme = false
license = "MIT"
repository = "https://github.com/rfxlamia/git-comma"
[lib]
name = "git_comma"
path = "src/lib.rs"
[[bin]]
name = "comma"
path = "src/main.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.home]
version = "0.4"
[dependencies.inquire]
version = "0.5"
features = ["editor"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.ureq]
version = "3"
features = ["json"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.wiremock]
version = "0.6"