From ebc6e6f8b9fabf8724d833801e8b09a57d41c50a Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Fri, 10 Dec 2021 15:25:48 -0700 Subject: [PATCH] Pick up updated ssh crate + windows fixes --- Cargo.lock | 10 +++++----- wezterm-ssh/Cargo.toml | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 42f2a12c2..e0a15b6c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1949,9 +1949,9 @@ dependencies = [ [[package]] name = "libssh-rs" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c30db256b1dcf331124ad4ec8f638c2a5898224e1fb8294929de818aebe93ac0" +checksum = "c5ca687cb078f24216be3c269a1a7b9279f9d33adcd17b4b0747bfc8902472e7" dependencies = [ "bitflags", "libssh-rs-sys", @@ -1960,9 +1960,9 @@ dependencies = [ [[package]] name = "libssh-rs-sys" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "901d7c98aeec74f9484187c4f8467baaa4543f11fcb6ea9cd293c666f5c19f43" +checksum = "1ac4307688493d1f2cf3f026b683cea3d30b4b65f365d4c8b6c464471c18dca2" dependencies = [ "cc", "libz-sys", @@ -4815,7 +4815,7 @@ dependencies = [ [[package]] name = "wezterm-ssh" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "assert_fs", diff --git a/wezterm-ssh/Cargo.toml b/wezterm-ssh/Cargo.toml index c962e9de8..3aa46ca47 100644 --- a/wezterm-ssh/Cargo.toml +++ b/wezterm-ssh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wezterm-ssh" -version = "0.3.0" +version = "0.3.1" authors = ["Wez Furlong "] edition = "2018" repository = "https://github.com/wez/wezterm" @@ -27,7 +27,7 @@ portable-pty = { version="0.6", path = "../pty" } regex = "1" smol = "1.2" ssh2 = {version="0.9.3", features=["openssl-on-win32"]} -libssh-rs = {version="0.1.1", features=["vendored"]} +libssh-rs = {version="0.1.2", features=["vendored"]} #libssh-rs = {path="../../libssh-rs/libssh-rs", features=["vendored", "vendored-openssl"]} thiserror = "1.0"