Register new snapshots
This commit is contained in:
parent
58ac1c3563
commit
d250ec0bdd
11 changed files with 11 additions and 23 deletions
|
@ -23,7 +23,6 @@
|
||||||
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
|
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
|
||||||
html_root_url = "http://static.rust-lang.org/doc/master")]
|
html_root_url = "http://static.rust-lang.org/doc/master")]
|
||||||
#![allow(missing_doc)]
|
#![allow(missing_doc)]
|
||||||
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
|
|
||||||
|
|
||||||
extern crate collections;
|
extern crate collections;
|
||||||
|
|
||||||
|
|
|
@ -22,8 +22,6 @@
|
||||||
|
|
||||||
#![feature(macro_rules, managed_boxes, default_type_params, phase)]
|
#![feature(macro_rules, managed_boxes, default_type_params, phase)]
|
||||||
|
|
||||||
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
|
|
||||||
|
|
||||||
extern crate rand;
|
extern crate rand;
|
||||||
|
|
||||||
#[cfg(test)] extern crate test;
|
#[cfg(test)] extern crate test;
|
||||||
|
|
|
@ -87,8 +87,6 @@
|
||||||
#![deny(missing_doc)]
|
#![deny(missing_doc)]
|
||||||
#![deny(deprecated_owned_vector)]
|
#![deny(deprecated_owned_vector)]
|
||||||
|
|
||||||
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
|
|
||||||
|
|
||||||
#[cfg(test)] #[phase(syntax, link)] extern crate log;
|
#[cfg(test)] #[phase(syntax, link)] extern crate log;
|
||||||
|
|
||||||
use std::cmp::Eq;
|
use std::cmp::Eq;
|
||||||
|
|
|
@ -51,8 +51,6 @@
|
||||||
#![deny(unused_result, unused_must_use)]
|
#![deny(unused_result, unused_must_use)]
|
||||||
#![allow(non_camel_case_types)]
|
#![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
|
// NB this crate explicitly does *not* allow glob imports, please seriously
|
||||||
// consider whether they're needed before adding that feature here (the
|
// consider whether they're needed before adding that feature here (the
|
||||||
// answer is that you don't need them)
|
// answer is that you don't need them)
|
||||||
|
|
|
@ -71,8 +71,6 @@ println!("{:?}", tuple_ptr)
|
||||||
html_root_url = "http://static.rust-lang.org/doc/master")]
|
html_root_url = "http://static.rust-lang.org/doc/master")]
|
||||||
|
|
||||||
#![feature(macro_rules, managed_boxes, phase)]
|
#![feature(macro_rules, managed_boxes, phase)]
|
||||||
|
|
||||||
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
|
|
||||||
#![deny(deprecated_owned_vector)]
|
#![deny(deprecated_owned_vector)]
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
|
|
|
@ -31,9 +31,6 @@ This API is completely unstable and subject to change.
|
||||||
#![feature(macro_rules, globs, struct_variant, managed_boxes, quote,
|
#![feature(macro_rules, globs, struct_variant, managed_boxes, quote,
|
||||||
default_type_params, phase)]
|
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 flate;
|
||||||
extern crate arena;
|
extern crate arena;
|
||||||
extern crate syntax;
|
extern crate syntax;
|
||||||
|
|
|
@ -57,9 +57,7 @@
|
||||||
// Don't link to std. We are std.
|
// Don't link to std. We are std.
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
// #![deny(missing_doc)] // NOTE: uncomment after a stage0 snap
|
#![deny(missing_doc)]
|
||||||
#![allow(missing_doc)] // NOTE: remove after a stage0 snap
|
|
||||||
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
|
|
||||||
#![allow(unknown_features)] // NOTE: remove after a stage0 snap
|
#![allow(unknown_features)] // NOTE: remove after a stage0 snap
|
||||||
|
|
||||||
// When testing libstd, bring in libuv as the I/O backend so tests can print
|
// When testing libstd, bring in libuv as the I/O backend so tests can print
|
||||||
|
|
|
@ -22,9 +22,7 @@
|
||||||
#![feature(phase)]
|
#![feature(phase)]
|
||||||
#![deny(deprecated_owned_vector)]
|
#![deny(deprecated_owned_vector)]
|
||||||
|
|
||||||
// #![deny(missing_doc)] // NOTE: uncomment after a stage0 snap
|
#![deny(missing_doc)]
|
||||||
#![allow(missing_doc)] // NOTE: remove after a stage0 snap
|
|
||||||
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
|
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
#[phase(syntax, link)] extern crate log;
|
#[phase(syntax, link)] extern crate log;
|
||||||
|
|
|
@ -30,8 +30,6 @@ This API is completely unstable and subject to change.
|
||||||
quote)]
|
quote)]
|
||||||
#![allow(deprecated)]
|
#![allow(deprecated)]
|
||||||
|
|
||||||
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
|
|
||||||
|
|
||||||
extern crate serialize;
|
extern crate serialize;
|
||||||
extern crate term;
|
extern crate term;
|
||||||
extern crate collections;
|
extern crate collections;
|
||||||
|
|
|
@ -21,9 +21,7 @@
|
||||||
|
|
||||||
#![feature(macro_rules)]
|
#![feature(macro_rules)]
|
||||||
|
|
||||||
// #![deny(missing_doc)] // NOTE: uncomment after a stage0 snap
|
#![deny(missing_doc)]
|
||||||
#![allow(missing_doc)] // NOTE: remove after a stage0 snap
|
|
||||||
#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
|
|
||||||
|
|
||||||
extern crate collections;
|
extern crate collections;
|
||||||
|
|
||||||
|
|
|
@ -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
|
S 2014-03-28 b8601a3
|
||||||
freebsd-x86_64 c6b0651b2a90697754920ad381c13f9b7942ab47
|
freebsd-x86_64 c6b0651b2a90697754920ad381c13f9b7942ab47
|
||||||
linux-i386 3bef5684fd0582fbd4ddebd4514182d4f72924f7
|
linux-i386 3bef5684fd0582fbd4ddebd4514182d4f72924f7
|
||||||
|
|
Loading…
Reference in a new issue