topic/rust #2

Merged
ian merged 6 commits from topic/rust into main 2023-11-20 13:10:23 +00:00
1 changed files with 7 additions and 0 deletions
Showing only changes of commit b7583f4db0 - Show all commits

View File

@ -7,3 +7,10 @@ edition = "2021"
[dependencies]
clap = { version = "4.4.8", features = ["derive", "unicode", "wrap_help"] }
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true
codegen-units = 1