Cargo.toml: Enable full LTO in release builds and thin in dev builds. #704

Merged
lx merged 1 commits from jpds/garage:release-build-lto into main 2024-02-07 16:37:03 +00:00
1 changed files with 5 additions and 2 deletions

View File

@ -131,7 +131,10 @@ aws-sdk-config = "1.13"
aws-sdk-s3 = "1.14"
[profile.dev]
lto = "off"
lto = "thin"
[profile.release]
debug = true
lto = true
codegen-units = 1
opt-level = "s"
strip = true