diff options
author | Alex Crichton <alex@alexcrichton.com> | 2015-03-22 10:38:39 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2015-03-22 10:38:39 -0700 |
commit | 20051a11312ff1769bd21c461232c0cb8bc99815 (patch) | |
tree | 7f6388e1ae667a0fbe86ddb8b872dc2641a40171 | |
parent | d65946e9387c40d405307a6fdc0fc7f3dbd89ea5 (diff) | |
download | ssh2-rs-20051a11312ff1769bd21c461232c0cb8bc99815.zip |
Bump to 0.2.3
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/sftp.rs | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ [package] name = "ssh2" -version = "0.2.2" +version = "0.2.3" authors = ["Alex Crichton <alex@alexcrichton.com>"] license = "MIT/Apache-2.0" keywords = ["ssh"] diff --git a/src/sftp.rs b/src/sftp.rs index 869b665..d4f4a0c 100644 --- a/src/sftp.rs +++ b/src/sftp.rs @@ -1,5 +1,5 @@ use std::io::prelude::*; -use std::io::{self, ErrorKind, Seek, SeekFrom}; +use std::io::{self, ErrorKind, SeekFrom}; use std::marker; use std::mem; use std::path::{Path, PathBuf}; |