Skip to content

Register new snapshots #15105

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/liballoc/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@

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

#[phase(plugin, link)]
extern crate core;
Expand Down
1 change: 0 additions & 1 deletion src/libarena/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@

#![feature(unsafe_destructor)]
#![allow(missing_doc)]
#![allow(unknown_features)] // NOTE: remove after a stage0 snap

use std::cell::{Cell, RefCell};
use std::cmp;
Expand Down
1 change: 0 additions & 1 deletion src/libcollections/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
#![feature(macro_rules, managed_boxes, default_type_params, phase, globs)]
#![feature(unsafe_destructor)]
#![no_std]
#![allow(unknown_features)] // NOTE: remove after a stage0 snap

#[phase(plugin, link)] extern crate core;
extern crate alloc;
Expand Down
1 change: 0 additions & 1 deletion src/libcore/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@
#![no_std]
#![feature(globs, macro_rules, managed_boxes, phase, simd, unsafe_destructor)]
#![deny(missing_doc)]
#![allow(unknown_features)] // NOTE: remove after a stage0 snap

#[cfg(test)] extern crate realcore = "core";
#[cfg(test)] extern crate libc;
Expand Down
7 changes: 2 additions & 5 deletions src/libnative/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,12 @@
html_root_url = "http://doc.rust-lang.org/")]

#![deny(unused_result, unused_must_use)]
#![allow(non_camel_case_types)]
#![allow(deprecated)]
#![allow(unknown_features)] // NOTE: remove after a stage0 snap
#![feature(default_type_params)]
#![allow(non_camel_case_types, deprecated)]

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

extern crate alloc;
extern crate libc;
Expand Down
1 change: 0 additions & 1 deletion src/librustc/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ This API is completely unstable and subject to change.
html_root_url = "http://doc.rust-lang.org/")]

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

Expand Down
1 change: 0 additions & 1 deletion src/librustrt/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
#![feature(linkage, unsafe_destructor)]
#![no_std]
#![experimental]
#![allow(unknown_features)] // NOTE: remove after a stage0 snap

#[phase(plugin, link)] extern crate core;
extern crate alloc;
Expand Down
1 change: 0 additions & 1 deletion src/libstd/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@

#![allow(deprecated)]
#![deny(missing_doc)]
#![allow(unknown_features)] // NOTE: remove after a stage0 snap

// When testing libstd, bring in libuv as the I/O backend so tests can print
// things and all of the std::io tests have an I/O interface to run on top
Expand Down
1 change: 0 additions & 1 deletion src/libsync/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
#![feature(phase, globs, macro_rules, unsafe_destructor)]
#![deny(missing_doc)]
#![no_std]
#![allow(unknown_features)] // NOTE: remove after a stage0 snap

#[phase(plugin, link)] extern crate core;
extern crate alloc;
Expand Down
1 change: 0 additions & 1 deletion src/libsyntax/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ This API is completely unstable and subject to change.
#![feature(macro_rules, globs, managed_boxes, default_type_params, phase)]
#![feature(quote, unsafe_destructor)]
#![allow(deprecated)]
#![allow(unknown_features)] // NOTE: remove after a stage0 snap

extern crate serialize;
extern crate term;
Expand Down
8 changes: 8 additions & 0 deletions src/snapshots.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
S 2014-06-21 db9af1d
freebsd-x86_64 ef2bd0fc0b0efa2bd6f5c1eaa60a2ec8df533254
linux-i386 84339ea0f796ae468ef86797ef4587274bec19ea
linux-x86_64 bd8a6bc1f28845b7f4b768f6bfa06e7fbdcfcaae
macos-i386 3f25b2680efbab16ad074477a19d49dcce475977
macos-x86_64 4a8c2e1b7634d73406bac32a1a97893ec3ed818d
winnt-i386 0bf4e101d979ce116977d660ef149d03fbc90b99

S 2014-06-18 d6736a1
freebsd-x86_64 c1479bb3dc0ae3d8ba9193ff2caf92c805a95c51
linux-i386 bb1543b21235a51e81460b9419e112396ccf1d20
Expand Down