libstd: set baseline stability levels.

Earlier commits have established a baseline of `experimental` stability
for all crates under the facade (so their contents are considered
experimental within libstd). Since `experimental` is `allow` by
default, we should use the same baseline stability for libstd itself.

This commit adds `experimental` tags to all of the modules defined in
`std`, and `unstable` to `std` itself.
This commit is contained in:
Aaron Turon
2014-06-30 17:22:40 -07:00
parent 8bc286f998
commit f7bb31a47a
26 changed files with 41 additions and 0 deletions

View File

@@ -95,6 +95,7 @@
//! and `format!`, also available to all Rust code.
#![crate_id = "std#0.11.0-pre"]
#![unstable]
#![comment = "The Rust standard library"]
#![license = "MIT/ASL2"]
#![crate_type = "rlib"]