-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
64 lines (59 loc) · 1.93 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
57
58
59
60
61
62
63
64
[package]
name = "git-req"
version = "2.5.0"
authors = ["Aru Sahni <[email protected]>"]
description = "Check out merge requests from your GitLab/GitHub hosted repos with ease!"
homepage = "https://arusahni.github.io/git-req/"
repository = "https://github.com/arusahni/git-req"
readme = "README.md"
keywords = ["git", "gitlab", "github"]
categories = ["command-line-utilities", "development-tools"]
license = "MIT"
edition = "2021"
exclude = ["ci/**/*", "docs/**/*", "appveyor.yml", ".travis.yml", "pkg/**/*"]
build = "build.rs"
[profile.release]
lto = true
opt-level = "s"
codegen-units = 1
[badges]
travis-ci = { repository = "arusahni/git-req" }
appveyor = { repository = "arusahni/git-req" }
is-it-maintained-issue-resolution = { repository = "arusahni/git-req" }
is-it-maintained-open-issues = { repository = "arusahni/git-req" }
maintenance = {status = "actively-developed"}
[dependencies]
lazy_static = "1.4.0"
regex = "1.6"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
git2 = {version = "0.16", default_features = false, features = []}
shellexpand = "1.0"
duct = "0.13.6"
env_logger = "0.6"
log = "0.4"
tabwriter = "1"
color-backtrace = "0.2"
colored = "1.8"
ureq = {version = "0.12.0", features = ["json"]}
git-url-parse = "0.3"
anyhow = "1.0"
logchop = "0.1"
clap = { version = "~4.1", features = ["derive"]}
clap_complete = "~4.1"
[build-dependencies]
clap_mangen = "~0.2"
clap = { version = "~4.1", features = ["derive"]}
clap_complete = "~4.1"
[package.metadata.deb]
assets = [
["target/release/git-req", "usr/bin/", "755"],
["LICENSE-MIT", "usr/share/doc/git-req/", "644"],
["README.md", "usr/share/doc/git-req/README", "644"],
# The man page is automatically generated by git-req's build process, so
# this file isn't actually committed. Instead, to create a dpkg, either
# create a deployment directory and copy the man page to it, or make a build
# release.
["target/release/git-req.1", "usr/share/man/man1/git-req.1", "644"],
]