Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion argon2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ hex-literal = "1"
[features]
default = ["alloc", "getrandom", "simple"]
alloc = ["password-hash?/alloc"]
std = ["alloc", "base64ct/std"]

getrandom = ["simple", "phc/getrandom"]
parallel = ["dep:rayon"]
Expand Down
3 changes: 0 additions & 3 deletions argon2/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,6 @@ compile_error!("this crate builds on 32-bit and 64-bit platforms only");
#[cfg(feature = "alloc")]
extern crate alloc;

#[cfg(feature = "std")]
extern crate std;

mod algorithm;
mod blake2b_long;
mod block;
Expand Down
3 changes: 1 addition & 2 deletions balloon-hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,9 @@ sha2 = "0.11.0-rc.3"
[features]
default = ["alloc", "getrandom", "password-hash"]
alloc = ["password-hash/alloc"]
std = ["alloc", "getrandom"]

getrandom = ["phc/getrandom"]
parallel = ["rayon", "std"]
parallel = ["dep:rayon"]
password-hash = ["dep:password-hash", "dep:phc"]
zeroize = ["dep:zeroize"]

Expand Down
3 changes: 0 additions & 3 deletions balloon-hash/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,6 @@
#[cfg(feature = "alloc")]
extern crate alloc;

#[cfg(feature = "std")]
extern crate std;

mod algorithm;
mod balloon;
mod error;
Expand Down