Skip to content

Commit

Permalink
Remove: sha2 default features
Browse files Browse the repository at this point in the history
Fix: unecessary sha2 default dependencies
Closes Argyle-Software#58
  • Loading branch information
mberry authored Jan 28, 2023
2 parents d20228b + 47b8d41 commit d7558f7
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,10 @@ readme = "readme.md"
[dependencies]
rand_core = {version = "0.6.4", default-features = false }
wasm-bindgen = { version = "0.2.83", optional = true }
sha2 = { version = "0.10.6", optional = true }
getrandom = {version = "0.2.8", features = ["js"], optional = true}
zeroize = { version = "1.5.7", features = ["derive"], optional = true}
criterion = { version = "0.4.0", features = ["html_reports"], optional = true}

# TODO: Add rustcrypto AES-CTR feature for 90's mode
# aes-ctr = {version = "0.6.0", optional = true}
sha2 = { version = "0.10.6", optional = true , default-features = false }
getrandom = { version = "0.2.8", features = ["js"], optional = true }
zeroize = { version = "1.5.7", features = ["derive"], optional = true }
criterion = { version = "0.4.0", features = ["html_reports"], optional = true }

[dependencies.rand]
version = "0.8.5"
Expand Down

0 comments on commit d7558f7

Please sign in to comment.