-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
88 lines (77 loc) · 2.41 KB
/
Cargo.toml
File metadata and controls
88 lines (77 loc) · 2.41 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
[package]
name = "leenfetch"
version = "1.2.1"
edition = "2024"
description = "Fast, minimal, customizable system info tool in Rust (Neofetch alternative)"
license = "MIT"
repository = "https://github.com/drunkleen/leenfetch"
readme = "README.md"
categories = ["command-line-utilities", "visualization", "os"]
keywords = ["neofetch", "system", "terminal", "info", "leenfetch"]
authors = ["DrunkLeen <snape@drunkleen.com>"]
[features]
default = []
x11 = []
[lib]
name = "leenfetch_core"
path = "src/lib.rs"
[dependencies]
anyhow = "1.0"
atty = "0.2.14"
clap = { version = "4.5.27", features = ["derive"] }
dirs = "6.0.0"
libc = "0.2.178"
rand = "0.9.1"
regex = "1.11.1"
json5 = "1.0.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
unicode-width = "0.2.0"
rayon = "1.10.0"
once_cell = "1.19.0"
winapi = { version = "0.3.9", features = [
"winreg",
"winuser",
"winerror",
"winbase",
"winnt",
"fileapi",
"sysinfoapi",
"combaseapi",
"unknwnbase",
"dxgi",
"dxgi1_2",
"setupapi",
"handleapi",
"tlhelp32",
"processthreadsapi",
"winver",
] }
[package.metadata.dist]
ci = true
changelog = true
include = ["README.md", "LICENSE"]
[package.metadata.deb]
name = "leenfetch"
maintainer = "DrunkLeen <snape@drunkleen.com>"
extended-description = "Fast, minimal, customizable system info tool in Rust (Neofetch alternative)"
license-file = "LICENSE"
depends = "libc6 (>= 2.27), libgcc1 (>= 1:3.0), libx11-6 (>= 2:1.6.4), libxrandr2 (>= 2:1.5.0), libxext6 (>= 2:1.3.3), libxrender1 (>= 1:0.9.10), libxcb1 (>= 1.13), libxau6 (>= 1:1.0.8), libxdmcp6 (>= 1:1.1.2)"
section = "utils"
priority = "optional"
[package.metadata.rpm]
name = "leenfetch"
summary = "Fast and customizable system info tool for the terminal"
maintainer = "DrunkLeen <snape@drunkleen.com>"
extended-description = "Fast, minimal, customizable system info tool in Rust (Neofetch alternative)"
depends = "libc6 (>= 2.27), libgcc1 (>= 1:3.0), libx11-6 (>= 2:1.6.4), libxrandr2 (>= 2:1.5.0), libxext6 (>= 2:1.3.3), libxrender1 (>= 1:0.9.10), libxcb1 (>= 1.13), libxau6 (>= 1:1.0.8), libxdmcp6 (>= 1:1.1.2)"
section = "utils"
priority = "optional"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
leenfetch = { path = "/usr/bin/leenfetch" }
[package.metadata.rpm.target.x86_64-unknown-linux-gnu]
arch = "x86_64"
[package.metadata.rpm.target.aarch64-unknown-linux-gnu]
arch = "aarch64"