Skip to content

Commit

Permalink
build(profiles): make the dev profile suitable for embedded (#412)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspar030 authored Sep 12, 2024
2 parents 712efda + 2b13379 commit 343b707
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ incremental = false
codegen-units = 1
debug = true
lto = false
opt-level = 1
opt-level = "s" # Optimize for size even in debug builds

[profile.release]
incremental = false
codegen-units = 1
debug = true
debug = true # Required for defmt
lto = false
opt-level = "s"

Expand Down

0 comments on commit 343b707

Please sign in to comment.