about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-06-19 03:31:18 +0000
committerbors <bors@rust-lang.org>2014-06-19 03:31:18 +0000
commitf05cd6e04e62651ec95a3ae66906399d7c0092a1 (patch)
tree008b8165e0ec8c0bf7edef753cf0f7c672afcf3c /src
parent3770c42a4959cbabc73da52abc7e3db96657974e (diff)
parent77657baf2c1174fc8e22ac11c0ff737c8e9a3ad7 (diff)
downloadrust-f05cd6e04e62651ec95a3ae66906399d7c0092a1.tar.gz
rust-f05cd6e04e62651ec95a3ae66906399d7c0092a1.zip
auto merge of #15014 : brson/rust/all-crates-experimental, r=cmr
This creates a stability baseline for all crates that we distribute that are not `std`. In general, all library code must start as experimental and progress in stages to become stable.
Diffstat (limited to 'src')
-rw-r--r--src/liballoc/lib.rs1
-rw-r--r--src/libarena/lib.rs1
-rw-r--r--src/libcollections/lib.rs1
-rw-r--r--src/libcore/lib.rs1
-rw-r--r--src/libdebug/lib.rs1
-rw-r--r--src/libflate/lib.rs1
-rw-r--r--src/libfmt_macros/lib.rs2
-rw-r--r--src/libfourcc/lib.rs1
-rw-r--r--src/libgetopts/lib.rs1
-rw-r--r--src/libglob/lib.rs1
-rw-r--r--src/libgraphviz/lib.rs1
-rw-r--r--src/libgreen/lib.rs1
-rw-r--r--src/libhexfloat/lib.rs1
-rw-r--r--src/liblog/lib.rs1
-rw-r--r--src/libnative/lib.rs1
-rw-r--r--src/libnum/lib.rs1
-rw-r--r--src/librustc/lib.rs1
-rw-r--r--src/librustdoc/lib.rs1
-rw-r--r--src/librustuv/lib.rs1
-rw-r--r--src/libsemver/lib.rs1
-rw-r--r--src/libserialize/lib.rs1
-rw-r--r--src/libsync/lib.rs1
-rw-r--r--src/libsyntax/lib.rs1
-rw-r--r--src/libterm/lib.rs1
-rw-r--r--src/libtest/lib.rs1
-rw-r--r--src/libtime/lib.rs1
-rw-r--r--src/liburl/lib.rs1
-rw-r--r--src/libuuid/lib.rs1
28 files changed, 28 insertions, 1 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs
index a947378f768..e578346861e 100644
--- a/src/liballoc/lib.rs
+++ b/src/liballoc/lib.rs
@@ -61,6 +61,7 @@
 //! the system malloc/free.
 
 #![crate_id = "alloc#0.11.0-pre"]
+#![experimental]
 #![license = "MIT/ASL2"]
 #![crate_type = "rlib"]
 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
diff --git a/src/libarena/lib.rs b/src/libarena/lib.rs
index 34264aa1b81..86babb7a3d2 100644
--- a/src/libarena/lib.rs
+++ b/src/libarena/lib.rs
@@ -20,6 +20,7 @@
 //! more complex, slower Arena which can hold objects of any type.
 
 #![crate_id = "arena#0.11.0-pre"]
+#![experimental]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]
diff --git a/src/libcollections/lib.rs b/src/libcollections/lib.rs
index fde8dcd0ef5..3abecc3fc86 100644
--- a/src/libcollections/lib.rs
+++ b/src/libcollections/lib.rs
@@ -13,6 +13,7 @@
  */
 
 #![crate_id = "collections#0.11.0-pre"]
+#![experimental]
 #![crate_type = "rlib"]
 #![license = "MIT/ASL2"]
 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs
index 5c7b588a9c9..62c34912f66 100644
--- a/src/libcore/lib.rs
+++ b/src/libcore/lib.rs
@@ -46,6 +46,7 @@
 //!
 
 #![crate_id = "core#0.11.0-pre"]
+#![experimental]
 #![license = "MIT/ASL2"]
 #![crate_type = "rlib"]
 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
diff --git a/src/libdebug/lib.rs b/src/libdebug/lib.rs
index 452c3d2937c..5056c40a2de 100644
--- a/src/libdebug/lib.rs
+++ b/src/libdebug/lib.rs
@@ -17,6 +17,7 @@
 //! will persist into the future.
 
 #![crate_id = "debug#0.11.0-pre"]
+#![experimental]
 #![license = "MIT/ASL2"]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
diff --git a/src/libflate/lib.rs b/src/libflate/lib.rs
index c9617f0da1b..188596891be 100644
--- a/src/libflate/lib.rs
+++ b/src/libflate/lib.rs
@@ -19,6 +19,7 @@ Simple [DEFLATE][def]-based compression. This is a wrapper around the
 */
 
 #![crate_id = "flate#0.11.0-pre"]
+#![experimental]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]
diff --git a/src/libfmt_macros/lib.rs b/src/libfmt_macros/lib.rs
index aa221bde101..90023ab0fc5 100644
--- a/src/libfmt_macros/lib.rs
+++ b/src/libfmt_macros/lib.rs
@@ -15,11 +15,11 @@
 //! generated instead.
 
 #![crate_id = "fmt_macros#0.11.0-pre"]
+#![experimental]
 #![license = "MIT/ASL2"]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![feature(macro_rules, globs)]
-#![experimental]
 
 use std::char;
 use std::str;
diff --git a/src/libfourcc/lib.rs b/src/libfourcc/lib.rs
index 2d760bbad77..a5880f32472 100644
--- a/src/libfourcc/lib.rs
+++ b/src/libfourcc/lib.rs
@@ -40,6 +40,7 @@ fn main() {
 */
 
 #![crate_id = "fourcc#0.11.0-pre"]
+#![experimental]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]
diff --git a/src/libgetopts/lib.rs b/src/libgetopts/lib.rs
index e127000eb07..0981820533d 100644
--- a/src/libgetopts/lib.rs
+++ b/src/libgetopts/lib.rs
@@ -79,6 +79,7 @@
 //! ~~~
 
 #![crate_id = "getopts#0.11.0-pre"]
+#![experimental]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]
diff --git a/src/libglob/lib.rs b/src/libglob/lib.rs
index a2c2706b4c2..495acdbab62 100644
--- a/src/libglob/lib.rs
+++ b/src/libglob/lib.rs
@@ -24,6 +24,7 @@
  */
 
 #![crate_id = "glob#0.11.0-pre"]
+#![experimental]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]
diff --git a/src/libgraphviz/lib.rs b/src/libgraphviz/lib.rs
index e5fb200a1c4..13342633f4c 100644
--- a/src/libgraphviz/lib.rs
+++ b/src/libgraphviz/lib.rs
@@ -267,6 +267,7 @@ pub fn main() {
 */
 
 #![crate_id = "graphviz#0.11.0-pre"]
+#![experimental]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]
diff --git a/src/libgreen/lib.rs b/src/libgreen/lib.rs
index ee25d19e324..007f63383ac 100644
--- a/src/libgreen/lib.rs
+++ b/src/libgreen/lib.rs
@@ -198,6 +198,7 @@
 //! ```
 
 #![crate_id = "green#0.11.0-pre"]
+#![experimental]
 #![license = "MIT/ASL2"]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
diff --git a/src/libhexfloat/lib.rs b/src/libhexfloat/lib.rs
index 5451e4fc18c..f0f05baa282 100644
--- a/src/libhexfloat/lib.rs
+++ b/src/libhexfloat/lib.rs
@@ -37,6 +37,7 @@ fn main() {
 */
 
 #![crate_id = "hexfloat#0.11.0-pre"]
+#![experimental]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]
diff --git a/src/liblog/lib.rs b/src/liblog/lib.rs
index 90a186f59d2..ddc2872b7ae 100644
--- a/src/liblog/lib.rs
+++ b/src/liblog/lib.rs
@@ -106,6 +106,7 @@ if logging is disabled, none of the components of the log will be executed.
 */
 
 #![crate_id = "log#0.11.0-pre"]
+#![experimental]
 #![license = "MIT/ASL2"]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
diff --git a/src/libnative/lib.rs b/src/libnative/lib.rs
index 40b99c5bbdb..24f1b9b9407 100644
--- a/src/libnative/lib.rs
+++ b/src/libnative/lib.rs
@@ -45,6 +45,7 @@
 //! ```
 
 #![crate_id = "native#0.11.0-pre"]
+#![experimental]
 #![license = "MIT/ASL2"]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
diff --git a/src/libnum/lib.rs b/src/libnum/lib.rs
index 27ccc528c94..6803b91143e 100644
--- a/src/libnum/lib.rs
+++ b/src/libnum/lib.rs
@@ -45,6 +45,7 @@
 #![feature(macro_rules)]
 
 #![crate_id = "num#0.11.0-pre"]
+#![experimental]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]
diff --git a/src/librustc/lib.rs b/src/librustc/lib.rs
index 680bd667c3f..86529cf1987 100644
--- a/src/librustc/lib.rs
+++ b/src/librustc/lib.rs
@@ -19,6 +19,7 @@ This API is completely unstable and subject to change.
 */
 
 #![crate_id = "rustc#0.11.0-pre"]
+#![experimental]
 #![comment = "The Rust compiler"]
 #![license = "MIT/ASL2"]
 #![crate_type = "dylib"]
diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs
index c141e322fbe..fdf38dc335c 100644
--- a/src/librustdoc/lib.rs
+++ b/src/librustdoc/lib.rs
@@ -9,6 +9,7 @@
 // except according to those terms.
 
 #![crate_id = "rustdoc#0.11.0-pre"]
+#![experimental]
 #![desc = "rustdoc, the Rust documentation extractor"]
 #![license = "MIT/ASL2"]
 #![crate_type = "dylib"]
diff --git a/src/librustuv/lib.rs b/src/librustuv/lib.rs
index 78c2c5ff630..dae94acb6f0 100644
--- a/src/librustuv/lib.rs
+++ b/src/librustuv/lib.rs
@@ -35,6 +35,7 @@ via `close` and `delete` methods.
 */
 
 #![crate_id = "rustuv#0.11.0-pre"]
+#![experimental]
 #![license = "MIT/ASL2"]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
diff --git a/src/libsemver/lib.rs b/src/libsemver/lib.rs
index 2ad69dad8d2..054a97315ad 100644
--- a/src/libsemver/lib.rs
+++ b/src/libsemver/lib.rs
@@ -29,6 +29,7 @@
 //! `0.8.1-rc.3.0+20130922.linux`.
 
 #![crate_id = "semver#0.11.0-pre"]
+#![experimental]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]
diff --git a/src/libserialize/lib.rs b/src/libserialize/lib.rs
index ad622eace97..275e5e242d6 100644
--- a/src/libserialize/lib.rs
+++ b/src/libserialize/lib.rs
@@ -15,6 +15,7 @@ Core encoding and decoding interfaces.
 */
 
 #![crate_id = "serialize#0.11.0-pre"]
+#![experimental]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]
diff --git a/src/libsync/lib.rs b/src/libsync/lib.rs
index 4e8617e48c3..1336ea48d31 100644
--- a/src/libsync/lib.rs
+++ b/src/libsync/lib.rs
@@ -18,6 +18,7 @@
 //! through `std::sync`.
 
 #![crate_id = "sync#0.11.0-pre"]
+#![experimental]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]
diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs
index 8a66f0e6846..b18e3a221f9 100644
--- a/src/libsyntax/lib.rs
+++ b/src/libsyntax/lib.rs
@@ -19,6 +19,7 @@ This API is completely unstable and subject to change.
 */
 
 #![crate_id = "syntax#0.11.0-pre"]
+#![experimental]
 #![license = "MIT/ASL2"]
 #![crate_type = "dylib"]
 #![crate_type = "rlib"]
diff --git a/src/libterm/lib.rs b/src/libterm/lib.rs
index 47250175485..80ece06df3a 100644
--- a/src/libterm/lib.rs
+++ b/src/libterm/lib.rs
@@ -39,6 +39,7 @@
 //! [ti]: https://en.wikipedia.org/wiki/Terminfo
 
 #![crate_id = "term#0.11.0-pre"]
+#![experimental]
 #![comment = "Simple ANSI color library"]
 #![license = "MIT/ASL2"]
 #![crate_type = "rlib"]
diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs
index 112ffd7c1a4..4df8cfdd490 100644
--- a/src/libtest/lib.rs
+++ b/src/libtest/lib.rs
@@ -24,6 +24,7 @@
 // build off of.
 
 #![crate_id = "test#0.11.0-pre"]
+#![experimental]
 #![comment = "Rust internal test library only used by rustc"]
 #![license = "MIT/ASL2"]
 #![crate_type = "rlib"]
diff --git a/src/libtime/lib.rs b/src/libtime/lib.rs
index 79f8cd3379a..94a7acaf076 100644
--- a/src/libtime/lib.rs
+++ b/src/libtime/lib.rs
@@ -11,6 +11,7 @@
 //! Simple time handling.
 
 #![crate_id = "time#0.11.0-pre"]
+#![experimental]
 
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
diff --git a/src/liburl/lib.rs b/src/liburl/lib.rs
index a3329a90e9b..566602b4091 100644
--- a/src/liburl/lib.rs
+++ b/src/liburl/lib.rs
@@ -11,6 +11,7 @@
 //! Types/fns concerning URLs (see RFC 3986)
 
 #![crate_id = "url#0.11.0-pre"]
+#![experimental]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]
diff --git a/src/libuuid/lib.rs b/src/libuuid/lib.rs
index b68b435da4b..19627e2c2ce 100644
--- a/src/libuuid/lib.rs
+++ b/src/libuuid/lib.rs
@@ -55,6 +55,7 @@ Examples of string representations:
 */
 
 #![crate_id = "uuid#0.11.0-pre"]
+#![experimental]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]