From 1b1a2bf9a2ecab4ffa0dfdc1758061b17c3190f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 18:46:56 +0000 Subject: [PATCH] Update aes requirement from 0.8 to 0.9 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] --- Cargo.toml | 2 +- crates/m-bus-core/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5877493..4c67690 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,7 +51,7 @@ wired-mbus-link-layer = { version = "0.1.0", path = "crates/wired-mbus-link-laye wireless-mbus-link-layer = { version = "0.1.0", path = "crates/wireless-mbus-link-layer" } m-bus-core = { version = "0.1.0", path = "crates/m-bus-core" } m-bus-application-layer = { version = "0.1.0", path = "crates/m-bus-application-layer" } -aes = { version = "0.8", optional = true, default-features = false } +aes = { version = "0.9", optional = true, default-features = false } cbc = { version = "0.1", optional = true, default-features = false } cipher = { version = "0.4", optional = true, default-features = false, features = ["block-padding"] } aes-gcm = { version = "0.10", optional = true, default-features = false, features = ["aes"] } diff --git a/crates/m-bus-core/Cargo.toml b/crates/m-bus-core/Cargo.toml index e6d67e3..8b5d129 100644 --- a/crates/m-bus-core/Cargo.toml +++ b/crates/m-bus-core/Cargo.toml @@ -16,6 +16,6 @@ decryption = ["dep:aes", "dep:cbc", "dep:cipher"] [dependencies] serde = { version = "1.0", features = ["derive"], optional = true } defmt = { version = "1.0.1", optional = true } -aes = { version = "0.8", optional = true } +aes = { version = "0.9", optional = true } cbc = { version = "0.1", optional = true } cipher = { version = "0.4", optional = true }