Skip to content

Commit

Permalink
improve dev build times for everyone (#2133)
Browse files Browse the repository at this point in the history
improve dev build times for everyone

---------

Co-authored-by: tbro <tbro@users.noreply.github.com>
  • Loading branch information
tbro and tbro authored Oct 9, 2024
1 parent 05800f0 commit d4cb7a9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,12 @@ paste = "1.0"
rand = "0.8.5"
time = "0.3"
trait-set = "0.3.0"
[profile.dev]
# No optimizations
opt-level = 0
# Skip compiling the debug information.
debug = false
# Skip linking debug information.
strip = "debuginfo"
[profile.dev.package."*"]
opt-level = 3

0 comments on commit d4cb7a9

Please sign in to comment.