-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (38 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
43 lines (38 loc) · 1.01 KB
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
[package]
name = "git-mob-tool"
version = "1.9.3"
authors = ["Mubashwer Salman Khurshid"]
edition = "2024"
description = "A CLI tool 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.51", features = ["derive"] }
inquire = "0.9.1"
path-clean = "1.0.1"
[dev-dependencies]
assert_cmd = "2.0.16"
mockall = "0.13.1"
once_cell = "1.21.1"
predicates = "3.1.2"
tempfile = "3.23.0"
test-context = "0.4.1"
[target.'cfg(unix)'.dev-dependencies]
rexpect = "0.6.2"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/git-mob-{ target }.tar.gz"
pkg-fmt = "tgz"