aports/testing/udpt/cargo.toml.patch
2022-01-15 00:06:41 +00:00

17 lines
317 B
Diff

Optimize binary size (2.3 MB -> 1.5 MB)
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,7 +6,10 @@ description = "High performance torrent
edition = "2018"
[profile.release]
-lto = "fat"
+codegen-units = 1
+lto = true
+opt-level = "z"
+panic = "abort"
[dependencies]
serde = {version = "1.0", features = ["derive"]}