Skip to content

Commit

Permalink
Turn on panic = "abort" by default (#1597)
Browse files Browse the repository at this point in the history
This reduces the size of a release naga binary on macOS
from 3.5MB to 3.2MB. It's also the configuration we use
for naga in Firefox.
  • Loading branch information
jrmuizel authored Dec 27, 2021
1 parent f2832b8 commit 848ae3d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ petgraph = { version ="0.6", optional = true }
pp-rs = { version = "0.2.1", optional = true }
hexf-parse = { version = "0.2.1", optional = true }

[profile.release]
panic = "abort"

[profile.dev]
panic = "abort"

[features]
default = []
dot-out = []
Expand Down

0 comments on commit 848ae3d

Please sign in to comment.