From 2292db091868b91827edc67b94104fbf832673dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Jul 2021 23:11:07 +0000 Subject: [PATCH] Update ctr requirement from 0.3 to 0.8 Updates the requirements on [ctr](https://github.com/RustCrypto/stream-ciphers) to permit the latest version. - [Release notes](https://github.com/RustCrypto/stream-ciphers/releases) - [Commits](https://github.com/RustCrypto/stream-ciphers/compare/ctr-v0.3.0...ctr-v0.8.0) --- updated-dependencies: - dependency-name: ctr dependency-type: direct:production ... 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 55e0090a3e3..28a377a85d3 100644 --- a/protocols/secio/Cargo.toml +++ b/protocols/secio/Cargo.toml @@ -15,7 +15,7 @@ maintenance = { status = "deprecated" } [dependencies] aes-ctr = "0.3" aesni = { version = "0.6", features = ["nocheck"], optional = true } -ctr = "0.3" +ctr = "0.8" futures = "0.3.1" hmac = "0.9.0" lazy_static = "1.2.0"