summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Worthe <justin@jemstep.com>2020-03-25 13:56:45 +0200
committerJustin Worthe <justin@jemstep.com>2020-03-25 13:56:45 +0200
commit38c4e438687eadcda51a54e7afacf2d18019ee2b (patch)
tree2563a8e686a1f12fcd9d22a05cd13f0a1fdd5daa
parentfe4deda67e4997db49625937fb1cf7457d2f5e69 (diff)
Added comment to explain LTO flog
-rw-r--r--Cargo.toml5
1 files changed, 4 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e722424..f441308 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -20,4 +20,7 @@ quickcheck = "0.9.2"
quickcheck_macros = "0.9.1"
[profile.release]
-lto = true \ No newline at end of file
+
+# Turns Link-Time Optimization up to the MAX! Results in slower
+# release build times, but faster and significantly smaller binaries.
+lto = true