From f1777146f4a77fdc29cfcd171c62223d0d3b97bc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Dec 2025 17:03:12 +0000 Subject: [PATCH] build(deps): bump aead from 0.6.0-rc.3 to 0.6.0-rc.5 Bumps [aead](https://github.com/RustCrypto/traits) from 0.6.0-rc.3 to 0.6.0-rc.5. - [Commits](https://github.com/RustCrypto/traits/compare/aead-v0.6.0-rc.3...aead-v0.6.0-rc.5) --- updated-dependencies: - dependency-name: aead dependency-version: 0.6.0-rc.5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- ssh-cipher/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f80f797..8dd7393 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,9 +4,9 @@ version = 4 [[package]] name = "aead" -version = "0.6.0-rc.3" +version = "0.6.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03d2d54c4d9e7006f132f615a167865bff927a79ca63d8f637237575ce0a9795" +checksum = "67a578e7d4edaef88aeb9cdd81556f4a62266ce26601317c006a79e8bc58b5af" dependencies = [ "crypto-common", "inout", @@ -201,9 +201,9 @@ dependencies = [ [[package]] name = "crypto-common" -version = "0.2.0-rc.5" +version = "0.2.0-rc.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "919bd05924682a5480aec713596b9e2aabed3a0a6022fab6847f85a99e5f190a" +checksum = "e6165b8029cdc3e765b74d3548f85999ee799d5124877ce45c2c85ca78e4d4aa" dependencies = [ "hybrid-array", ] diff --git a/ssh-cipher/Cargo.toml b/ssh-cipher/Cargo.toml index 7d03987..070cf00 100644 --- a/ssh-cipher/Cargo.toml +++ b/ssh-cipher/Cargo.toml @@ -23,7 +23,7 @@ cipher = "0.5.0-rc.1" encoding = { package = "ssh-encoding", version = "0.3.0-rc.2" } # optional dependencies -aead = { version = "0.6.0-rc.3", optional = true, default-features = false } +aead = { version = "0.6.0-rc.5", optional = true, default-features = false } aes = { version = "0.9.0-rc.2", optional = true, default-features = false } aes-gcm = { version = "0.11.0-rc.2", optional = true, default-features = false, features = ["aes"] } cbc = { version = "0.2.0-rc.2", optional = true }