Skip to content

Commit e343cf4

Browse files
authored
Merge pull request #89 from openssh-rust/update-dep-openssh-sftp-client
Update openssh-sftp-client requirement from 0.10.0 to 0.11.0
2 parents 02ee820 + c79e2d2 commit e343cf4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ openssh-mux-client = { version = "0.15.0", optional = true }
5656
lazy_static = "1.4.0"
5757
regex = "1"
5858
tokio = { version = "1", features = [ "full" ] }
59-
openssh-sftp-client = "0.10.0"
59+
openssh-sftp-client = "0.11.0"
6060

6161
[[example]]
6262
name = "native-mux_tsp"

src/session.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ impl Session {
225225
/// # async fn main() -> Result<(), Box<dyn Error>> {
226226
///
227227
/// use openssh::{Session, KnownHosts, Stdio};
228-
/// use openssh_sftp_client::highlevel::Sftp;
228+
/// use openssh_sftp_client::Sftp;
229229
///
230230
/// let session = Session::connect_mux("[email protected]", KnownHosts::Strict).await?;
231231
///

tests/openssh.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -909,7 +909,7 @@ async fn test_detach_and_resume_native_mux() {
909909
#[tokio::test]
910910
#[cfg_attr(not(ci), ignore)]
911911
async fn test_sftp_subsystem() {
912-
use openssh_sftp_client::highlevel::Sftp;
912+
use openssh_sftp_client::Sftp;
913913

914914
let content = b"This is a test case for the openssh-rust/openssh crate.\n";
915915

0 commit comments

Comments
 (0)