From d0078ffc21fe5788bd33b5129e8981a8ce5fbb3f Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Sat, 11 Mar 2023 23:16:49 +0300 Subject: Use `thin` instead of `fat` LTO The performance between `thin` and `fat` is in the margin of error, however `thin` LTO is way faster to build. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index aad21557..79d53417 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,6 +7,6 @@ members = [ ] [profile.release] -lto = true +lto = "thin" debug = 1 incremental = false -- cgit v1.2.3-54-g00ecf