Skip to content
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

Register new snapshots #13303

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/libarena/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
html_root_url = "http://static.rust-lang.org/doc/master")]
#![allow(missing_doc)]
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap

extern crate collections;

Expand Down
2 changes: 0 additions & 2 deletions src/libcollections/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@

#![feature(macro_rules, managed_boxes, default_type_params, phase)]

#![allow(visible_private_types)] // NOTE: remove after a stage0 snap

extern crate rand;

#[cfg(test)] extern crate test;
Expand Down
2 changes: 0 additions & 2 deletions src/libgetopts/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,6 @@
#![deny(missing_doc)]
#![deny(deprecated_owned_vector)]

#![allow(visible_private_types)] // NOTE: remove after a stage0 snap

#[cfg(test)] #[phase(syntax, link)] extern crate log;

use std::cmp::Eq;
Expand Down
2 changes: 0 additions & 2 deletions src/libnative/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@
#![deny(unused_result, unused_must_use)]
#![allow(non_camel_case_types)]

#![allow(visible_private_types)] // NOTE: remove after a stage0 snap

// 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)
Expand Down
2 changes: 0 additions & 2 deletions src/librand/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@ println!("{:?}", tuple_ptr)
html_root_url = "http://static.rust-lang.org/doc/master")]

#![feature(macro_rules, managed_boxes, phase)]

#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
#![deny(deprecated_owned_vector)]

#[cfg(test)]
Expand Down
3 changes: 0 additions & 3 deletions src/librustc/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ This API is completely unstable and subject to change.
#![feature(macro_rules, globs, struct_variant, managed_boxes, quote,
default_type_params, phase)]

#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
#![allow(unrecognized_lint)] // NOTE: remove after a stage0 snap

extern crate flate;
extern crate arena;
extern crate syntax;
Expand Down
4 changes: 1 addition & 3 deletions src/libstd/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@
// Don't link to std. We are std.
#![no_std]

// #![deny(missing_doc)] // NOTE: uncomment after a stage0 snap
#![allow(missing_doc)] // NOTE: remove after a stage0 snap
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
#![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
Expand Down
4 changes: 1 addition & 3 deletions src/libsync/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@
#![feature(phase)]
#![deny(deprecated_owned_vector)]

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

#[cfg(test)]
#[phase(syntax, link)] extern crate log;
Expand Down
2 changes: 0 additions & 2 deletions src/libsyntax/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ This API is completely unstable and subject to change.
quote)]
#![allow(deprecated)]

#![allow(visible_private_types)] // NOTE: remove after a stage0 snap

extern crate serialize;
extern crate term;
extern crate collections;
Expand Down
4 changes: 1 addition & 3 deletions src/libterm/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@

#![feature(macro_rules)]

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

extern crate collections;

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-04-03 e7fe207
freebsd-x86_64 6d40f547d13896ab9d9dd4a4fdf2e72be553b01b
linux-i386 875a8f6956f7d703f7206db91ca2a9b67c244cf8
linux-x86_64 4d90df12231d1c9f51b5ae6e75546ccddcf0534b
macos-i386 e5486efa1356abca8f8d5cac9aa6135c9626ab51
macos-x86_64 8341419e4295d780f72950cfe2187195d0d03e83
winnt-i386 60c2fb349ac8a7ad30c9ba2518a61e669debb7bf

S 2014-03-28 b8601a3
freebsd-x86_64 c6b0651b2a90697754920ad381c13f9b7942ab47
linux-i386 3bef5684fd0582fbd4ddebd4514182d4f72924f7
Expand Down