[package]
edition = "2024"
name = "leenfetch"
version = "1.2.1"
authors = ["DrunkLeen <snape@drunkleen.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, minimal, customizable system info tool in Rust (Neofetch alternative)"
readme = "README.md"
keywords = [
"neofetch",
"system",
"terminal",
"info",
"leenfetch",
]
categories = [
"command-line-utilities",
"visualization",
"os",
]
license = "MIT"
repository = "https://github.com/drunkleen/leenfetch"
[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"
[features]
default = []
x11 = []
[lib]
name = "leenfetch_core"
path = "src/lib.rs"
[[bin]]
name = "leenfetch"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.atty]
version = "0.2.14"
[dependencies.clap]
version = "4.5.27"
features = ["derive"]
[dependencies.dirs]
version = "6.0.0"
[dependencies.json5]
version = "1.0.0"
[dependencies.libc]
version = "0.2.178"
[dependencies.once_cell]
version = "1.19.0"
[dependencies.rand]
version = "0.9.1"
[dependencies.rayon]
version = "1.10.0"
[dependencies.regex]
version = "1.11.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.unicode-width]
version = "0.2.0"
[dependencies.winapi]
version = "0.3.9"
features = [
"winreg",
"winuser",
"winerror",
"winbase",
"winnt",
"fileapi",
"sysinfoapi",
"combaseapi",
"unknwnbase",
"dxgi",
"dxgi1_2",
"setupapi",
"handleapi",
"tlhelp32",
"processthreadsapi",
"winver",
]