-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (27 loc) · 795 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (27 loc) · 795 Bytes
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 = "git-msg"
version = "0.1.1"
edition = "2024"
description = "AI-powered Git commit message generator, local-first and lightweight."
authors = ["iroha3"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/git-odd/git-msg"
homepage = "https://github.com/git-odd/git-msg"
readme = "README.md"
keywords = ["git", "ai", "commit", "llm", "cli"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
clap = { version = "4.5", features = ["derive", "env"] }
reqwest = { version = "0.12", features = ["json", "blocking"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
inquire = "0.7"
indicatif = "0.17"
colored = "2.1"
glob = "0.3"
tempfile = "3.10"
dirs = "5.0"
regex = "1.10"
anyhow = "1.0"
unicode-width = "0.2"