From 267a241f41cbe209e94324cfea9d0349f1c9bac4 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Sun, 29 Jan 2023 19:50:24 +0100 Subject: [PATCH] v0.36 --- Cargo.lock | 4 ++-- russh-keys/Cargo.toml | 4 ++-- russh/Cargo.toml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9a41718a..b7e2cb06 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1160,7 +1160,7 @@ dependencies = [ [[package]] name = "russh" -version = "0.35.0-beta.9" +version = "0.36.0" dependencies = [ "aes", "aes-gcm", @@ -1217,7 +1217,7 @@ dependencies = [ [[package]] name = "russh-keys" -version = "0.23.0-beta.1" +version = "0.24.0" dependencies = [ "aes", "bcrypt-pbkdf", diff --git a/russh-keys/Cargo.toml b/russh-keys/Cargo.toml index aa11fcc9..d993bcda 100644 --- a/russh-keys/Cargo.toml +++ b/russh-keys/Cargo.toml @@ -25,7 +25,7 @@ keywords = ["ssh"] license = "Apache-2.0" name = "russh-keys" repository = "https://github.com/warp-tech/russh" -version = "0.23.0-beta.1" +version = "0.24.0" [dependencies] aes = "0.8" @@ -49,7 +49,7 @@ openssl = { version = "0.10", optional = true } pbkdf2 = "0.11" rand = "0.7" rand_core = { version = "0.5", features = ["std"] } -russh-cryptovec = { version = "0.7.0-beta.1", path = "../cryptovec" } +russh-cryptovec = { version = "0.7.0", path = "../cryptovec" } serde = "1.0" serde_derive = "1.0" sha2 = "0.10" diff --git a/russh/Cargo.toml b/russh/Cargo.toml index d698b513..e55bd86e 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.35.0-beta.9" +version = "0.36.0" rust-version = "1.60" [features] @@ -36,8 +36,8 @@ log = "0.4" once_cell = "1.13" openssl = { version = "0.10", optional = true } rand = "0.8" -russh-cryptovec = { version = "0.7.0-beta.1", path = "../cryptovec" } -russh-keys = { version = "0.23.0-beta.1", path = "../russh-keys" } +russh-cryptovec = { version = "0.7.0", path = "../cryptovec" } +russh-keys = { version = "0.24", path = "../russh-keys" } sha1 = "0.10" sha2 = "0.10" hex-literal = "0.3"