Skip to content

Commit

Permalink
reduce release binary size; bump patch level
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed May 28, 2020
1 parent 945cd4f commit e731254
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
### What's new…

#### v1.1.1

* Reduce file-size of produced binaries

#### v1.1.0

* Add the --package-size-limit flag to allow exiting with a non-zero code if the estimated
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-diet"
version = "1.1.0"
version = "1.1.1"
authors = ["Sebastian Thiel <[email protected]>"]
edition = "2018"
repository = "https://github.com/the-lean-crate/cargo-diet"
Expand Down Expand Up @@ -42,8 +42,9 @@ name="cargo-diet"
path="src/bin/main.rs"

[profile.release]
panic = 'unwind'
panic = 'abort'
lto = "fat"
codegen-units = 1
incremental = false
overflow-checks = true
opt-level="z"

0 comments on commit e731254

Please sign in to comment.