From 5efa0874504c569e3fd70e25d5a56d29d592ee8a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 30 Apr 2021 08:15:06 +0000 Subject: [PATCH] Update scrypt requirement from 0.6.1 to 0.7.0 Updates the requirements on [scrypt](https://github.com/RustCrypto/password-hashes) to permit the latest version. - [Release notes](https://github.com/RustCrypto/password-hashes/releases) - [Commits](https://github.com/RustCrypto/password-hashes/compare/scrypt-v0.6.1...scrypt-v0.7.0) Signed-off-by: dependabot[bot] --- ethsign-crypto/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethsign-crypto/Cargo.toml b/ethsign-crypto/Cargo.toml index cf3b10c..2eb7d09 100644 --- a/ethsign-crypto/Cargo.toml +++ b/ethsign-crypto/Cargo.toml @@ -11,7 +11,7 @@ license = "GPL-3.0" [dependencies] pbkdf2 = { version = "0.7.1", features = [ "parallel" ], default-features = false } -scrypt = "0.6.1" +scrypt = "0.7.0" sha2 = "0.9.1" hmac = "0.10.1" aes-ctr = "0.6.0"