gptcommit 0.1.11

A git prepare-commit-msg hook for summarizing commits with GPT-3.
[package]
name = "gptcommit"
version = "0.1.11"
edition = "2021"
rust-version = "1.67"
authors = ["Roger Zurawicki <roger@zura.wiki>"]
categories = ["development-tools"]
keywords = ["openai", "githook", "git", "ai", "gpt"]
description = "A git prepare-commit-msg hook for summarizing commits with GPT-3."
readme = "README.md"
license = "MIT"
homepage = "https://github.com/zurawiki/gptcommit"
repository = "https://github.com/zurawiki/gptcommit"

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

[dependencies]
anyhow = "1.0.68"
clap = { version = "4.1.1", features = ["derive"] }
colored = "2.0.0"
config = { version = "0.13.3", features = ["toml"] }
dirs = "4.0.0"
lazy_static = "1.4.0"
log = "0.4.17"
regex = "1.7.1"
reqwest = { version = "0.11.13", features = ["json", "gzip", "brotli", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0.152"
serde_json = "1.0.91"
simple_logger = "4.0.0"
strum = "0.24.1"
strum_macros = "0.24.3"
tokio = { version = "1.24.1", features = ["full"] }
toml = "0.6.0"
which = "4.3.0"