Skip to content

Commit d250ec0

Browse files
committed
Register new snapshots
1 parent 58ac1c3 commit d250ec0

File tree

11 files changed

+11
-23
lines changed

11 files changed

+11
-23
lines changed

src/libarena/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
2424
html_root_url = "http://static.rust-lang.org/doc/master")]
2525
#![allow(missing_doc)]
26-
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
2726

2827
extern crate collections;
2928

src/libcollections/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222

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

25-
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
26-
2725
extern crate rand;
2826

2927
#[cfg(test)] extern crate test;

src/libgetopts/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,6 @@
8787
#![deny(missing_doc)]
8888
#![deny(deprecated_owned_vector)]
8989

90-
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
91-
9290
#[cfg(test)] #[phase(syntax, link)] extern crate log;
9391

9492
use std::cmp::Eq;

src/libnative/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@
5151
#![deny(unused_result, unused_must_use)]
5252
#![allow(non_camel_case_types)]
5353

54-
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
55-
5654
// NB this crate explicitly does *not* allow glob imports, please seriously
5755
// consider whether they're needed before adding that feature here (the
5856
// answer is that you don't need them)

src/librand/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,6 @@ println!("{:?}", tuple_ptr)
7171
html_root_url = "http://static.rust-lang.org/doc/master")]
7272

7373
#![feature(macro_rules, managed_boxes, phase)]
74-
75-
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
7674
#![deny(deprecated_owned_vector)]
7775

7876
#[cfg(test)]

src/librustc/lib.rs

-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ This API is completely unstable and subject to change.
3131
#![feature(macro_rules, globs, struct_variant, managed_boxes, quote,
3232
default_type_params, phase)]
3333

34-
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
35-
#![allow(unrecognized_lint)] // NOTE: remove after a stage0 snap
36-
3734
extern crate flate;
3835
extern crate arena;
3936
extern crate syntax;

src/libstd/lib.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,7 @@
5757
// Don't link to std. We are std.
5858
#![no_std]
5959

60-
// #![deny(missing_doc)] // NOTE: uncomment after a stage0 snap
61-
#![allow(missing_doc)] // NOTE: remove after a stage0 snap
62-
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
60+
#![deny(missing_doc)]
6361
#![allow(unknown_features)] // NOTE: remove after a stage0 snap
6462

6563
// When testing libstd, bring in libuv as the I/O backend so tests can print

src/libsync/lib.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@
2222
#![feature(phase)]
2323
#![deny(deprecated_owned_vector)]
2424

25-
// #![deny(missing_doc)] // NOTE: uncomment after a stage0 snap
26-
#![allow(missing_doc)] // NOTE: remove after a stage0 snap
27-
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
25+
#![deny(missing_doc)]
2826

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

src/libsyntax/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ This API is completely unstable and subject to change.
3030
quote)]
3131
#![allow(deprecated)]
3232

33-
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
34-
3533
extern crate serialize;
3634
extern crate term;
3735
extern crate collections;

src/libterm/lib.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@
2121

2222
#![feature(macro_rules)]
2323

24-
// #![deny(missing_doc)] // NOTE: uncomment after a stage0 snap
25-
#![allow(missing_doc)] // NOTE: remove after a stage0 snap
26-
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
24+
#![deny(missing_doc)]
2725

2826
extern crate collections;
2927

src/snapshots.txt

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
S 2014-04-03 e7fe207
2+
freebsd-x86_64 6d40f547d13896ab9d9dd4a4fdf2e72be553b01b
3+
linux-i386 875a8f6956f7d703f7206db91ca2a9b67c244cf8
4+
linux-x86_64 4d90df12231d1c9f51b5ae6e75546ccddcf0534b
5+
macos-i386 e5486efa1356abca8f8d5cac9aa6135c9626ab51
6+
macos-x86_64 8341419e4295d780f72950cfe2187195d0d03e83
7+
winnt-i386 60c2fb349ac8a7ad30c9ba2518a61e669debb7bf
8+
19
S 2014-03-28 b8601a3
210
freebsd-x86_64 c6b0651b2a90697754920ad381c13f9b7942ab47
311
linux-i386 3bef5684fd0582fbd4ddebd4514182d4f72924f7

0 commit comments

Comments
 (0)