From f235c6c89e010b063beb65408fa3cb283406a1a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Feb 2026 20:54:33 +0000 Subject: [PATCH] Update cipher requirement from 0.4 to 0.5 Updates the requirements on [cipher](https://github.com/RustCrypto/traits) to permit the latest version. - [Commits](https://github.com/RustCrypto/traits/compare/cipher-v0.4.0...cipher-v0.5.0) --- updated-dependencies: - dependency-name: cipher dependency-version: 0.5.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 2cf2a1b..59cb50b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,7 +53,7 @@ m-bus-core = {path = "crates/m-bus-core"} m-bus-application-layer = {path = "crates/m-bus-application-layer"} aes = { version = "0.8", 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"] } +cipher = { version = "0.5", optional = true, default-features = false, features = ["block-padding"] } aes-gcm = { version = "0.10", optional = true, default-features = false, features = ["aes"] } ccm = { version = "0.5", optional = true, default-features = false } diff --git a/crates/m-bus-core/Cargo.toml b/crates/m-bus-core/Cargo.toml index 9dafbbe..8a6727d 100644 --- a/crates/m-bus-core/Cargo.toml +++ b/crates/m-bus-core/Cargo.toml @@ -15,4 +15,4 @@ serde = { version = "1.0", features = ["derive"], optional = true } defmt = { version = "1.0.1", optional = true } aes = { version = "0.8", optional = true } cbc = { version = "0.1", optional = true } -cipher = { version = "0.4", optional = true } +cipher = { version = "0.5", optional = true }