From feab04e2eaf39f8234dad276c404a4325f2cfddf Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 3 Apr 2014 21:52:13 -0700 Subject: [PATCH] Register new snapshots --- src/libarena/lib.rs | 1 - src/libcollections/lib.rs | 2 -- src/libgetopts/lib.rs | 2 -- src/libnative/lib.rs | 2 -- src/librand/lib.rs | 2 -- src/librustc/lib.rs | 3 --- src/libstd/lib.rs | 4 +--- src/libsync/lib.rs | 4 +--- src/libsyntax/lib.rs | 2 -- src/libterm/lib.rs | 4 +--- src/snapshots.txt | 8 ++++++++ 11 files changed, 11 insertions(+), 23 deletions(-) diff --git a/src/libarena/lib.rs b/src/libarena/lib.rs index 17ab294a3f6d8..be42fab8b544e 100644 --- a/src/libarena/lib.rs +++ b/src/libarena/lib.rs @@ -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; diff --git a/src/libcollections/lib.rs b/src/libcollections/lib.rs index 84c440aa3a9f4..ef5289ae373d8 100644 --- a/src/libcollections/lib.rs +++ b/src/libcollections/lib.rs @@ -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; diff --git a/src/libgetopts/lib.rs b/src/libgetopts/lib.rs index dfb91a477cb7d..9d4f2e2f8f082 100644 --- a/src/libgetopts/lib.rs +++ b/src/libgetopts/lib.rs @@ -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; diff --git a/src/libnative/lib.rs b/src/libnative/lib.rs index 8afbbda71c27e..7e05c4c961c9c 100644 --- a/src/libnative/lib.rs +++ b/src/libnative/lib.rs @@ -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) diff --git a/src/librand/lib.rs b/src/librand/lib.rs index 8623e627e5300..57b910093e0ea 100644 --- a/src/librand/lib.rs +++ b/src/librand/lib.rs @@ -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)] diff --git a/src/librustc/lib.rs b/src/librustc/lib.rs index cf653f816ac7b..893cc019ca751 100644 --- a/src/librustc/lib.rs +++ b/src/librustc/lib.rs @@ -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; diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index f4f5be4d37a46..42d35b608960a 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -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 diff --git a/src/libsync/lib.rs b/src/libsync/lib.rs index 7e7a6afc8ee71..58bd837104c58 100644 --- a/src/libsync/lib.rs +++ b/src/libsync/lib.rs @@ -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; diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs index 5570219bd8e4f..012bc50ecabc8 100644 --- a/src/libsyntax/lib.rs +++ b/src/libsyntax/lib.rs @@ -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; diff --git a/src/libterm/lib.rs b/src/libterm/lib.rs index 05104d5729f91..a94a13aa0177c 100644 --- a/src/libterm/lib.rs +++ b/src/libterm/lib.rs @@ -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; diff --git a/src/snapshots.txt b/src/snapshots.txt index 59ea9834ed7e5..83a8e7bb9658d 100644 --- a/src/snapshots.txt +++ b/src/snapshots.txt @@ -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