aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml9
1 files changed, 8 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index ca3fa19..1f1d5c4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "passwordmaker-rs"
-version = "0.1.0"
+version = "0.2.0"
edition = "2018"
authors = ["Andreas Grois"]
rust-version = "1.52"
@@ -12,6 +12,11 @@ keywords = ["password", "crypto", "password-generator", "security"]
categories = ["cryptography"]
readme = "README.md"
+[features]
+default = ["precomputed_common_max_powers"]
+precomputed_max_powers = ["precomputed_common_max_powers"]
+precomputed_common_max_powers = []
+
[dependencies]
unicode-segmentation = "1.10.0"
@@ -25,6 +30,8 @@ sha-1 = "0.10.0"
sha2 = "0.10.6"
ripemd = "0.1.3"
criterion = "0.4.0"
+rand = "0.8.5"
+rand_xoshiro = "0.6.0"
[[bench]]
name = "hashrate_32"