2024-03-23 21:58:32 +00:00
|
|
|
[package]
|
|
|
|
name = "bunbun"
|
2024-03-31 18:53:58 +01:00
|
|
|
description = "A simple and adorable sysinfo utility."
|
2025-01-07 22:05:25 +00:00
|
|
|
authors = ["Muhammad Nauman Raza <devraza.hazard643@slmail.me>"]
|
2024-10-29 21:23:09 +00:00
|
|
|
version = "1.5.0"
|
2024-03-23 21:58:32 +00:00
|
|
|
edition = "2021"
|
2024-03-31 18:53:58 +01:00
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
license-file = "LICENSE"
|
|
|
|
readme = "README.md"
|
2024-03-23 21:58:32 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2025-01-07 22:08:57 +00:00
|
|
|
clap = { version = "4.5.24", features = ["derive"] }
|
2024-09-24 21:28:39 +01:00
|
|
|
owo-colors = "4.1.0"
|
2025-01-07 22:08:57 +00:00
|
|
|
sysinfo = "0.33.1"
|
2024-12-09 22:53:26 +00:00
|
|
|
whoami = "2.0.0-pre.0"
|
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!
|