Merge pull request #151 from gkoz/std_stability_warns

Declare the use of unstable libstd APIs
This commit is contained in:
Steven Fackler 2015-02-01 08:36:16 -08:00
commit 0638c8d793
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#![allow(unstable)] #![feature(core, collections, os)]
extern crate "pkg-config" as pkg_config; extern crate "pkg-config" as pkg_config;

View File

@ -1,5 +1,6 @@
#![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] #![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; extern crate libc;