-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (41 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
45 lines (41 loc) · 1.07 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "auto-commit-rs"
version = "1.3.1"
edition = "2021"
description = "Fast, lightweight CLI tool that generates git commit messages using LLMs. Single binary, no runtime dependencies."
license = "MIT"
repository = "https://github.com/gtkacz/smart-commit-rs"
homepage = "https://github.com/gtkacz/smart-commit-rs"
documentation = "https://github.com/gtkacz/smart-commit-rs"
readme = "README.md"
keywords = ["git", "commit", "llm", "ai", "cli"]
categories = ["command-line-utilities", "development-tools"]
authors = ["Gabriel Tkacz <gabriel@tkacz.dev>"]
[[bin]]
name = "cgen"
path = "src/main.rs"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
colored = "2"
dirs = "6"
dotenvy = "0.15"
indicatif = "0.17"
inquire = "0.7"
edit = "0.1"
regex-lite = "0.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
ureq = { version = "2", features = ["json"] }
glob = "0.3"
[dev-dependencies]
mockito = "1"
serial_test = "3"
tempfile = "3"
[profile.release]
opt-level = "z"
lto = true
strip = true
panic = "abort"
codegen-units = 1