-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
48 lines (43 loc) · 1.02 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
[package]
name = "git-mob-tool"
version = "1.6.2"
authors = ["Mubashwer Salman Khurshid"]
edition = "2021"
description = "A CLI app which can help users automatically add co-author(s) to git commits for pair/mob programming"
readme = "README.md"
repository = "https://github.com/Mubashwer/git-mob"
license = "MIT"
keywords = [
"git",
"cli",
"pair-programming",
"mob-programming"
]
categories = ["command-line-interface", "command-line-utilities"]
include = [
"src/**/*",
"Cargo.lock",
"Cargo.toml",
"LICENSE",
"prepare-commit-msg",
"README.md"
]
[[bin]]
name = "git-mob"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5.20", features = ["derive"] }
home = "0.5.9"
inquire = "0.7.5"
[dev-dependencies]
assert_cmd = "2.0.16"
mockall = "0.13.0"
once_cell = "1.19.0"
predicates = "3.1.2"
tempfile = "3.13.0"
test-context = "0.3.0"
[target.'cfg(unix)'.dev-dependencies]
rexpect = "0.5.0"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/git-mob-{ target }.tar.gz"
pkg-fmt = "tgz"