From aae7bbd7c9c81f76c4257bf96e17c3cd9fa7a10c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 23:58:44 +0000 Subject: [PATCH] build(deps): update ctr requirement from 0.9 to 0.10 in /crypto_core Updates the requirements on [ctr](https://github.com/RustCrypto/block-modes) to permit the latest version. - [Commits](https://github.com/RustCrypto/block-modes/compare/ctr-v0.9.0...ctr-v0.10.0) --- updated-dependencies: - dependency-name: ctr dependency-version: 0.10.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crypto_core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto_core/Cargo.toml b/crypto_core/Cargo.toml index 81e3786..137ed47 100644 --- a/crypto_core/Cargo.toml +++ b/crypto_core/Cargo.toml @@ -31,7 +31,7 @@ aes-gcm = "0.10" aes = { version = "0.8", optional = true } # CTR mode for streaming encryption -ctr = { version = "0.9", optional = true } +ctr = { version = "0.10", optional = true } # Cipher traits (BlockEncrypt etc.) cipher = { version = "0.5", optional = true }