Skip to content

Commit

Permalink
Enable password-hash/std feature (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
li-kai committed Feb 28, 2021
1 parent b47ce58 commit 49db66f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions argon2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ rand_core = { version = "0.6", features = ["std"] }
[features]
default = ["password-hash", "rand"]
rand = ["password-hash/rand_core"]
std = ["password-hash/std"]

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion pbkdf2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ sha2 = "0.9"
default = ["simple"]
parallel = ["rayon", "std"]
simple = ["sha2", "hmac", "password-hash", "base64ct"]
std = []
std = ["password-hash/std"]

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion scrypt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ rand_core = { version = "0.6", features = ["std"] }
[features]
default = ["simple", "std"]
simple = ["password-hash", "base64ct"]
std = []
std = ["password-hash/std"]

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit 49db66f

Please sign in to comment.