Skip to content

Commit 325d3a5

Browse files
committed
---
yaml --- r: 150589 b: refs/heads/try2 c: d250ec0 h: refs/heads/master i: 150587: 373963e v: v3
1 parent 3707302 commit 325d3a5

File tree

12 files changed

+12
-24
lines changed

12 files changed

+12
-24
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 58ac1c3563679b51f0e6dae1188cb635f1e89292
8+
refs/heads/try2: d250ec0bddf7ba84e34e893621234af3ebcfbca8
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/libarena/lib.rs

Lines changed: 0 additions & 1 deletion
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

branches/try2/src/libcollections/lib.rs

Lines changed: 0 additions & 2 deletions
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;

branches/try2/src/libgetopts/lib.rs

Lines changed: 0 additions & 2 deletions
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;

branches/try2/src/libnative/lib.rs

Lines changed: 0 additions & 2 deletions
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)

branches/try2/src/librand/lib.rs

Lines changed: 0 additions & 2 deletions
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)]

branches/try2/src/librustc/lib.rs

Lines changed: 0 additions & 3 deletions
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;

branches/try2/src/libstd/lib.rs

Lines changed: 1 addition & 3 deletions
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

branches/try2/src/libsync/lib.rs

Lines changed: 1 addition & 3 deletions
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;

branches/try2/src/libsyntax/lib.rs

Lines changed: 0 additions & 2 deletions
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;

branches/try2/src/libterm/lib.rs

Lines changed: 1 addition & 3 deletions
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

branches/try2/src/snapshots.txt

Lines changed: 8 additions & 0 deletions
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)