From 008c9f4f72f709d58304c18234997903fa8fc105 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 09:36:07 +0000 Subject: [PATCH] deps(deps): bump cbc from 0.1.2 to 0.2.1 Bumps [cbc](https://github.com/RustCrypto/block-modes) from 0.1.2 to 0.2.1. - [Commits](https://github.com/RustCrypto/block-modes/compare/cbc-v0.1.2...cbc-v0.2.1) --- updated-dependencies: - dependency-name: cbc dependency-version: 0.2.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 27 +++++++++++++++++++++++---- crates/perry-stdlib/Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3b865a620..6e4690880 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -740,6 +740,15 @@ dependencies = [ "generic-array", ] +[[package]] +name = "block-padding" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "710f1dd022ef4e93f8a438b4ba958de7f64308434fa6a87104481645cc30068b" +dependencies = [ + "hybrid-array", +] + [[package]] name = "block2" version = "0.6.2" @@ -987,6 +996,15 @@ dependencies = [ "cipher 0.4.4", ] +[[package]] +name = "cbc" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce2dc9ee5f88d11e0beb842c88b33c8a5cf0d1329c4b19494af42b07dbfe8896" +dependencies = [ + "cipher 0.5.2", +] + [[package]] name = "cc" version = "1.2.67" @@ -3884,7 +3902,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" dependencies = [ - "block-padding", + "block-padding 0.3.3", "generic-array", ] @@ -3894,6 +3912,7 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7" dependencies = [ + "block-padding 0.4.2", "hybrid-array", ] @@ -4434,7 +4453,7 @@ checksum = "f560f57dfb9142a02d673e137622fd515d4231e51feb8b4af28d92647d83f35b" dependencies = [ "aes 0.8.4", "bitflags 2.12.1", - "cbc", + "cbc 0.1.2", "ecb", "encoding_rs", "flate2", @@ -6151,7 +6170,7 @@ dependencies = [ "brotli", "bson", "bytes", - "cbc", + "cbc 0.2.1", "chacha20poly1305", "chrono", "clap", @@ -6596,7 +6615,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e847e2c91a18bfa887dd028ec33f2fe6f25db77db3619024764914affe8b69a6" dependencies = [ "aes 0.8.4", - "cbc", + "cbc 0.1.2", "der 0.7.10", "pbkdf2 0.12.2", "scrypt", diff --git a/crates/perry-stdlib/Cargo.toml b/crates/perry-stdlib/Cargo.toml index 8ba441db3..535492477 100644 --- a/crates/perry-stdlib/Cargo.toml +++ b/crates/perry-stdlib/Cargo.toml @@ -411,7 +411,7 @@ rsa = { version = "0.9", optional = true, default-features = false, features = [ x509-cert = { version = "0.2", optional = true, default-features = false, features = ["pem"] } spki = { version = "0.7", optional = true, default-features = false, features = ["pem", "alloc"] } aes = { version = "0.8", optional = true } -cbc = { version = "0.1", optional = true } +cbc = { version = "0.2", optional = true } ecb = { version = "0.1", optional = true } ctr = { version = "0.9", optional = true } scrypt = { version = "0.11", optional = true }