We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e570306 + cf98d92 commit 624ee38Copy full SHA for 624ee38
2 files changed
CHANGELOG.md
@@ -19,6 +19,7 @@ Status: Available for use
19
- #62: Use shell_words to split the outer shell so that more complex outer shells can be used.
20
- Load values from files relative to the floki config file, not from the
21
current working directory.
22
+- Optimise the release build for size
23
24
## [1.2.0] - 2023-07-07
25
Cargo.toml
@@ -35,3 +35,9 @@ shell-words = "1.1.0"
35
36
[dev-dependencies]
37
tempfile = "3.6.0"
38
+
39
+[profile.release]
40
+strip = true # Automatically strip symbols from the binary.
41
+opt-level = "z" # Optimize for size.
42
+lto = true
43
+codegen-units = 1
0 commit comments