Merge pull request 'Cargo.toml: Enable full LTO in release builds and thin in dev builds.' (#704) from jpds/garage:release-build-lto into main
All checks were successful
continuous-integration/drone/push Build is passing

Reviewed-on: #704
This commit is contained in:
Alex 2024-02-07 16:37:02 +00:00
commit 59930977e0

View file

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