-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 875 Bytes
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 875 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
33
34
35
36
37
[package]
name = "git-cli"
version = "0.2.0"
edition = "2021"
authors = ["RobertWsp <sousarobert854@gmail.com>"]
description = "A powerful CLI tool for Git commits with emoji support"
readme = "README.md"
homepage = "https://github.com/yourusername/git-cli"
repository = "https://github.com/yourusername/git-cli"
license = "MIT"
keywords = ["git", "emoji", "commit", "cli"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "git-cli"
path = "src/main.rs"
[lib]
name = "git_cli"
path = "src/lib.rs"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
inquire = "0.7.5"
clap = { version = "4.0", features = ["derive"] }
dirs = "6.0.0"
thiserror = "1.0"
anyhow = "1.0"
log = "0.4"
env_logger = "0.10"
config = "0.13"
tokio = { version = "1.0", features = ["full"] }
toml = "0.8"
[dev-dependencies]
tempfile = "3.0"