From d1055984138a62b24bddcf76d5e7b51fac035eb9 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 25 Nov 2025 09:16:45 -0700 Subject: [PATCH] ssh-key v0.7.0-rc.4 --- Cargo.lock | 2 +- ssh-key/Cargo.toml | 2 +- ssh-protocol/Cargo.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d2da065..aab8d38 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -762,7 +762,7 @@ dependencies = [ [[package]] name = "ssh-key" -version = "0.7.0-rc.3" +version = "0.7.0-rc.4" dependencies = [ "argon2", "bcrypt-pbkdf", diff --git a/ssh-key/Cargo.toml b/ssh-key/Cargo.toml index 429212e..579f772 100644 --- a/ssh-key/Cargo.toml +++ b/ssh-key/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssh-key" -version = "0.7.0-rc.3" +version = "0.7.0-rc.4" description = """ Pure Rust implementation of SSH key file format decoders/encoders as described in RFC4251/RFC4253 and OpenSSH key formats, as well as "sshsig" signatures and diff --git a/ssh-protocol/Cargo.toml b/ssh-protocol/Cargo.toml index 9a8c9c9..f7fef72 100644 --- a/ssh-protocol/Cargo.toml +++ b/ssh-protocol/Cargo.toml @@ -16,9 +16,9 @@ edition = "2024" rust-version = "1.85" [dependencies] -cipher = { package = "ssh-cipher", version = "0.3.0-rc.3", default-features = false } +cipher = { package = "ssh-cipher", version = "0.3.0-rc.4", default-features = false } encoding = { package = "ssh-encoding", version = "0.3.0-rc.3", default-features = false } -key = { package = "ssh-key", version = "0.7.0-rc.2", default-features = false } +key = { package = "ssh-key", version = "0.7.0-rc.4", default-features = false } [features] default = ["std"]