summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml2
-rw-r--r--libssh2-sys/Cargo.toml4
-rw-r--r--libssh2-sys/build.rs2
-rw-r--r--libssh2-sys/lib.rs4
-rw-r--r--src/lib.rs2
5 files changed, 7 insertions, 7 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 63cc0dd..ab1979a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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;
diff --git a/src/lib.rs b/src/lib.rs
index 59a6b96..f92da30 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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;