Merge pull request #151 from gkoz/std_stability_warns
Declare the use of unstable libstd APIs
This commit is contained in:
commit
0638c8d793
|
|
@ -1,4 +1,4 @@
|
||||||
#![allow(unstable)]
|
#![feature(core, collections, os)]
|
||||||
|
|
||||||
extern crate "pkg-config" as pkg_config;
|
extern crate "pkg-config" as pkg_config;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue