diff options
| author | Steven Fackler <[email protected]> | 2015-02-01 08:36:16 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-02-01 08:36:16 -0800 |
| commit | 0638c8d793b710cde475938fa7a5773ff2120016 (patch) | |
| tree | 0b48a6173e8d42986b09f1463251d187ac234ddd /openssl-sys/src/build.rs | |
| parent | Fix for stability changes (diff) | |
| parent | Declare the use of unstable libstd APIs (diff) | |
| download | rust-openssl-0638c8d793b710cde475938fa7a5773ff2120016.tar.xz rust-openssl-0638c8d793b710cde475938fa7a5773ff2120016.zip | |
Merge pull request #151 from gkoz/std_stability_warns
Declare the use of unstable libstd APIs
Diffstat (limited to 'openssl-sys/src/build.rs')
| -rw-r--r-- | openssl-sys/src/build.rs | 2 |
1 files changed, 1 insertions, 1 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; |