-
Notifications
You must be signed in to change notification settings - Fork 303
Expand file tree
/
Copy pathCargo.toml
More file actions
86 lines (77 loc) · 2 KB
/
Cargo.toml
File metadata and controls
86 lines (77 loc) · 2 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
[workspace.package]
authors = ["o2sh <ossama-hjaji@live.fr>"]
edition = "2024"
license = "MIT"
version = "2.26.1"
repository = "https://github.com/o2sh/onefetch"
[workspace]
members = ["ascii", "image", "manifest"]
[package]
authors.workspace = true
edition.workspace = true
version.workspace = true
license.workspace = true
repository.workspace = true
categories = ["command-line-utilities"]
description = "Command-line Git information tool"
exclude = ["docs/vercel/*"]
keywords = ["git", "cli", "terminal"]
name = "onefetch"
homepage = "https://onefetch.dev"
rust-version = "1.88.0"
[dependencies]
anyhow = "1.0.101"
askalono = "0.5.0"
byte-unit = "5.2.0"
clap = { version = "4.5.57", features = ["derive"] }
clap_complete = "4.5.65"
gix = { version = "0.80.0", default-features = false, features = [
"max-performance-safe",
"blob-diff",
"mailmap",
"index",
"status",
] }
gix-features = "0.46.0"
globset = "0.4.18"
human-panic = "2.0.6"
image = { version = "0.25.9", default-features = false, features = [
"color_quant",
"jpeg",
"png",
"webp",
] }
num-format = "0.4.4"
onefetch-ascii = { path = "ascii" }
onefetch-image = { path = "image" }
onefetch-manifest = { path = "manifest" }
owo-colors = "4.3.0"
regex = "1.12.2"
serde = "1.0.228"
serde_json = "1.0.149"
serde_yaml = "0.9.34"
strum = { version = "0.28.0", features = ["derive"] }
time = { version = "0.3.47", features = ["formatting"] }
time-humanize = { version = "0.1.3", features = ["time"] }
tokei = "14.0.0"
typetag = "0.2.21"
[dev-dependencies]
criterion = "0.8.2"
gix-testtools = "0.18.0"
insta = { version = "1.46.3", features = ["json", "redactions"] }
rstest = "0.26.1"
[[bench]]
name = "repo"
harness = false
[build-dependencies]
lazy_static = "1.5.0"
regex = "1.12.2"
serde_json = "1.0.149"
serde_yaml = "0.9.34"
tera = { version = "1.20.1", default-features = false }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.12"
[target.'cfg(windows)'.dependencies]
enable-ansi-support = "0.3.1"
[features]
fail-on-deprecated = []