From b62f1d256625d376cb08d902a06cfd6cde27261e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 02:29:12 +0000 Subject: [PATCH] chore(deps): Update cbc requirement from 0.1 to 0.2 Updates the requirements on [cbc](https://github.com/RustCrypto/block-modes) to permit the latest version. - [Commits](https://github.com/RustCrypto/block-modes/compare/cbc-v0.1.0...cbc-v0.2.0) --- updated-dependencies: - dependency-name: cbc dependency-version: 0.2.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 323f459..5e7e361 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,7 +52,7 @@ sha2 = "0.10" sha1 = "0.10" zeroize = { version = "1.8", features = ["derive"] } aes = "0.8" -cbc = { version = "0.1", features = ["alloc"] } +cbc = { version = "0.2", features = ["alloc"] } hmac = "0.12" constant_time_eq = "0.4" getrandom = { version = "0.3", features = ["wasm_js"] }