diff options
| author | Steven Fackler <[email protected]> | 2015-01-29 09:05:19 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-01-29 09:05:19 -0800 |
| commit | 89c3eaf4831d89731acddb71221b45334b1bbaed (patch) | |
| tree | ef38ce34d548090a4d0c816972f1dc3cd6271ef1 /src | |
| parent | Merge pull request #149 from gkoz/hashers_double_fin (diff) | |
| download | rust-openssl-89c3eaf4831d89731acddb71221b45334b1bbaed.tar.xz rust-openssl-89c3eaf4831d89731acddb71221b45334b1bbaed.zip | |
Fix for stability changes
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; |