chore: Enable LTO, panic=abort, strip-true to optimize size

This commit is contained in:
Michael Aaron Murphy 2022-03-29 13:15:51 +02:00 committed by Michael Murphy
parent bacada02c2
commit 846c4106f8

View file

@ -18,6 +18,11 @@ serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
serde_with = "1.12.0"
[profile.release]
lto = true
panic = "abort"
strip = true
[dependencies.tokio]
version = "1.17.0"
features = ["io-std", "io-util"]