diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib.rs | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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; |