-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
46 lines (41 loc) · 1.31 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
[package]
name = "commit"
version = "0.3.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"
authors = ["Pedro H. M. <pedromendescraft@gmail.com>"]
readme = "README.md"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
inquire = "0.2.1"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.78"
clap = { version = "3.0.14", features = ["derive"] }
dirs = "4.0.0"
anyhow = "1.0.53"
[dev-dependencies]
assert_fs = "1.0.6"
[package.metadata.deb]
name = "commit"
maintainer = "Pedro Henrique Mendes <pedromendescraft@gmail.com>"
copyright = "2020, Pedro Henrique Mendes <pedromendescraft@gmail.com>"
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/", mode = "111" },
]
[package.metadata.generate-rpm.requires]
git = "*"