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:
Brian Anderson
2015-01-22 18:22:03 -08:00
parent f86bcc1543
commit cd6d9eab5d
148 changed files with 864 additions and 741 deletions

View File

@@ -219,7 +219,7 @@
//! concerned with error handling; instead its caller is responsible for
//! responding to errors that may occur while attempting to read the numbers.
#![unstable(feature = "unnamed_feature")]
#![unstable(feature = "io")]
#![deny(unused_must_use)]
pub use self::SeekStyle::*;
@@ -1743,7 +1743,7 @@ pub struct FileStat {
///
/// Usage of this field is discouraged, but if access is desired then the
/// fields are located here.
#[unstable(feature = "unnamed_feature")]
#[unstable(feature = "io")]
pub unstable: UnstableFileStat,
}
@@ -1751,7 +1751,7 @@ pub struct FileStat {
/// returned from a `stat` syscall which is not contained in the `FileStat`
/// structure. This information is not necessarily platform independent, and may
/// have different meanings or no meaning at all on some platforms.
#[unstable(feature = "unnamed_feature")]
#[unstable(feature = "io")]
#[derive(Copy, Hash)]
pub struct UnstableFileStat {
/// The ID of the device containing the file.