1
Fork 0

fix for new attributes failing. issue #22964

This commit is contained in:
awlnx 2015-03-05 11:53:51 -05:00
parent b4c965ee80
commit 951ef9d1f1
31 changed files with 64 additions and 4 deletions

View file

@ -56,6 +56,8 @@
//! The [`heap`](heap/index.html) module defines the low-level interface to the //! The [`heap`](heap/index.html) module defines the low-level interface to the
//! default global allocator. It is not compatible with the libc allocator API. //! default global allocator. It is not compatible with the libc allocator API.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "alloc"] #![crate_name = "alloc"]
#![unstable(feature = "alloc")] #![unstable(feature = "alloc")]
#![feature(staged_api)] #![feature(staged_api)]

View file

@ -19,6 +19,8 @@
//! arena but can only hold objects of a single type, and `Arena`, which is a //! arena but can only hold objects of a single type, and `Arena`, which is a
//! more complex, slower arena which can hold objects of any type. //! more complex, slower arena which can hold objects of any type.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "arena"] #![crate_name = "arena"]
#![unstable(feature = "rustc_private")] #![unstable(feature = "rustc_private")]
#![staged_api] #![staged_api]

View file

@ -12,7 +12,8 @@
//! //!
//! See [std::collections](../std/collections) for a detailed discussion of collections in Rust. //! See [std::collections](../std/collections) for a detailed discussion of collections in Rust.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "collections"] #![crate_name = "collections"]
#![unstable(feature = "collections")] #![unstable(feature = "collections")]
#![staged_api] #![staged_api]

View file

@ -47,6 +47,8 @@
// Since libcore defines many fundamental lang items, all tests live in a // Since libcore defines many fundamental lang items, all tests live in a
// separate crate, libcoretest, to avoid bizarre issues. // separate crate, libcoretest, to avoid bizarre issues.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "core"] #![crate_name = "core"]
#![unstable(feature = "core")] #![unstable(feature = "core")]
#![staged_api] #![staged_api]

View file

@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed // option. This file may not be copied, modified, or distributed
// except according to those terms. // except according to those terms.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![feature(box_syntax)] #![feature(box_syntax)]
#![feature(int_uint)] #![feature(int_uint)]
#![feature(unboxed_closures)] #![feature(unboxed_closures)]

View file

@ -14,6 +14,8 @@
//! [def]: https://en.wikipedia.org/wiki/DEFLATE //! [def]: https://en.wikipedia.org/wiki/DEFLATE
//! [mz]: https://code.google.com/p/miniz/ //! [mz]: https://code.google.com/p/miniz/
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "flate"] #![crate_name = "flate"]
#![unstable(feature = "rustc_private")] #![unstable(feature = "rustc_private")]
#![staged_api] #![staged_api]

View file

@ -14,6 +14,8 @@
//! Parsing does not happen at runtime: structures of `std::fmt::rt` are //! Parsing does not happen at runtime: structures of `std::fmt::rt` are
//! generated instead. //! generated instead.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "fmt_macros"] #![crate_name = "fmt_macros"]
#![unstable(feature = "rustc_private")] #![unstable(feature = "rustc_private")]
#![staged_api] #![staged_api]

View file

@ -77,6 +77,9 @@
//! } //! }
//! ``` //! ```
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "getopts"] #![crate_name = "getopts"]
#![unstable(feature = "rustc_private", #![unstable(feature = "rustc_private",
reason = "use the crates.io `getopts` library instead")] reason = "use the crates.io `getopts` library instead")]

View file

@ -264,6 +264,8 @@
//! //!
//! * [DOT language](http://www.graphviz.org/doc/info/lang.html) //! * [DOT language](http://www.graphviz.org/doc/info/lang.html)
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "graphviz"] #![crate_name = "graphviz"]
#![unstable(feature = "rustc_private")] #![unstable(feature = "rustc_private")]
#![feature(staged_api)] #![feature(staged_api)]

View file

@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed // option. This file may not be copied, modified, or distributed
// except according to those terms. // except according to those terms.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "libc"] #![crate_name = "libc"]
#![crate_type = "rlib"] #![crate_type = "rlib"]
#![cfg_attr(not(feature = "cargo-build"), #![cfg_attr(not(feature = "cargo-build"),

View file

@ -155,6 +155,8 @@
//! they're turned off (just a load and an integer comparison). This also means that //! they're turned off (just a load and an integer comparison). This also means that
//! if logging is disabled, none of the components of the log will be executed. //! if logging is disabled, none of the components of the log will be executed.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "log"] #![crate_name = "log"]
#![unstable(feature = "rustc_private", #![unstable(feature = "rustc_private",
reason = "use the crates.io `log` library instead")] reason = "use the crates.io `log` library instead")]

View file

@ -16,6 +16,8 @@
//! is not recommended to use this library directly, but rather the official //! is not recommended to use this library directly, but rather the official
//! interface through `std::rand`. //! interface through `std::rand`.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "rand"] #![crate_name = "rand"]
#![crate_type = "rlib"] #![crate_type = "rlib"]
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png", #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png",

View file

@ -15,6 +15,8 @@
//! It is loosely based on the Extensible Binary Markup Language (ebml): //! It is loosely based on the Extensible Binary Markup Language (ebml):
//! http://www.matroska.org/technical/specs/rfc/index.html //! http://www.matroska.org/technical/specs/rfc/index.html
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "rbml"] #![crate_name = "rbml"]
#![unstable(feature = "rustc_private")] #![unstable(feature = "rustc_private")]
#![staged_api] #![staged_api]

View file

@ -14,6 +14,8 @@
//! //!
//! This API is completely unstable and subject to change. //! This API is completely unstable and subject to change.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "rustc"] #![crate_name = "rustc"]
#![unstable(feature = "rustc_private")] #![unstable(feature = "rustc_private")]
#![staged_api] #![staged_api]
@ -40,7 +42,6 @@
#![feature(std_misc)] #![feature(std_misc)]
#![feature(os)] #![feature(os)]
#![cfg_attr(test, feature(test))] #![cfg_attr(test, feature(test))]
extern crate arena; extern crate arena;
extern crate flate; extern crate flate;
extern crate fmt_macros; extern crate fmt_macros;

View file

@ -21,6 +21,8 @@
//! one that doesn't; the one that doesn't might get decent parallel //! one that doesn't; the one that doesn't might get decent parallel
//! build speedups. //! build speedups.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "rustc_back"] #![crate_name = "rustc_back"]
#![unstable(feature = "rustc_private")] #![unstable(feature = "rustc_private")]
#![staged_api] #![staged_api]

View file

@ -8,6 +8,9 @@
// option. This file may not be copied, modified, or distributed // option. This file may not be copied, modified, or distributed
// except according to those terms. // except according to those terms.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "rustc_bitflags"] #![crate_name = "rustc_bitflags"]
#![feature(staged_api)] #![feature(staged_api)]
#![staged_api] #![staged_api]

View file

@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed // option. This file may not be copied, modified, or distributed
// except according to those terms. // except according to those terms.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "rustc_borrowck"] #![crate_name = "rustc_borrowck"]
#![unstable(feature = "rustc_private")] #![unstable(feature = "rustc_private")]
#![staged_api] #![staged_api]

View file

@ -14,6 +14,8 @@
//! //!
//! This API is completely unstable and subject to change. //! This API is completely unstable and subject to change.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "rustc_driver"] #![crate_name = "rustc_driver"]
#![unstable(feature = "rustc_private")] #![unstable(feature = "rustc_private")]
#![staged_api] #![staged_api]

View file

@ -19,6 +19,8 @@
//! //!
//! This API is completely unstable and subject to change. //! This API is completely unstable and subject to change.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "rustc_lint"] #![crate_name = "rustc_lint"]
#![unstable(feature = "rustc_private")] #![unstable(feature = "rustc_private")]
#![staged_api] #![staged_api]

View file

@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed // option. This file may not be copied, modified, or distributed
// except according to those terms. // except according to those terms.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![allow(non_upper_case_globals)] #![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)] #![allow(non_camel_case_types)]
#![allow(non_snake_case)] #![allow(non_snake_case)]

View file

@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed // option. This file may not be copied, modified, or distributed
// except according to those terms. // except according to those terms.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "rustc_privacy"] #![crate_name = "rustc_privacy"]
#![unstable(feature = "rustc_private")] #![unstable(feature = "rustc_private")]
#![staged_api] #![staged_api]

View file

@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed // option. This file may not be copied, modified, or distributed
// except according to those terms. // except according to those terms.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "rustc_resolve"] #![crate_name = "rustc_resolve"]
#![unstable(feature = "rustc_private")] #![unstable(feature = "rustc_private")]
#![staged_api] #![staged_api]

View file

@ -14,6 +14,8 @@
//! //!
//! This API is completely unstable and subject to change. //! This API is completely unstable and subject to change.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "rustc_trans"] #![crate_name = "rustc_trans"]
#![unstable(feature = "rustc_private")] #![unstable(feature = "rustc_private")]
#![staged_api] #![staged_api]

View file

@ -62,7 +62,8 @@ independently:
This API is completely unstable and subject to change. This API is completely unstable and subject to change.
*/ */
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "rustc_typeck"] #![crate_name = "rustc_typeck"]
#![unstable(feature = "rustc_private")] #![unstable(feature = "rustc_private")]
#![staged_api] #![staged_api]

View file

@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed // option. This file may not be copied, modified, or distributed
// except according to those terms. // except according to those terms.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "rustdoc"] #![crate_name = "rustdoc"]
#![unstable(feature = "rustdoc")] #![unstable(feature = "rustdoc")]
#![staged_api] #![staged_api]

View file

@ -14,6 +14,8 @@
Core encoding and decoding interfaces. Core encoding and decoding interfaces.
*/ */
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "serialize"] #![crate_name = "serialize"]
#![unstable(feature = "rustc_private", #![unstable(feature = "rustc_private",
reason = "deprecated in favor of rustc-serialize on crates.io")] reason = "deprecated in favor of rustc-serialize on crates.io")]

View file

@ -94,7 +94,8 @@
//! to all code by default. [`macros`](macros/index.html) contains //! to all code by default. [`macros`](macros/index.html) contains
//! all the standard macros, such as `assert!`, `panic!`, `println!`, //! all the standard macros, such as `assert!`, `panic!`, `println!`,
//! and `format!`, also available to all Rust code. //! and `format!`, also available to all Rust code.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "std"] #![crate_name = "std"]
#![stable(feature = "rust1", since = "1.0.0")] #![stable(feature = "rust1", since = "1.0.0")]
#![staged_api] #![staged_api]

View file

@ -14,6 +14,8 @@
//! //!
//! This API is completely unstable and subject to change. //! This API is completely unstable and subject to change.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "syntax"] #![crate_name = "syntax"]
#![unstable(feature = "rustc_private")] #![unstable(feature = "rustc_private")]
#![staged_api] #![staged_api]

View file

@ -38,6 +38,8 @@
//! [win]: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682010%28v=vs.85%29.aspx //! [win]: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682010%28v=vs.85%29.aspx
//! [ti]: https://en.wikipedia.org/wiki/Terminfo //! [ti]: https://en.wikipedia.org/wiki/Terminfo
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "term"] #![crate_name = "term"]
#![unstable(feature = "rustc_private", #![unstable(feature = "rustc_private",
reason = "use the crates.io `term` library instead")] reason = "use the crates.io `term` library instead")]

View file

@ -23,6 +23,8 @@
// running tests while providing a base that other test frameworks may // running tests while providing a base that other test frameworks may
// build off of. // build off of.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "test"] #![crate_name = "test"]
#![unstable(feature = "test")] #![unstable(feature = "test")]
#![staged_api] #![staged_api]

View file

@ -20,6 +20,8 @@
//! provide for basic string-related manipulations. This crate does not //! provide for basic string-related manipulations. This crate does not
//! (yet) aim to provide a full set of Unicode tables. //! (yet) aim to provide a full set of Unicode tables.
// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "unicode"] #![crate_name = "unicode"]
#![unstable(feature = "unicode")] #![unstable(feature = "unicode")]
#![feature(staged_api)] #![feature(staged_api)]