Skip to content

Commit

Permalink
Added lto and opt level 3, and added maintenance and build badges
Browse files Browse the repository at this point in the history
  • Loading branch information
gwihlidal committed Feb 4, 2019
1 parent 4aedc43 commit d961b15
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changes

## 0.1.2 (2019-02-04)

* Optimization settings.
* Added build and maintenance badges.

## 0.1.1 (2019-02-04)

* Some minor documentation tweaks.
Expand Down
11 changes: 10 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "smush"
version = "0.1.1"
version = "0.1.2"
authors = ["Graham Wihlidal <[email protected]>"]
description = "Common rust abstraction around a variety of compression codecs."
homepage = "https://github.com/gwihlidal/smush-rs"
Expand All @@ -10,6 +10,15 @@ keywords = ["data", "encode", "compress", "decompress", "pipeline"]
license = "MIT/Apache-2.0"
edition = "2018"

[badges]
travis-ci = { repository = "gwihlidal/smush-rs" }
maintenance = { status = "actively-developed" }

[profile.release]
lto = true
opt-level = 3
codegen-units = 1

[dependencies]
bs58 = "0.2.2"
flate2 = "1.0.6"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
smush = "0.1.1"
smush = "0.1.2"
```

Example:
Expand Down

0 comments on commit d961b15

Please sign in to comment.