Compare commits

..

No commits in common. "3a49f860731cfe1ba9924a0041b78456af9565a4" and "59930977e074a78adaf43f9933612dae835804cf" have entirely different histories.

2 changed files with 2 additions and 3 deletions

View file

@ -45,7 +45,7 @@ else let
inherit (rustLib) fetchCratesIo fetchCrateLocal fetchCrateGit fetchCrateAlternativeRegistry expandFeatures decideProfile genDrvsByProfile;
profilesByName = {
dev = builtins.fromTOML "lto = \"off\"\n";
release = builtins.fromTOML "codegen-units = 1\nlto = true\nopt-level = \"s\"\nstrip = true\n";
release = builtins.fromTOML "debug = true\n";
};
rootFeatures' = expandFeatures rootFeatures;
overridableMkRustCrate = f:

View file

@ -131,8 +131,7 @@ aws-sdk-config = "1.13"
aws-sdk-s3 = "1.14"
[profile.dev]
#lto = "thin" # disabled for now, adds 2-4 min to each CI build
lto = "off"
lto = "thin"
[profile.release]
lto = true