From 88055b0650c09e89866783b0e8bf294a6e222b8c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 18:45:41 +0000 Subject: [PATCH] build(deps): bump aes from 0.9.0-rc.4 to 0.9.0 Bumps [aes](https://github.com/RustCrypto/block-ciphers) from 0.9.0-rc.4 to 0.9.0. - [Commits](https://github.com/RustCrypto/block-ciphers/compare/aes-v0.9.0-rc.4...aes-v0.9.0) --- updated-dependencies: - dependency-name: aes dependency-version: 0.9.0 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 6 +++--- ssh-cipher/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4f172a7..f29a4bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -14,13 +14,13 @@ dependencies = [ [[package]] name = "aes" -version = "0.9.0-rc.4" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04097e08a47d9ad181c2e1f4a5fabc9ae06ce8839a333ba9a949bcb0d31fd2a3" +checksum = "66bd29a732b644c0431c6140f370d097879203d79b80c94a6747ba0872adaef8" dependencies = [ "cipher", "cpubits", - "cpufeatures 0.2.17", + "cpufeatures 0.3.0", "zeroize", ] diff --git a/ssh-cipher/Cargo.toml b/ssh-cipher/Cargo.toml index b1b0303..b093180 100644 --- a/ssh-cipher/Cargo.toml +++ b/ssh-cipher/Cargo.toml @@ -24,7 +24,7 @@ encoding = { package = "ssh-encoding", version = "0.3.0-rc.8" } # optional dependencies 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 = { version = "0.9.0", 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 } ctr = { version = "0.10.0-rc.4", optional = true, default-features = false }