1
Fork 0

Test fixes and rebase conflicts

Also some tidying up of a bunch of crate attributes
This commit is contained in:
Alex Crichton 2015-01-30 12:26:44 -08:00
parent 188d7c0bc3
commit 3a2530d611
56 changed files with 227 additions and 246 deletions

View file

@ -97,7 +97,6 @@
#![crate_name = "std"]
#![stable(feature = "rust1", since = "1.0.0")]
#![feature(staged_api)]
#![staged_api]
#![crate_type = "rlib"]
#![crate_type = "dylib"]
@ -106,30 +105,29 @@
html_root_url = "http://doc.rust-lang.org/nightly/",
html_playground_url = "http://play.rust-lang.org/")]
#![allow(unknown_features)]
#![feature(linkage, thread_local, asm)]
#![feature(lang_items, unsafe_destructor)]
#![feature(slicing_syntax, unboxed_closures)]
#![feature(alloc)]
#![feature(box_syntax)]
#![feature(collections)]
#![feature(core)]
#![feature(hash)]
#![feature(int_uint)]
#![feature(lang_items, unsafe_destructor)]
#![feature(libc)]
#![feature(linkage, thread_local, asm)]
#![feature(old_impl_check)]
#![feature(optin_builtin_traits)]
#![feature(int_uint)]
#![feature(core)]
#![feature(libc)]
#![feature(alloc)]
#![feature(unicode)]
#![feature(collections)]
#![feature(rand)]
#![feature(hash)]
#![feature(staged_api)]
#![feature(unboxed_closures)]
#![feature(unicode)]
#![cfg_attr(not(stage0), feature(macro_reexport))]
#![cfg_attr(test, feature(test))]
// NOTE(stage0): remove cfg_attr after a snapshot
#![cfg_attr(not(stage0), allow(unused_mut))]
#![feature(macro_reexport)]
// Don't link to std. We are std.
#![no_std]
#![deny(missing_docs)]
#![cfg_attr(not(stage0), allow(unused_mut))] // NOTE: remove after stage0 snap
#[cfg(test)]
#[macro_use]