Set unstable feature names appropriately
* `core` - for the core crate * `hash` - hashing * `io` - io * `path` - path * `alloc` - alloc crate * `rand` - rand crate * `collections` - collections crate * `std_misc` - other parts of std * `test` - test crate * `rustc_private` - everything else
This commit is contained in:
parent
f86bcc1543
commit
cd6d9eab5d
148 changed files with 864 additions and 741 deletions
|
@ -14,7 +14,7 @@
|
|||
#![allow(dead_code)]
|
||||
|
||||
#![crate_name = "rustc_llvm"]
|
||||
#![unstable(feature = "unnamed_feature")]
|
||||
#![unstable(feature = "rustc_private")]
|
||||
#![feature(staged_api)]
|
||||
#![staged_api]
|
||||
#![crate_type = "dylib"]
|
||||
|
@ -26,8 +26,12 @@
|
|||
#![allow(unknown_features)]
|
||||
#![feature(link_args)]
|
||||
#![feature(box_syntax)]
|
||||
#![feature(unnamed_feature)]
|
||||
#![allow(unknown_features)] #![feature(int_uint)]
|
||||
#![feature(collections)]
|
||||
#![feature(core)]
|
||||
#![feature(libc)]
|
||||
#![feature(path)]
|
||||
#![feature(std_misc)]
|
||||
|
||||
extern crate libc;
|
||||
#[macro_use] #[no_link] extern crate rustc_bitflags;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue