From 53bbe95cb3c86fa7f2afc5d21fd1cd28eb919028 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 23:57:53 +0000 Subject: [PATCH] build(deps): update aes requirement from 0.8 to 0.9 in /rust_crypto Updates the requirements on [aes](https://github.com/RustCrypto/block-ciphers) to permit the latest version. - [Commits](https://github.com/RustCrypto/block-ciphers/compare/aes-v0.8.0...aes-v0.9.0) --- updated-dependencies: - dependency-name: aes dependency-version: 0.9.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- rust_crypto/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust_crypto/Cargo.toml b/rust_crypto/Cargo.toml index 4f444a4..aa6389f 100644 --- a/rust_crypto/Cargo.toml +++ b/rust_crypto/Cargo.toml @@ -22,7 +22,7 @@ pyo3 = { version = "0.28.2", features = ["extension-module"], optional = true } # Core cryptography - all audited, production-ready crates argon2 = "0.5" # Argon2id KDF (password hashing) aes-gcm = "0.10" # AES-256-GCM AEAD encryption -aes = "0.8" # AES block cipher (for CTR mode) +aes = "0.9" # AES block cipher (for CTR mode) ctr = "0.9" # CTR mode for streaming encryption cipher = "0.5" # Cipher traits hkdf = "0.13" # HKDF key derivation (RFC 5869)