forked from zurawiki/gptcommit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (26 loc) · 814 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "gptcommit"
version = "0.1.8"
edition = "2021"
rust-version = "1.66"
authors = ["Roger Zurawicki <[email protected]>"]
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"
log = "0.4.17"
reqwest = { version = "0.11.13", features = ["json", "gzip", "brotli", "rustls-tls"] }
serde_json = "1.0.91"
simple_logger = "4.0.0"
tokio = { version = "1.24.1", features = ["full"] }
which = "4.3.0"