Skip to content

Commit 10b12bc

Browse files
committed
auto merge of #15105 : alexcrichton/rust/snapshots, r=luqmana
2 parents e07cec6 + 70d4b50 commit 10b12bc

File tree

11 files changed

+10
-14
lines changed

11 files changed

+10
-14
lines changed

src/liballoc/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@
7070

7171
#![no_std]
7272
#![feature(phase, unsafe_destructor)]
73-
#![allow(unknown_features)] // NOTE: remove after a stage0 snap
7473

7574
#[phase(plugin, link)]
7675
extern crate core;

src/libarena/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030

3131
#![feature(unsafe_destructor)]
3232
#![allow(missing_doc)]
33-
#![allow(unknown_features)] // NOTE: remove after a stage0 snap
3433

3534
use std::cell::{Cell, RefCell};
3635
use std::cmp;

src/libcollections/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
#![feature(macro_rules, managed_boxes, default_type_params, phase, globs)]
2525
#![feature(unsafe_destructor)]
2626
#![no_std]
27-
#![allow(unknown_features)] // NOTE: remove after a stage0 snap
2827

2928
#[phase(plugin, link)] extern crate core;
3029
extern crate alloc;

src/libcore/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@
5757
#![no_std]
5858
#![feature(globs, macro_rules, managed_boxes, phase, simd, unsafe_destructor)]
5959
#![deny(missing_doc)]
60-
#![allow(unknown_features)] // NOTE: remove after a stage0 snap
6160

6261
#[cfg(test)] extern crate realcore = "core";
6362
#[cfg(test)] extern crate libc;

src/libnative/lib.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,12 @@
5454
html_root_url = "http://doc.rust-lang.org/")]
5555

5656
#![deny(unused_result, unused_must_use)]
57-
#![allow(non_camel_case_types)]
58-
#![allow(deprecated)]
59-
#![allow(unknown_features)] // NOTE: remove after a stage0 snap
60-
#![feature(default_type_params)]
57+
#![allow(non_camel_case_types, deprecated)]
6158

6259
// NB this crate explicitly does *not* allow glob imports, please seriously
6360
// consider whether they're needed before adding that feature here (the
6461
// answer is that you don't need them)
65-
#![feature(macro_rules, unsafe_destructor)]
62+
#![feature(macro_rules, unsafe_destructor, default_type_params)]
6663

6764
extern crate alloc;
6865
extern crate libc;

src/librustc/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ This API is completely unstable and subject to change.
2929
html_root_url = "http://doc.rust-lang.org/")]
3030

3131
#![allow(deprecated)]
32-
#![allow(unknown_features)] // NOTE: remove after a stage0 snap
3332
#![feature(macro_rules, globs, struct_variant, managed_boxes, quote)]
3433
#![feature(default_type_params, phase, unsafe_destructor)]
3534

src/librustrt/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
#![feature(linkage, unsafe_destructor)]
2121
#![no_std]
2222
#![experimental]
23-
#![allow(unknown_features)] // NOTE: remove after a stage0 snap
2423

2524
#[phase(plugin, link)] extern crate core;
2625
extern crate alloc;

src/libstd/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@
112112

113113
#![allow(deprecated)]
114114
#![deny(missing_doc)]
115-
#![allow(unknown_features)] // NOTE: remove after a stage0 snap
116115

117116
// When testing libstd, bring in libuv as the I/O backend so tests can print
118117
// things and all of the std::io tests have an I/O interface to run on top

src/libsync/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
#![feature(phase, globs, macro_rules, unsafe_destructor)]
3131
#![deny(missing_doc)]
3232
#![no_std]
33-
#![allow(unknown_features)] // NOTE: remove after a stage0 snap
3433

3534
#[phase(plugin, link)] extern crate core;
3635
extern crate alloc;

src/libsyntax/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ This API is completely unstable and subject to change.
3030
#![feature(macro_rules, globs, managed_boxes, default_type_params, phase)]
3131
#![feature(quote, unsafe_destructor)]
3232
#![allow(deprecated)]
33-
#![allow(unknown_features)] // NOTE: remove after a stage0 snap
3433

3534
extern crate serialize;
3635
extern crate term;

src/snapshots.txt

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
S 2014-06-21 db9af1d
2+
freebsd-x86_64 ef2bd0fc0b0efa2bd6f5c1eaa60a2ec8df533254
3+
linux-i386 84339ea0f796ae468ef86797ef4587274bec19ea
4+
linux-x86_64 bd8a6bc1f28845b7f4b768f6bfa06e7fbdcfcaae
5+
macos-i386 3f25b2680efbab16ad074477a19d49dcce475977
6+
macos-x86_64 4a8c2e1b7634d73406bac32a1a97893ec3ed818d
7+
winnt-i386 0bf4e101d979ce116977d660ef149d03fbc90b99
8+
19
S 2014-06-18 d6736a1
210
freebsd-x86_64 c1479bb3dc0ae3d8ba9193ff2caf92c805a95c51
311
linux-i386 bb1543b21235a51e81460b9419e112396ccf1d20

0 commit comments

Comments
 (0)