Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,8 @@ large_stack_arrays = "allow"
[profile.release]
strip = true
lto = "fat"
# This will still show a panic message, we only skip the unwind.
panic = "abort"

# This profile is meant to mimic the `release` profile as closely as
# possible, but using settings that are more beneficial for iterative
Expand Down Expand Up @@ -450,8 +452,6 @@ strip = "debuginfo"
[profile.minimal-size]
inherits = "release"
opt-level = "z"
# This will still show a panic message, we only skip the unwind
panic = "abort"
codegen-units = 1

# The profile that 'cargo dist' will build with.
Expand Down
Loading