Parcourir la source

feat: opt binary size for `minimal` profile

Yujia Qiao il y a 4 ans
Parent
commit
467afe279a
1 fichiers modifiés avec 7 ajouts et 1 suppressions
  1. 7 1
      Cargo.toml

+ 7 - 1
Cargo.toml

@@ -16,12 +16,18 @@ tls = ["tokio-native-tls"]
 noise = ["snowstorm", "base64"]
 
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+[profile.release]
+lto = true
+
 [profile.bench]
 debug = 1
 
 [profile.minimal]
 inherits = "release"
-opt-level = "s"
+opt-level = "z"
+lto = true
+codegen-units = 1
+panic = "abort"
 
 [dependencies]
 tokio = { version = "1", features = ["full"] }