aboutsummaryrefslogtreecommitdiff
path: root/openssl
diff options
context:
space:
mode:
Diffstat (limited to 'openssl')
-rw-r--r--openssl/Cargo.toml3
-rw-r--r--openssl/src/lib.rs2
2 files changed, 4 insertions, 1 deletions
diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml
index 9fbfdcbc..62e6d33d 100644
--- a/openssl/Cargo.toml
+++ b/openssl/Cargo.toml
@@ -19,5 +19,8 @@ aes_xts = ["openssl-sys/aes_xts"]
path = "../openssl-sys"
version = "0.4.3"
+[dependencies]
+libc = "0.1"
+
[dev-dependencies]
rustc-serialize = "0.2"
diff --git a/openssl/src/lib.rs b/openssl/src/lib.rs
index 77b6313c..56720ae2 100644
--- a/openssl/src/lib.rs
+++ b/openssl/src/lib.rs
@@ -1,4 +1,4 @@
-#![feature(unsafe_destructor, core, old_io, std_misc, libc, old_path)]
+#![feature(unsafe_destructor, core, old_io, std_misc, old_path)]
#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/openssl")]
extern crate libc;