From 17f70de3c597e0f813c945697c59f169265552c4 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 10 May 2026 18:36:05 -0600 Subject: [PATCH] ssh-cipher v0.3.0-rc.9 --- 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 2429178..25c9a3c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -763,7 +763,7 @@ dependencies = [ [[package]] name = "ssh-cipher" -version = "0.3.0-rc.8" +version = "0.3.0-rc.9" dependencies = [ "aead", "aes", diff --git a/ssh-cipher/Cargo.toml b/ssh-cipher/Cargo.toml index 8ddec63..02a4406 100644 --- a/ssh-cipher/Cargo.toml +++ b/ssh-cipher/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssh-cipher" -version = "0.3.0-rc.8" +version = "0.3.0-rc.9" description = """ Pure Rust implementation of SSH symmetric encryption including support for the modern aes128-gcm@openssh.com/aes256-gcm@openssh.com and diff --git a/ssh-key/Cargo.toml b/ssh-key/Cargo.toml index 26feef6..17e70a0 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.8" +version = "0.3.0-rc.9" package = "ssh-cipher" features = ["zeroize"] diff --git a/ssh-protocol/Cargo.toml b/ssh-protocol/Cargo.toml index 61bf503..668e6a9 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.8", default-features = false } +cipher = { package = "ssh-cipher", version = "0.3.0-rc.9", default-features = false } encoding = { package = "ssh-encoding", version = "0.3.0-rc.9", default-features = false } key = { package = "ssh-key", version = "0.7.0-rc.8", default-features = false }