-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
44 lines (41 loc) · 1.5 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
[package]
name = "git-mob"
version = "0.5.0"
authors = [ "Martin Frost <martin@frost.ws>" ]
edition = "2018"
description = "A CLI tool for social coding."
license = "MIT"
homepage = "https://github.com/Frost/git-mob"
repository = "https://github.com/Frost/git-mob"
readme = "README.md"
[dependencies]
git2 = { version = "0.19", default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
clap = { version = "~4.5", features = ["derive"] }
clap_mangen = "~0.2"
env_home = "0.1.0"
[build-dependencies]
clap_mangen = "~0.2"
clap = { version = "~4.5", features = ["derive"]}
clap_complete = "~4.5"
[package.metadata.deb]
name = "git-mob"
revision = "1"
section = "vcs"
priority = "optional"
extended-description = """\
A set of git subcommands for including co-authors to your git commits."""
assets = [
["target/release/git-mob", "usr/bin/", "755"],
["target/release/git-solo", "usr/bin/", "755"],
["target/release/git-add-coauthor", "usr/bin/", "755"],
["target/release/git-edit-coauthor", "usr/bin/", "755"],
["target/release/git-delete-coauthor", "usr/bin/", "755"],
["target/release/git-mob.1", "usr/share/man/man1/", "644"],
["target/release/git-solo.1", "usr/share/man/man1/", "644"],
["target/release/git-add-coauthor.1", "usr/share/man/man1/", "644"],
["target/release/git-edit-coauthor.1", "usr/share/man/man1/", "644"],
["target/release/git-delete-coauthor.1", "usr/share/man/man1/", "644"],
["README.md", "usr/share/doc/git-mob/README", "644"],
]