From 912b9394341e3cf2c53a4ab223c6f71b67fef067 Mon Sep 17 00:00:00 2001 From: Eugene Date: Mon, 30 Dec 2024 23:36:18 +0100 Subject: [PATCH] v0.50.0-beta.3 --- Cargo.toml | 4 ++-- russh-keys/Cargo.toml | 2 +- russh/Cargo.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4b3cd6ce..696f8989 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ sha2 = { version = "0.10.6", features = ["oid"] } signature = "2.2" ssh-encoding = { version = "0.2", features = [ "bytes", -] } +], path = "../RustCrypto-SSH/ssh-encoding" } ssh-key = { version = "0.6.7-internal.4", features = [ "ed25519", "rsa", @@ -38,7 +38,7 @@ ssh-key = { version = "0.6.7-internal.4", features = [ "p521", "encryption", "ppk", -], package = "internal-russh-forked-ssh-key" } +], path = "../RustCrypto-SSH/ssh-key", package = "internal-russh-forked-ssh-key" } thiserror = "1.0.30" tokio = { version = "1.17.0" } tokio-stream = { version = "0.1.3", features = ["net", "sync"] } diff --git a/russh-keys/Cargo.toml b/russh-keys/Cargo.toml index 689060fa..bc90eb4a 100644 --- a/russh-keys/Cargo.toml +++ b/russh-keys/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["ssh"] license = "Apache-2.0" name = "russh-keys" repository = "https://github.com/warp-tech/russh" -version = "0.50.0-beta.2" +version = "0.50.0-beta.3" rust-version = "1.65" [dependencies] diff --git a/russh/Cargo.toml b/russh/Cargo.toml index 2c64ae20..6466989a 100644 --- a/russh/Cargo.toml +++ b/russh/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" name = "russh" readme = "../README.md" repository = "https://github.com/warp-tech/russh" -version = "0.50.0-beta.2" +version = "0.50.0-beta.3" rust-version = "1.65" [features] @@ -48,7 +48,7 @@ rand.workspace = true rand_core = { version = "0.6.4", features = ["getrandom"] } rsa.workspace = true russh-cryptovec = { version = "0.48.0", path = "../cryptovec" } -russh-keys = { version = "0.50.0-beta.2", path = "../russh-keys" } +russh-keys = { version = "0.50.0-beta.3", path = "../russh-keys" } sha1.workspace = true sha2.workspace = true signature.workspace = true