-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (38 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
43 lines (38 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
[package]
name = "commitbot"
version = "0.6.0"
edition = "2024"
description = "A CLI assistant that generates commit and PR messages from your diffs using LLMs."
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/MikeGarde/commitbot"
homepage = "https://github.com/MikeGarde/commitbot"
documentation = "https://docs.rs/commitbot"
keywords = ["git", "commit", "cli", "llm", "chatgpt"]
categories = ["command-line-utilities", "development-tools", "text-processing"]
[dependencies]
anyhow = "^1.0"
clap = { version = "^4.5", features = ["derive", "env"] }
colored = "^3"
crossterm = "^0.29"
dirs = "^6.0.0"
env_logger = "^0.11"
indicatif = "^0.18.2"
log = "^0.4"
musli = { version = "^0.0.149", features = ["json", "alloc"] }
reqwest = { version = "^0.13", features = ["json", "blocking"] }
serde = { version = "^1", features = ["derive"] }
serde_json = "^1"
toml = "^1.0"
[dev-dependencies]
assert_cmd = "^2.1.1"
predicates = "^3.1.3"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = "symbols"
[profile.dev]
debug = 2
opt-level = 0