2024-03-23 21:58:32 +00:00
|
|
|
[package]
|
|
|
|
name = "bunbun"
|
2024-03-24 20:41:55 +00:00
|
|
|
version = "1.2.0"
|
2024-03-23 21:58:32 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-24 12:48:11 +00:00
|
|
|
clap = { version = "4.5.3", features = ["derive"] }
|
2024-03-23 21:58:32 +00:00
|
|
|
colored = "2.1.0"
|
2024-03-23 22:35:06 +00:00
|
|
|
sysinfo = "0.30.7"
|
|
|
|
whoami = "1.5.1"
|
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!
|