bunbun/Cargo.toml

23 lines
608 B
TOML
Raw Normal View History

2024-03-23 21:58:32 +00:00
[package]
name = "bunbun"
description = "A simple and adorable sysinfo utility."
authors = ["Muhammad Nauman Raza <devraza@skiff.com>"]
version = "1.4.0"
2024-03-23 21:58:32 +00:00
edition = "2021"
categories = ["command-line-utilities"]
license-file = "LICENSE"
readme = "README.md"
2024-03-23 21:58:32 +00:00
[dependencies]
2024-09-24 21:28:39 +01:00
clap = { version = "4.5.18", features = ["derive"] }
owo-colors = "4.1.0"
sysinfo = "0.31.4"
whoami = "1.5.2"
2024-03-23 22:39:24 +00:00
[profile.release]
strip = true # Strip debug symbols
opt-level = "z" # Optimise for size
lto = true # Enable link type optimisation
codegen-units = 1 # Reduce parallel code generation units
panic = "abort" # Abort on panic!