From 83661207174b256d87559492e17a5fc1466328c9 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 25 May 2026 17:23:29 -0600 Subject: [PATCH] ssh-cipher v0.3.0-rc.10 --- Cargo.lock | 2 +- ssh-cipher/Cargo.toml | 2 +- ssh-key/Cargo.toml | 2 +- ssh-protocol/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 91e30a0..eb0b5e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -875,7 +875,7 @@ dependencies = [ [[package]] name = "ssh-cipher" -version = "0.3.0-rc.9" +version = "0.3.0-rc.10" dependencies = [ "aead", "aes", diff --git a/ssh-cipher/Cargo.toml b/ssh-cipher/Cargo.toml index 58e701a..12073f3 100644 --- a/ssh-cipher/Cargo.toml +++ b/ssh-cipher/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssh-cipher" -version = "0.3.0-rc.9" +version = "0.3.0-rc.10" description = """ Pure Rust implementation of SSH symmetric encryption including support for the modern aes128-gcm@openssh.com/aes256-gcm@openssh.com and chacha20-poly1305@openssh.com algorithms as well diff --git a/ssh-key/Cargo.toml b/ssh-key/Cargo.toml index f6e3aff..627cdbd 100644 --- a/ssh-key/Cargo.toml +++ b/ssh-key/Cargo.toml @@ -19,7 +19,7 @@ rust-version = "1.85" # ssh-cipher [dependencies.cipher] -version = "0.3.0-rc.9" +version = "0.3.0-rc.10" package = "ssh-cipher" features = ["zeroize"] diff --git a/ssh-protocol/Cargo.toml b/ssh-protocol/Cargo.toml index 4baa5f1..5ba248d 100644 --- a/ssh-protocol/Cargo.toml +++ b/ssh-protocol/Cargo.toml @@ -16,7 +16,7 @@ edition = "2024" rust-version = "1.85" [dependencies] -cipher = { package = "ssh-cipher", version = "0.3.0-rc.9", default-features = false } +cipher = { package = "ssh-cipher", version = "0.3.0-rc.10", default-features = false } encoding = { package = "ssh-encoding", version = "0.3", default-features = false } key = { package = "ssh-key", version = "0.7.0-rc.8", default-features = false }