aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2015-01-29 09:05:19 -0800
committerSteven Fackler <[email protected]>2015-01-29 09:05:19 -0800
commit89c3eaf4831d89731acddb71221b45334b1bbaed (patch)
treeef38ce34d548090a4d0c816972f1dc3cd6271ef1 /src
parentMerge pull request #149 from gkoz/hashers_double_fin (diff)
downloadrust-openssl-89c3eaf4831d89731acddb71221b45334b1bbaed.tar.xz
rust-openssl-89c3eaf4831d89731acddb71221b45334b1bbaed.zip
Fix for stability changes
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index bb11f34b..af1b1be5 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,5 +1,4 @@
-#![feature(unsafe_destructor)]
-#![allow(unstable)]
+#![feature(unsafe_destructor, core, io, std_misc, libc, hash, path, collections)]
#![crate_name="openssl"]
#![crate_type="rlib"]
#![crate_type="dylib"]
@@ -7,7 +6,7 @@
extern crate libc;
#[cfg(test)]
-extern crate serialize;
+extern crate "rustc-serialize" as serialize;
extern crate "openssl-sys" as ffi;