[package]
name = "retch-cli"
version = "0.2.3"
edition = "2021"
authors = ["Ken Tobias"]
description = "A fast, feature-rich system information fetcher written in Rust (similar to fastfetch or neofetch)"
license = "GPL-3.0"
repository = "https://github.com/l1a/retch"
readme = "README.md"
keywords = ["system", "fetch", "cli"]
categories = ["command-line-utilities"]
[[bin]]
name = "retch"
path = "src/main.rs"
[dependencies]
sysinfo = { version = "0.39", features = ["component"] }
clap = { version = "4.6", features = ["derive"] }
chrono = "0.4"
serde = { version = "1.0", features = ["derive"] }
toml = "1.1"
clap_complete = "4.6"
clap_complete_nushell = "4.6"
dirs = "6.0"
anyhow = "1.0"
owo-colors = "4.0"
image = { version = "0.25", optional = true }
base64 = { version = "0.22", optional = true }
rusqlite = { version = "0.39", features = ["bundled"] }
battery = "0.7"
icy_sixel = { version = "0.5", optional = true }
[features]
default = ["graphics"]
graphics = ["image", "base64", "icy_sixel"]