From caf776c766b0aa0708c671c84054ae62e2437afb Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 12 Oct 2022 21:21:24 -0700 Subject: [PATCH] Use ssh2-rs from upstream git sftp fixes are in upstream master but not yet released --- Cargo.lock | 8 ++++---- Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c0b541e9..34a77743 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -549,8 +549,8 @@ checksum = "5916d2ae698f6de9bfb891ad7a8d65c09d232dc58cc4ac433c7da3b2fd84bc2b" [[package]] name = "libssh2-sys" -version = "0.2.23" -source = "git+https://github.com/sourcefrog/ssh2-rs.git?branch=readdir-buffer#6a6289627ba4ce348ed34a150e8f3513164a86bd" +version = "0.3.0" +source = "git+https://github.com/alexcrichton/ssh2-rs.git#f10329d2cd372f88149ebb2b63454cba9c0b8ad4" dependencies = [ "cc", "libc", @@ -1164,8 +1164,8 @@ checksum = "45456094d1983e2ee2a18fdfebce3189fa451699d0502cb8e3b49dba5ba41451" [[package]] name = "ssh2" -version = "0.9.3" -source = "git+https://github.com/sourcefrog/ssh2-rs.git?branch=readdir-buffer#6a6289627ba4ce348ed34a150e8f3513164a86bd" +version = "0.9.4" +source = "git+https://github.com/alexcrichton/ssh2-rs.git#f10329d2cd372f88149ebb2b63454cba9c0b8ad4" dependencies = [ "bitflags", "libc", diff --git a/Cargo.toml b/Cargo.toml index 7f19fa1b..4790c0ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ globset = "0.4.5" hex = "0.4.2" itertools = "0.10" lazy_static = "1.4.0" -libssh2-sys = { version = "0.2.23", git = "https://github.com/sourcefrog/ssh2-rs.git", branch = "readdir-buffer" } +libssh2-sys = { version = "0.3.0", git = "https://github.com/alexcrichton/ssh2-rs.git" } mutants = "0.0.3" nutmeg = "0.1" rayon = "1.3.0" @@ -43,7 +43,7 @@ tracing = "0.1" tracing-appender = "0.2" tracing-subscriber = {version = "0.3.11", features = ["env-filter", "fmt"]} url = "2.2.2" -ssh2 = {version = "0.9.3", git = "https://github.com/sourcefrog/ssh2-rs.git", branch = "readdir-buffer" } +ssh2 = {version = "0.9.4", git = "https://github.com/alexcrichton/ssh2-rs.git" } [dev-dependencies] assert_cmd = "2.0"