From 46478d8c2c411ba3d6737ffc355e7e079fad4e30 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 29 May 2021 04:19:23 +0000 Subject: [PATCH] build(deps): update aes-ctr requirement from 0.6.0 to 0.99.99 Updates the requirements on [aes-ctr](https://github.com/RustCrypto/block-ciphers) to permit the latest version. - [Release notes](https://github.com/RustCrypto/block-ciphers/releases) - [Commits](https://github.com/RustCrypto/block-ciphers/commits) Signed-off-by: dependabot[bot] --- tetsy-crypto/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tetsy-crypto/Cargo.toml b/tetsy-crypto/Cargo.toml index 6aeee36..0137b6d 100644 --- a/tetsy-crypto/Cargo.toml +++ b/tetsy-crypto/Cargo.toml @@ -15,7 +15,7 @@ required-features = ["publickey"] [dependencies] aes = "0.6.0" -aes-ctr = "0.6.0" +aes-ctr = "0.99.99" block-modes = "0.7.0" digest = "0.9.0" vapory-types = { version = "0.11.1", optional = true, path = "../vapory-types" } @@ -24,7 +24,7 @@ lazy_static = { version = "1.4.0", optional = true } pbkdf2 = "0.6.0" ripemd160 = "0.9.1" rustc-hex = { version = "2.1.0", default-features = false, optional = true } -scrypt = { version = "0.5.0" } +scrypt = { version = "0.7.0" } secp256k1 = { version = "0.20.0", optional = true, features = ["global-context", "recovery", "rand-std"] } sha2 = "0.9.2" subtle = "2.4.0"