From 4d67a55a6343ee881f55f4110e6161ed35666696 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Thu, 16 Jun 2022 21:03:31 +0200 Subject: [PATCH] fixed #20 - OTP auth hanging up the session --- Cargo.lock | 4 ++-- warpgate-protocol-ssh/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 023b96d35..ded9aaaa5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2589,9 +2589,9 @@ dependencies = [ [[package]] name = "russh" -version = "0.34.0-beta.2" +version = "0.34.0-beta.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41d662ff7b0b00a0b8dc6d66b1cfcdb6e587421cec345805fde78890ca0158de" +checksum = "381859f0ff98e1fe35f1f6c0639579f0c4ac41cc437c975fb79bd51b1b600d06" dependencies = [ "bitflags", "byteorder", diff --git a/warpgate-protocol-ssh/Cargo.toml b/warpgate-protocol-ssh/Cargo.toml index 7d9bf890f..305c42096 100644 --- a/warpgate-protocol-ssh/Cargo.toml +++ b/warpgate-protocol-ssh/Cargo.toml @@ -12,7 +12,7 @@ bimap = "0.6" bytes = "1.1" dialoguer = "0.10" futures = "0.3" -russh = {version = "0.34.0-beta.2", features = ["openssl"]} +russh = {version = "0.34.0-beta.4", features = ["openssl"]} russh-keys = {version = "0.22.0-beta.1", features = ["openssl"]} sea-orm = {version = "^0.8", features = ["runtime-tokio-native-tls"], default-features = false} thiserror = "1.0"