Skip to content

Commit

Permalink
Change (#38)
Browse files Browse the repository at this point in the history
* Upgrade crates

* Optimization in Cargo.toml
  • Loading branch information
vschwaberow authored Sep 13, 2022
1 parent f86a794 commit 845ad58
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustgenhash"
version = "0.5.4"
version = "0.5.5"
license = "MIT/Apache-2.0"
authors = ["Volker Schwaberow <[email protected]>"]
description = "A tool to generate hashes from the command line."
Expand All @@ -12,6 +12,12 @@ edition = "2018"
categories = ["command-line-utilities", "cryptography"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[profile.release]
strip = "symbols"
lto = true
codegen-units = 1
opt-level = "s"

[features]
default = ["std"]
std = []
Expand All @@ -20,8 +26,8 @@ std = []
argon2 = "0.4.1"
balloon-hash = "0.3.0"
blake2 = "0.10.4"
clap = { version = "3.2.20", features = ["derive", "cargo"] }
clap_complete = "3.2.4"
clap = { version = "3.2.21", features = ["derive", "cargo"] }
clap_complete = "3.2.5"
digest = { version = "0.10.3", features = ["std"] }
gost94 = "0.10.3"
groestl = "0.10.1"
Expand Down

0 comments on commit 845ad58

Please sign in to comment.