From e14bca37b785eead4a797581853532c7e0cc5fe3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Oct 2020 07:12:56 +0000 Subject: [PATCH] Update aesni requirement from 0.6 to 0.10 Updates the requirements on [aesni](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/compare/aesni-v0.6.0...aesni-v0.10.0) Signed-off-by: dependabot[bot] --- protocols/secio/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/secio/Cargo.toml b/protocols/secio/Cargo.toml index dbc329debb2..29de234849b 100644 --- a/protocols/secio/Cargo.toml +++ b/protocols/secio/Cargo.toml @@ -14,7 +14,7 @@ maintenance = { status = "deprecated" } [dependencies] aes-ctr = "0.3" -aesni = { version = "0.6", features = ["nocheck"], optional = true } +aesni = { version = "0.10", features = ["nocheck"], optional = true } ctr = "0.3" futures = "0.3.1" hmac = "0.9.0"