-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (32 loc) · 883 Bytes
/
Cargo.toml
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
[package]
name = "gitbox"
version = "2.1.1"
edition = "2021"
description = "Git toolbox to simplify adoption of conventional commits and semantic version, among other things."
license = "MIT"
repository = "https://github.com/asperan/gitbox"
keywords = [ "conventional-commits", "semver", "cli" ]
categories = [ "command-line-utilities", "development-tools" ]
exclude = [ "utils/", "docs/" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = "fat"
strip = "symbols"
panic = "abort"
[dependencies]
ahash = "0.8.6"
chrono = "0.4.31"
clap = { version = "4.4.5", features = ["derive"] }
clap_complete = "4.4.4"
colored = "2.1.0"
pest = "2.7.5"
pest_derive = "2.7.5"
regex = "1.10.2"
requestty = "0.5.0"
ureq = "2.8.0"
[lib]
name = "gitbox_lib"
path = "src/lib/lib.rs"
[[bin]]
name = "gb"
path = "src/main.rs"