Skip to content

Commit

Permalink
chore: allow for more aggresive optimization in build options (#455)
Browse files Browse the repository at this point in the history
<!-- If applicable - remember to add the PR to the EA Rust project (ONLY
IF THERE IS NO LINKED ISSUE) -->

## Description

<!-- Please describe the motivation & changes introduced by this PR -->

## Linked issues

<!-- Please use "Resolves #<issue_no> syntax in case this PR should be
linked to an issue -->

## Important implementation details

<!-- if any, optional section -->
  • Loading branch information
kkafar authored Oct 31, 2023
1 parent 0c06ae8 commit 5770013
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,8 @@ opt-level = 0
debug = true

[profile.release]
debug = 1 # For profiling, should be disabled for production builds
# debug = 1 # For profiling, should be disabled for production builds
lto = "fat"
panic = "abort"
opt-level = 3

0 comments on commit 5770013

Please sign in to comment.