Skip to content

Commit

Permalink
Fix cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Kostassoid committed Sep 16, 2019
1 parent f8e5ecc commit 41c446b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

## [$Unreleased] - $ReleaseDate
## [0.2.0] - 2019-09-16

This release is mostly laying the groundwork for a more serious improvements.

Expand Down
16 changes: 15 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "A command-line tool to generate cryptocurrency wallets"
homepage = "https://github.com/Kostassoid/lethe"
repository = "https://github.com/Kostassoid/lethe"
categories = ["command-line-utilities"]
keywords = ["security", "command-line", "disk", "erase", "wipe", "storage"]
keywords = ["security", "command-line", "disk", "erase", "storage"]
readme = "README.md"
license = "Apache-2.0"
edition = "2018"
Expand Down Expand Up @@ -39,3 +39,17 @@ IOKit-sys = "0.1"
flate2 = "1.0"
assert_matches = "1.3"
#mockers = "0.21.0"

[profile.release]
opt-level = 3
lto = "thin"
incremental = true

[profile.dev]
opt-level = 0

[profile.test]
opt-level = 3
incremental = true
debug-assertions = true
debug = true
4 changes: 2 additions & 2 deletions release.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ disable-publish = true
dev-version-ext = "dev"
pre-release-replacements = [
{file="README.md", search="v[0-9]+\\.[0-9]+\\.[0-9]+", replace="v{{version}}"},
{file="CHANGELOG.md", search="$Unreleased", replace="{{version}}"},
{file="CHANGELOG.md", search="$ReleaseDate", replace="{{date}}"}
{file="CHANGELOG.md", search="_Unreleased_", replace="{{version}}"},
{file="CHANGELOG.md", search="_ReleaseDate_", replace="{{date}}"}
]

0 comments on commit 41c446b

Please sign in to comment.