diff options
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | libssh2-sys/Cargo.toml | 4 | ||||
-rw-r--r-- | libssh2-sys/build.rs | 2 | ||||
-rw-r--r-- | libssh2-sys/lib.rs | 4 | ||||
-rw-r--r-- | src/lib.rs | 2 |
5 files changed, 7 insertions, 7 deletions
@@ -1,6 +1,6 @@ [package] name = "ssh2" -version = "0.2.4" +version = "0.2.5" authors = ["Alex Crichton <alex@alexcrichton.com>"] license = "MIT/Apache-2.0" keywords = ["ssh"] diff --git a/libssh2-sys/Cargo.toml b/libssh2-sys/Cargo.toml index 149f6a8..c9e7a64 100644 --- a/libssh2-sys/Cargo.toml +++ b/libssh2-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libssh2-sys" -version = "0.1.14" +version = "0.1.15" authors = ["Alex Crichton <alex@alexcrichton.com>"] links = "ssh2" build = "build.rs" @@ -9,7 +9,7 @@ repository = "https://github.com/alexcrichton/ssh2-rs" description = "Native bindings to the libssh2 library" [lib] -name = "libssh2-sys" +name = "libssh2_sys" path = "lib.rs" [dependencies] diff --git a/libssh2-sys/build.rs b/libssh2-sys/build.rs index db808a0..fe2492b 100644 --- a/libssh2-sys/build.rs +++ b/libssh2-sys/build.rs @@ -1,6 +1,6 @@ #![feature(convert)] -extern crate "pkg-config" as pkg_config; +extern crate pkg_config; use std::env; use std::fs; diff --git a/libssh2-sys/lib.rs b/libssh2-sys/lib.rs index f1e9c02..58b4e33 100644 --- a/libssh2-sys/lib.rs +++ b/libssh2-sys/lib.rs @@ -3,8 +3,8 @@ extern crate libc; -extern crate "libz-sys" as libz; -#[cfg(unix)] extern crate "openssl-sys" as openssl; +extern crate libz_sys; +#[cfg(unix)] extern crate openssl_sys; use libc::{c_int, size_t, c_void, c_char, c_long, c_uchar, c_uint, c_ulong}; use libc::ssize_t; @@ -128,7 +128,7 @@ #![deny(missing_docs, unused_results)] #![cfg_attr(test, deny(warnings))] -extern crate "libssh2-sys" as raw; +extern crate libssh2_sys as raw; extern crate libc; #[macro_use] extern crate bitflags; |