Skip to content

Commit

Permalink
pbkdf2: bump crypto-mac dependency to v0.9 (RustCrypto#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Aug 18, 2020
1 parent c956122 commit 233b2db
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 10 deletions.
22 changes: 16 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pbkdf2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ categories = ["cryptography", "no-std"]
edition = "2018"

[dependencies]
crypto-mac = "0.8.0"
crypto-mac = "0.9"

rayon = { version = "1", optional = true }
base64 = { version = "0.12", default-features = false, features = ["alloc"], optional = true }
rand = { version = "0.7", default-features = false, optional = true }
rand_core = { version = "0.5", default-features = false, features = ["getrandom"], optional = true }
hmac = { version = "0.8", default-features = false, optional = true }
hmac = { version = "0.9", default-features = false, optional = true }
sha2 = { version = "0.9", default-features = false, optional = true }
subtle = { version = "2", default-features = false, optional = true }

[dev-dependencies]
hmac = "0.8"
hmac = "0.9"
sha-1 = "0.9"
sha2 = "0.9"

Expand Down
2 changes: 1 addition & 1 deletion scrypt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ categories = ["cryptography"]
edition = "2018"

[dependencies]
hmac = "0.8"
hmac = "0.9"
pbkdf2 = { version = "0.4", default-features = false, path = "../pbkdf2" }
sha2 = { version = "0.9", default-features = false }

Expand Down

0 comments on commit 233b2db

Please sign in to comment.