-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (48 loc) · 1.43 KB
/
Cargo.toml
File metadata and controls
60 lines (48 loc) · 1.43 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "commitcraft"
version = "1.1.0"
edition = "2021"
description = "A fast, intelligent CLI tool that generates conventional commit messages using AI"
authors = ["Sanket <sanket@example.com>"]
license = "MIT"
repository = "https://github.com/san0808/commitcraft"
homepage = "https://github.com/san0808/commitcraft"
documentation = "https://docs.rs/commitcraft"
readme = "README.md"
keywords = ["git", "commit", "ai", "conventional-commits", "cli"]
categories = ["command-line-utilities", "development-tools"]
exclude = ["target/", ".git/", "*.log"]
[lib]
name = "commitcraft"
path = "src/lib.rs"
[[bin]]
name = "commitcraft"
path = "src/main.rs"
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# CLI Parsing
clap = { version = "4.5.4", features = ["derive"] }
# Serialization / Deserialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8.12"
# Configuration Management
config = { version = "0.14.0", features = ["toml"] }
directories = "5.0.1"
# API Calls
reqwest = { version = "0.12.4", features = ["json", "rustls-tls"] }
async-trait = "0.1.80"
# OpenAI Specific
async-openai = { version = "0.19.1", features = ["rustls"] }
# User Interaction & Display
question = "0.2.2"
spinners = "4.1.0"
colored = "2.1.0"
# Interactive Command Line
rustyline = "14.0.0"
# Logging
log = "0.4.21"
env_logger = "0.11.3"
# Schema Generation for OpenAI functions
schemars = "0.8.19"