Skip to content

Commit

Permalink
profiles outside workspace toml are ignored
Browse files Browse the repository at this point in the history
  • Loading branch information
insou22 committed Feb 5, 2022
1 parent 3781e2c commit 8a5749b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions crates/mipsy_web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ git-version = "0.3.5"
derivative = "2.2.0"
gloo-console = "0.2.1"

[profile.release]
# less code to include into binary
panic = 'abort'
# optimization over all codebase ( better optimization, slower build )
codegen-units = 1
# optimization for size ( more aggressive )
opt-level = 'z'
# optimization for size
# opt-level = 's'
# link time optimization using using whole-program analysis
lto = true
# [profile.release]
# # less code to include into binary
# panic = 'abort'
# # optimization over all codebase ( better optimization, slower build )
# codegen-units = 1
# # optimization for size ( more aggressive )
# opt-level = 'z'
# # optimization for size
# # opt-level = 's'
# # link time optimization using using whole-program analysis
# lto = true

0 comments on commit 8a5749b

Please sign in to comment.