-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
56 lines (50 loc) · 1.56 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "commit"
version = "0.7.0"
edition = "2021"
homepage = "https://github.com/alt-art/commit"
repository = "https://github.com/alt-art/commit"
documentation = "https://github.com/alt-art/commit/wiki"
description = "A tool to make patterned (conventional) commit messages"
categories = ["development-tools", "command-line-utilities"]
keywords = ["git", "commit","message", "conventional"]
authors = ["Pedro H. M. <[email protected]>"]
readme = "README.md"
license = "MIT"
[lints.clippy]
all = "warn"
pedantic = "warn"
nursery = "warn"
cargo = "warn"
str_to_string = "warn"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
inquire = "0.7.5"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
clap = { version = "4.5.23", features = ["derive"] }
dirs = "5.0.1"
anyhow = "1.0.95"
[dev-dependencies]
assert_fs = "1.1.2"
serial_test = "3.2.0"
[package.metadata.deb]
name = "commit"
maintainer = "Pedro Henrique Mendes <[email protected]>"
copyright = "2020, Pedro Henrique Mendes <[email protected]>"
license-file = ["LICENSE", "0"]
extended-description = "A tool to make patterned (conventional) commit messages and customize the commit pattern"
depends = "git"
section = "utils"
priority = "optional"
assets = [
# Binary
["target/release/commit", "/usr/bin/", "111"],
]
[package.metadata.generate-rpm]
assets = [
# Binary
{ source = "target/release/commit", dest = "/usr/bin/commit", mode = "111" },
]
[package.metadata.generate-rpm.requires]
git = "*"