From a3dc6cce0442b4a2e69ad33e372f33eba979a195 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 1 Jun 2025 09:19:59 -0600 Subject: [PATCH] ssh-cipher v0.3.0-rc.0 --- 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 7099a4d4..f7dc9c92 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -791,7 +791,7 @@ dependencies = [ [[package]] name = "ssh-cipher" -version = "0.3.0-pre.2" +version = "0.3.0-rc.0" dependencies = [ "aead", "aes", diff --git a/ssh-cipher/Cargo.toml b/ssh-cipher/Cargo.toml index 6c31ddcf..10840748 100644 --- a/ssh-cipher/Cargo.toml +++ b/ssh-cipher/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssh-cipher" -version = "0.3.0-pre.2" +version = "0.3.0-rc.0" 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 cc051855..df47c4e5 100644 --- a/ssh-key/Cargo.toml +++ b/ssh-key/Cargo.toml @@ -18,7 +18,7 @@ edition = "2024" rust-version = "1.85" [dependencies] -cipher = { package = "ssh-cipher", version = "=0.3.0-pre.2", features = ["zeroize"] } +cipher = { package = "ssh-cipher", version = "0.3.0-rc.0", features = ["zeroize"] } encoding = { package = "ssh-encoding", version = "0.3.0-rc.0", features = ["base64", "digest", "pem", "subtle", "zeroize"] } sha2 = { version = "0.11.0-rc.0", default-features = false } signature = { version = "3.0.0-rc.0", default-features = false } diff --git a/ssh-protocol/Cargo.toml b/ssh-protocol/Cargo.toml index 1cfdf15f..e1401c29 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-pre.2", default-features = false } +cipher = { package = "ssh-cipher", version = "0.3.0-rc.0", default-features = false } encoding = { package = "ssh-encoding", version = "0.3.0-rc.0", default-features = false } key = { package = "ssh-key", version = "=0.7.0-pre.1", default-features = false }