diff options
| author | Gleb Kozyrev <[email protected]> | 2015-02-01 14:53:51 +0200 |
|---|---|---|
| committer | Gleb Kozyrev <[email protected]> | 2015-02-01 14:56:07 +0200 |
| commit | 2bcd67f568be795b9d33832e71cc062c62a7e7c5 (patch) | |
| tree | 0b48a6173e8d42986b09f1463251d187ac234ddd /openssl-sys/src | |
| parent | Fix for stability changes (diff) | |
| download | rust-openssl-2bcd67f568be795b9d33832e71cc062c62a7e7c5.tar.xz rust-openssl-2bcd67f568be795b9d33832e71cc062c62a7e7c5.zip | |
Declare the use of unstable libstd APIs
Diffstat (limited to 'openssl-sys/src')
| -rw-r--r-- | openssl-sys/src/build.rs | 2 | ||||
| -rw-r--r-- | openssl-sys/src/lib.rs | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/openssl-sys/src/build.rs b/openssl-sys/src/build.rs index 3f3053f0..cb1b41c5 100644 --- a/openssl-sys/src/build.rs +++ b/openssl-sys/src/build.rs @@ -1,4 +1,4 @@ -#![allow(unstable)] +#![feature(core, collections, os)] extern crate "pkg-config" as pkg_config; diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs index b2e2d312..84bd004b 100644 --- a/openssl-sys/src/lib.rs +++ b/openssl-sys/src/lib.rs @@ -1,5 +1,6 @@ #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] -#![allow(dead_code, unstable)] +#![allow(dead_code)] +#![feature(core, io, libc, os, path, std_misc)] extern crate libc; |