-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 769 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 769 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
29
30
31
32
[package]
name = "git-commit-helper-cli"
version = "0.9.3"
edition = "2021"
description = "A CLI tool to help generate standardized git commit messages"
license = "MIT"
[[bin]]
name = "git-commit-helper"
path = "src/main.rs"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
reqwest = { version = "0.11", features = ["json"] }
anyhow = "1.0"
async-trait = "0.1"
config = "0.13"
regex = "1.10"
textwrap = "0.16"
clap = { version = "4.4", features = ["derive"] }
clap_complete = { version = "4.5", features = ["unstable-dynamic"] }
dialoguer = "0.11"
directories = "5.0"
env_logger = "0.10"
log = "0.4"
copilot-client = "0.1.0"
base64 = "0.22.1"
[dev-dependencies]
assert_cmd = "2.0"