Skip to content

Commit

Permalink
Reduce binary size (#131)
Browse files Browse the repository at this point in the history
* Reduce binary size

* Use `opt-level = 3`
  • Loading branch information
lunacookies authored Nov 2, 2023
1 parent b91e974 commit 83ab08f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
members = ["crates/*"]
resolver = "2"

[profile.dev]
panic = "abort"

[profile.release]
panic = "abort"
codegen-units = 1
lto = "fat"
strip = true

0 comments on commit 83ab08f

Please sign in to comment.