From 4e251fdab7ded569cc31067b4d95c0e971a4628a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 18:46:10 +0000 Subject: [PATCH 1/2] build(deps): bump cbc from 0.2.0-rc.4 to 0.2.0 Bumps [cbc](https://github.com/RustCrypto/block-modes) from 0.2.0-rc.4 to 0.2.0. - [Commits](https://github.com/RustCrypto/block-modes/compare/cbc-v0.2.0-rc.4...cbc-v0.2.0) --- updated-dependencies: - dependency-name: cbc dependency-version: 0.2.0 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- ssh-cipher/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4f172a7..5c5d70c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -132,9 +132,9 @@ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" [[package]] name = "cbc" -version = "0.2.0-rc.4" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab1412b9ae2463ede01f1e591412dfbcfeacecf40e8c4c3e0655814c19065c38" +checksum = "98db6aeaef0eeef2c1e3ce9a27b739218825dae116076352ac3777076aa22225" dependencies = [ "cipher", ] diff --git a/ssh-cipher/Cargo.toml b/ssh-cipher/Cargo.toml index b1b0303..1aff7d3 100644 --- a/ssh-cipher/Cargo.toml +++ b/ssh-cipher/Cargo.toml @@ -26,7 +26,7 @@ encoding = { package = "ssh-encoding", version = "0.3.0-rc.8" } aead = { version = "0.6.0-rc.10", optional = true, default-features = false } aes = { version = "0.9.0-rc.4", optional = true, default-features = false } aes-gcm = { version = "0.11.0-rc.3", optional = true, default-features = false, features = ["aes"] } -cbc = { version = "0.2.0-rc.4", optional = true } +cbc = { version = "0.2.0", optional = true } ctr = { version = "0.10.0-rc.4", optional = true, default-features = false } chacha20 = { version = "0.10.0-rc.10", optional = true, default-features = false, features = ["cipher", "legacy"] } des = { version = "0.9.0-rc.3", optional = true, default-features = false } From b7d6629b5d29b1568764c47170cea62217877393 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 14 Apr 2026 08:45:21 -0600 Subject: [PATCH 2/2] Apply suggestion from @tarcieri --- ssh-cipher/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh-cipher/Cargo.toml b/ssh-cipher/Cargo.toml index 1aff7d3..c648fb7 100644 --- a/ssh-cipher/Cargo.toml +++ b/ssh-cipher/Cargo.toml @@ -26,7 +26,7 @@ encoding = { package = "ssh-encoding", version = "0.3.0-rc.8" } aead = { version = "0.6.0-rc.10", optional = true, default-features = false } aes = { version = "0.9.0-rc.4", optional = true, default-features = false } aes-gcm = { version = "0.11.0-rc.3", optional = true, default-features = false, features = ["aes"] } -cbc = { version = "0.2.0", optional = true } +cbc = { version = "0.2", optional = true } ctr = { version = "0.10.0-rc.4", optional = true, default-features = false } chacha20 = { version = "0.10.0-rc.10", optional = true, default-features = false, features = ["cipher", "legacy"] } des = { version = "0.9.0-rc.3", optional = true, default-features = false }