diff --git a/Cargo.lock b/Cargo.lock index d2ea857..3f4780d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -795,7 +795,7 @@ dependencies = [ [[package]] name = "ssh-cipher" -version = "0.3.0-rc.1" +version = "0.3.0-rc.2" dependencies = [ "aead", "aes", diff --git a/ssh-cipher/Cargo.toml b/ssh-cipher/Cargo.toml index f78c4ce..ee8bd78 100644 --- a/ssh-cipher/Cargo.toml +++ b/ssh-cipher/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssh-cipher" -version = "0.3.0-rc.1" +version = "0.3.0-rc.2" 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 97859ce..7dc080e 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-rc.0", features = ["zeroize"] } +cipher = { package = "ssh-cipher", version = "0.3.0-rc.2", features = ["zeroize"] } encoding = { package = "ssh-encoding", version = "0.3.0-rc.1", features = ["base64", "digest", "pem", "subtle", "zeroize"] } sha2 = { version = "0.11.0-rc.0", default-features = false } signature = { version = "3.0.0-rc.1", default-features = false } diff --git a/ssh-protocol/Cargo.toml b/ssh-protocol/Cargo.toml index 06f8cd3..f21c1b3 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.0", default-features = false } +cipher = { package = "ssh-cipher", version = "0.3.0-rc.2", default-features = false } encoding = { package = "ssh-encoding", version = "0.3.0-rc.1", default-features = false } key = { package = "ssh-key", version = "0.7.0-rc.0", default-features = false }