cargo: Cheap tricks for faster binaries

Signed-off-by: ATechnoHazard <amolele@gmail.com>
This commit is contained in:
Amogh Lele 2020-06-26 13:35:42 +05:30
parent 2ada994764
commit 1aa0c5c278
No known key found for this signature in database
GPG Key ID: F475143EDEDEBA3C

View File

@ -24,3 +24,8 @@ slog-async = "2.5.0"
bcrypt = "0.8.0" bcrypt = "0.8.0"
chrono = "0.4.11" chrono = "0.4.11"
uuid = { version = "0.8.1", features = ["serde", "v4"] } uuid = { version = "0.8.1", features = ["serde", "v4"] }
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"