aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys/src/build.rs
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2015-02-01 08:36:16 -0800
committerSteven Fackler <[email protected]>2015-02-01 08:36:16 -0800
commit0638c8d793b710cde475938fa7a5773ff2120016 (patch)
tree0b48a6173e8d42986b09f1463251d187ac234ddd /openssl-sys/src/build.rs
parentFix for stability changes (diff)
parentDeclare the use of unstable libstd APIs (diff)
downloadrust-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.rs2
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;