forked from o2sh/onefetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
78 lines (70 loc) · 2.05 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
authors = ["o2sh <[email protected]>"]
categories = ["command-line-utilities"]
description = "Command-line Git information tool"
edition = "2021"
exclude = ["docs/vercel/*"]
keywords = ["git", "cli", "terminal"]
license = "MIT"
name = "onefetch"
readme = "README.md"
repository = "https://github.com/o2sh/onefetch"
homepage = "https://onefetch.dev"
rust-version = "1.62.1"
version = "2.15.1"
[workspace]
members = ["ascii", "image", "manifest"]
[dependencies]
anyhow = "1.0.66"
askalono = "0.4.6"
byte-unit = "4.0.18"
bytecount = "0.6.3"
clap = { version = "4.1.1", features = ["derive"] }
clap_complete = "4.1.0"
git-features-for-configuration-only = { package = "git-features", version = "0.23.1", features = [
"zlib-ng-compat",
] }
git-repository = { version = "0.30.2", default-features = false, features = [
"max-performance-safe",
] }
git2 = { version = "0.15.0", default-features = false }
human-panic = "1.0.3"
image = "0.24.4"
num-format = "0.4.4"
onefetch-ascii = { path = "ascii", version = "2.15.1" }
onefetch-image = { path = "image", version = "2.15.1" }
onefetch-manifest = { path = "manifest", version = "2.15.1" }
owo-colors = "3.5.0"
regex = "1.6.0"
serde = "1.0.147"
serde_json = "1.0.89"
serde_yaml = "0.9.14"
# TODO With the new value parsers, we're really close to being able to eliminate
# the strum dependency
strum = { version = "0.24.1", features = ["derive"] }
terminal_size = "0.2"
time = { version = "0.3.17", features = ["formatting"] }
time-humanize = { version = "0.1.3", features = ["time"] }
tokei = "12.1.2"
typetag = "0.2"
yaml-rust = "0.4.5"
[dev-dependencies]
criterion = "0.4.0"
git-testtools = "0.10.0"
insta = { version = "1.23.0", features = ["json", "redactions"] }
pretty_assertions = "1.3.0"
[[bench]]
name = "repo"
harness = false
[build-dependencies]
lazy_static = "1"
regex = "1"
serde_json = "1"
serde_yaml = "0.9"
tera = { version = "1", default-features = false }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[target.'cfg(windows)'.dependencies]
enable-ansi-support = "0.2.1"
[features]
fail-on-deprecated = []