From 74bf53c60bfecd558ddceac6aea9508601ab681b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Jun 2026 12:35:02 +0000 Subject: [PATCH] deps(deps): bump ctr from 0.9.2 to 0.10.1 Bumps [ctr](https://github.com/RustCrypto/block-modes) from 0.9.2 to 0.10.1. - [Commits](https://github.com/RustCrypto/block-modes/compare/ctr-v0.9.2...ctr-v0.10.1) --- updated-dependencies: - dependency-name: ctr dependency-version: 0.10.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 ++++++++++++-- crates/perry-stdlib/Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d713a4a4ab..9f0ee5b15c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -49,7 +49,7 @@ dependencies = [ "aead", "aes 0.8.4", "cipher 0.4.4", - "ctr", + "ctr 0.9.2", "ghash", "subtle", ] @@ -1090,6 +1090,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e8cf2a2c93cd704877c0858356ed03480ff301ee950b43f1cbe4573b088bfa6c" dependencies = [ + "block-buffer 0.12.0", "crypto-common 0.2.2", "inout 0.2.2", ] @@ -1501,6 +1502,15 @@ dependencies = [ "cipher 0.4.4", ] +[[package]] +name = "ctr" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baaca1c4b237092596f64d571e9db6ce4109c4ef9742e27590f1709594461f21" +dependencies = [ + "cipher 0.5.2", +] + [[package]] name = "ctutils" version = "0.4.2" @@ -5839,7 +5849,7 @@ dependencies = [ "chrono", "clap", "cron 0.16.0", - "ctr", + "ctr 0.10.1", "dashmap", "ecb", "ed25519-dalek", diff --git a/crates/perry-stdlib/Cargo.toml b/crates/perry-stdlib/Cargo.toml index bba89bd4b1..9f8258505e 100644 --- a/crates/perry-stdlib/Cargo.toml +++ b/crates/perry-stdlib/Cargo.toml @@ -377,7 +377,7 @@ spki = { version = "0.7", optional = true, default-features = false, features = aes = { version = "0.8", optional = true } cbc = { version = "0.1", optional = true } ecb = { version = "0.1", optional = true } -ctr = { version = "0.9", optional = true } +ctr = { version = "0.10", optional = true } scrypt = { version = "0.11", optional = true } pbkdf2 = { version = "0.13", features = ["hmac"], optional = true } argon2 = { version = "0.5", optional = true }