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
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ url = "2.5.4"
[profile.release]
codegen-units = 1
lto = true
strip = true
strip = true # Eliminate debug information to minimize binary size

# the release profile takes a long time to build so we can use this profile during development to save time
# cargo build --profile release-nonlto
Expand All @@ -183,6 +183,7 @@ lto = false
opt-level = 3
overflow-checks = false
rpath = false
strip = false # Retain debug info for flamegraphs

[profile.ci]
inherits = "dev"
Expand Down