[package]
name = "git-ca"
version = "0.2.5"
edition = "2021"
description = "git plugin that drafts commit messages using GitHub Copilot"
license = "MIT"
repository = "https://github.com/hankcraft/git-ca"
homepage = "https://github.com/hankcraft/git-ca"
keywords = ["git", "cli", "copilot", "codex", "rust"]
[[bin]]
name = "git-ca"
path = "src/main.rs"
[dependencies]
anyhow = "1"
base64 = "0.22"
clap = { version = "4", features = ["derive"] }
getrandom = "0.2"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
thiserror = "1"
time = { version = "0.3", features = ["serde", "formatting", "parsing"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "io-util", "time"] }
[dev-dependencies]
wiremock = "0.6"
[profile.release]
lto = "thin"
[profile.dist]
inherits = "release"
lto = "thin"
[workspace]