From 571abb1cb15bbf9362c6551c1886030e602580c9 Mon Sep 17 00:00:00 2001 From: Eugene Date: Tue, 16 Jul 2024 21:14:28 +0200 Subject: [PATCH] bumped russh to 0.44.0-beta.4 --- Cargo.lock | 8 ++++---- warpgate-admin/Cargo.toml | 2 +- warpgate-protocol-ssh/Cargo.toml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 76368d9..ec4161a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3723,9 +3723,9 @@ dependencies = [ [[package]] name = "russh" -version = "0.44.0-beta.3" +version = "0.44.0-beta.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbf12ff475b648c945e4ab411a0d653822cf3a9ac461078e753b9aaaf9ffeab4" +checksum = "5c0c8b1a1213ee9cbae3c644c76f304ddfff8de66c1e7194626e511e9e5c91f7" dependencies = [ "aes", "aes-gcm", @@ -3775,9 +3775,9 @@ dependencies = [ [[package]] name = "russh-keys" -version = "0.44.0-beta.3" +version = "0.44.0-beta.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dedf73f1fc2e9fb4fe0628fa37a641ef9b333d74ad7c0fdaf2b6917da34e5f3b" +checksum = "65d9d07bb169099e6e0ae7e30b64965f005d613170c6e019586cd30be596e2ee" dependencies = [ "aes", "async-trait", diff --git a/warpgate-admin/Cargo.toml b/warpgate-admin/Cargo.toml index 3e74df4..6d291c4 100644 --- a/warpgate-admin/Cargo.toml +++ b/warpgate-admin/Cargo.toml @@ -24,7 +24,7 @@ poem-openapi = { version = "2.0", features = [ "uuid", "static-files", ] } -russh-keys = { version = "0.44.0-beta.3" } +russh-keys = { version = "0.44.0-beta.4" } # russh-keys = { version = "0.23.0-beta.1", path = "../../russh/russh-keys" } rust-embed = "8.3" sea-orm = { version = "0.12.2", features = [ diff --git a/warpgate-protocol-ssh/Cargo.toml b/warpgate-protocol-ssh/Cargo.toml index 9046340..de0c11f 100644 --- a/warpgate-protocol-ssh/Cargo.toml +++ b/warpgate-protocol-ssh/Cargo.toml @@ -14,9 +14,9 @@ dialoguer = "0.10" curve25519-dalek = "4.0.0" # pin due to build fail on x86 ed25519-dalek = "2.0.0" # pin due to build fail on x86 in 2.1 futures = "0.3" -russh = { version = "0.44.0-beta.3" } +russh = { version = "0.44.0-beta.4" } # russh = { version = "0.35.0-beta.6", path = "../../russh/russh"} -russh-keys = { version = "0.44.0-beta.3" } +russh-keys = { version = "0.44.0-beta.4" } # russh-keys = { version = "0.23.0-beta.1", path = "../../russh/russh-keys" } sea-orm = { version = "0.12.2", features = [ "runtime-tokio-rustls",