Skip to content

Commit f05cd6e

Browse files
committed
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.
2 parents 3770c42 + 77657ba commit f05cd6e

File tree

28 files changed

+28
-1
lines changed

28 files changed

+28
-1
lines changed

src/liballoc/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
//! the system malloc/free.
6262
6363
#![crate_id = "alloc#0.11.0-pre"]
64+
#![experimental]
6465
#![license = "MIT/ASL2"]
6566
#![crate_type = "rlib"]
6667
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",

src/libarena/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
//! more complex, slower Arena which can hold objects of any type.
2121
2222
#![crate_id = "arena#0.11.0-pre"]
23+
#![experimental]
2324
#![crate_type = "rlib"]
2425
#![crate_type = "dylib"]
2526
#![license = "MIT/ASL2"]

src/libcollections/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
*/
1414

1515
#![crate_id = "collections#0.11.0-pre"]
16+
#![experimental]
1617
#![crate_type = "rlib"]
1718
#![license = "MIT/ASL2"]
1819
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",

src/libcore/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
//!
4747
4848
#![crate_id = "core#0.11.0-pre"]
49+
#![experimental]
4950
#![license = "MIT/ASL2"]
5051
#![crate_type = "rlib"]
5152
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",

src/libdebug/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
//! will persist into the future.
1818
1919
#![crate_id = "debug#0.11.0-pre"]
20+
#![experimental]
2021
#![license = "MIT/ASL2"]
2122
#![crate_type = "rlib"]
2223
#![crate_type = "dylib"]

src/libflate/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Simple [DEFLATE][def]-based compression. This is a wrapper around the
1919
*/
2020

2121
#![crate_id = "flate#0.11.0-pre"]
22+
#![experimental]
2223
#![crate_type = "rlib"]
2324
#![crate_type = "dylib"]
2425
#![license = "MIT/ASL2"]

src/libfmt_macros/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
//! generated instead.
1616
1717
#![crate_id = "fmt_macros#0.11.0-pre"]
18+
#![experimental]
1819
#![license = "MIT/ASL2"]
1920
#![crate_type = "rlib"]
2021
#![crate_type = "dylib"]
2122
#![feature(macro_rules, globs)]
22-
#![experimental]
2323

2424
use std::char;
2525
use std::str;

src/libfourcc/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ fn main() {
4040
*/
4141

4242
#![crate_id = "fourcc#0.11.0-pre"]
43+
#![experimental]
4344
#![crate_type = "rlib"]
4445
#![crate_type = "dylib"]
4546
#![license = "MIT/ASL2"]

src/libgetopts/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
//! ~~~
8080
8181
#![crate_id = "getopts#0.11.0-pre"]
82+
#![experimental]
8283
#![crate_type = "rlib"]
8384
#![crate_type = "dylib"]
8485
#![license = "MIT/ASL2"]

src/libglob/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
*/
2525

2626
#![crate_id = "glob#0.11.0-pre"]
27+
#![experimental]
2728
#![crate_type = "rlib"]
2829
#![crate_type = "dylib"]
2930
#![license = "MIT/ASL2"]

0 commit comments

Comments
 (0)