cargo: optimise for smaller binary sizes
This commit is contained in:
parent
91b3da7f97
commit
a51d56d5a0
|
@ -7,6 +7,13 @@ description = "A simple, featureful and blazingly fast memory-safe alternative t
|
|||
readme = "README.md"
|
||||
license = "MIT"
|
||||
|
||||
[profile.release]
|
||||
strip = true
|
||||
opt-level = "z"
|
||||
lto = true
|
||||
codegen-units = 1
|
||||
panic = "abort"
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "4.5.2", features = ["derive"] }
|
||||
colored = "2.1.0"
|
||||
|
|
Loading…
Reference in a new issue