summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorManos Pitsidianakis <el13635@mail.ntua.gr>2020-10-11 17:19:10 +0300
committerManos Pitsidianakis <el13635@mail.ntua.gr>2020-10-11 18:11:04 +0300
commit19891a304271fb6b1d2240e5222e1ddeb29ff444 (patch)
treef92553d1c9cc4a1307080c5492cc1f1290bb7b4a /Cargo.toml
parent9ce62c735a80a5168c9d5982fe8ae9ac0e250fe0 (diff)
Cargo.toml: set codegen-units = 1
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index ffff0f15..d7dd6328 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -65,7 +65,8 @@ proc-macro2 = "1.0.18"
[profile.release]
lto = "fat"
-opt-level = "z"
+codegen-units = 1
+opt-level = "s"
debug = false
[workspace]