forked from o2sh/onefetch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
96 lines (86 loc) · 2.68 KB
/
Copy pathCargo.toml
File metadata and controls
96 lines (86 loc) · 2.68 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[workspace.package]
authors = [ "o2sh <ossama-hjaji@live.fr>" ]
edition = "2021"
license = "MIT"
repository = "https://github.com/o2sh/onefetch"
version = "2.24.0"
[workspace]
members = [ "ascii", "image", "manifest" ]
[workspace.dependencies]
anyhow = "1.0"
clap = { version = "4.5.34", features = [ "derive" ] }
image = { version = "0.25.6", default-features = false, features = [
"color_quant",
"jpeg",
"png",
"webp",
] }
owo-colors = "4.2.1"
strum = { version = "0.26.3", features = [ "derive" ] }
[package]
authors.workspace = true
categories = [ "command-line-utilities" ]
description = "Command-line Git information tool"
edition.workspace = true
exclude = [ "docs/vercel/*" ]
homepage = "https://onefetch.dev"
keywords = [ "cli", "git", "terminal" ]
license.workspace = true
name = "onefetch"
repository.workspace = true
rust-version = "1.82.0"
version.workspace = true
[dependencies]
anyhow.workspace = true
askalono = "0.5.0"
byte-unit = "5.1.6"
clap.workspace = true
clap_complete = "4.5.47"
crossbeam-channel = "0.5.15"
gix = { version = "0.72.1", default-features = false, features = [
"blob-diff",
"index",
"mailmap",
"max-performance-safe",
"status",
] }
gix-features = { version = "0.42.1", features = [ "zlib-ng" ] }
globset = "0.4.16"
human-panic = "2.0.2"
image.workspace = true
num-format = "0.4.4"
onefetch-ascii = { path = "ascii", version = "2.19.0" }
onefetch-image = { path = "image", version = "2.19.0" }
onefetch-manifest = { path = "manifest", version = "2.19.0" }
owo-colors.workspace = true
regex = "1.11.1"
serde = "1.0"
serde_json = "1.0"
serde_yaml = "0.9.34"
# TODO With the new value parsers, we're really close to being able to eliminate
# the strum dependency
strum.workspace = true
time = { version = "0.3.41", features = [ "formatting" ] }
time-humanize = { version = "0.1.3", features = [ "time" ] }
tokei = "13.0.0-alpha.8"
typetag = "0.2"
[dev-dependencies]
criterion = "0.6.0"
gix-testtools = "0.16.1"
insta = { version = "1.43.1", features = [ "json", "redactions" ] }
rstest = "0.25.0"
[[bench]]
harness = false
name = "repo"
[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 = [ ]