aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuyuki Ishi <ishitatsuyuki@gmail.com>2018-05-30 18:08:35 +0900
committerJoe Wilm <jwilm@users.noreply.github.com>2018-05-30 10:23:03 -0700
commit2fcdd40a81105128b12b9060c257c85e8be32306 (patch)
treedddb2d06dd88ca02c0980425c80d950b101864bf
parent765949f256aefcc513d0bfb46b64d315f9c2f3d2 (diff)
downloadalacritty-2fcdd40a81105128b12b9060c257c85e8be32306.tar.gz
alacritty-2fcdd40a81105128b12b9060c257c85e8be32306.zip
Reduce debug level for release
Backtraces are useful, but line-level debuginfo bloats the binary, and has impact on compile times notably. This reduces it to function-level debuginfo which is a good compromise point.
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 2489c61c..5c7f4f26 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -56,4 +56,4 @@ gl_generator = "0.9"
[profile.release]
lto = true
-debug = true
+debug = 1