forked from o2sh/onefetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
64 lines (58 loc) · 1.65 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]
authors = ["o2sh <[email protected]>"]
categories = ["command-line-utilities"]
description = "Git repository summary on your terminal"
edition = "2018"
exclude = ["assets/*", "tools/*"]
keywords = [
"git",
"cli",
"terminal",
]
license = "MIT"
name = "onefetch"
readme = "README.md"
repository = "https://github.com/o2sh/onefetch"
version = "2.12.0"
[package.metadata.deb]
depends = "$auto"
extended-description = """\
Onefetch is a command-line Git information tool written in Rust \
that displays project information and code statistics \
for a local Git repository directly on your terminal."""
maintainer = "o2sh <[email protected]>"
priority = "optional"
section = "utility"
[dependencies]
anyhow = "1.0"
askalono = "0.4.5"
byte-unit = "4.0" # to match git-repository's lower requirement, which it needs for MSRV
bytecount = "0.6.2"
clap = {version = "3.1.17", features = ["cargo", "wrap_help"]}
clap_complete = "3.1"
color_quant = "1.1.0"
git2 = {version = "0.14.2", default-features = false}
git-repository = { version = "0.16.0", features = ["max-performance", "unstable", "serde1"] }
image = "0.24.2"
owo-colors = "3.4.0"
regex = "1.5.5"
serde = "1.0.136"
serde_json = "1.0.79"
serde_yaml = "0.8"
strum = {version = "0.24.0", features = ["derive"]}
term_size = "0.3.2"
time = {version = "0.3.7", features = ["formatting"]}
time-humanize = {version = "0.1.3", features = ["time"]}
tokei = "12.1.2"
toml = "0.5.9"
yaml-rust = "0.4"
[target.'cfg(windows)'.dependencies]
ansi_term = "0.12"
[target.'cfg(not(windows))'.dependencies]
base64 = "0.13.0"
libc = "0.2.123"
[dev-dependencies]
more-asserts = "0.2"
paste = "1.0.7"
[features]
fail-on-deprecated = []