From 0fc65ea1d45257c0aef2044d333c634a35891402 Mon Sep 17 00:00:00 2001 From: Eugene Date: Sat, 4 May 2024 21:36:32 +0200 Subject: [PATCH] v0.44.0-beta.1 --- russh-keys/Cargo.toml | 5 ++++- russh/Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/russh-keys/Cargo.toml b/russh-keys/Cargo.toml index b0f3b672..6e23a412 100644 --- a/russh-keys/Cargo.toml +++ b/russh-keys/Cargo.toml @@ -11,6 +11,8 @@ include = [ "src/agent/msg.rs", "src/agent/server.rs", "src/agent/client.rs", + "src/backend_openssl.rs", + "src/backend_rust.rs", "src/bcrypt_pbkdf.rs", "src/blowfish.rs", "src/ec.rs", @@ -20,13 +22,14 @@ include = [ "src/format/pkcs5.rs", "src/format/pkcs8.rs", "src/key.rs", + "src/protocol.rs", "src/signature.rs", ] keywords = ["ssh"] license = "Apache-2.0" name = "russh-keys" repository = "https://github.com/warp-tech/russh" -version = "0.43.0" +version = "0.44.0-beta.1" rust-version = "1.65" [dependencies] diff --git a/russh/Cargo.toml b/russh/Cargo.toml index 8962b43f..c738b2cd 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.43.0" +version = "0.44.0-beta.1" rust-version = "1.65" [features] @@ -39,7 +39,7 @@ openssl = { workspace = true, optional = true } poly1305 = "0.8" rand = { workspace = true } russh-cryptovec = { version = "0.7.0", path = "../cryptovec" } -russh-keys = { version = "0.43.0", path = "../russh-keys" } +russh-keys = { version = "0.44.0-beta.1", path = "../russh-keys" } sha1 = { workspace = true } sha2 = { workspace = true } ssh-encoding = { workspace = true }