X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Flibrustc%2Flib.rs;h=11db68cbf232c401e3067557f0b23def9abae79b;hb=a4024c58e1e5c92cfe3ed39ed9f5b96f3f38122e;hp=2a877aca53b7cb618d7b4bed10b97c50df360317;hpb=920c4799bead614c21b12ba396afe19cb70730f3;p=rust.git diff --git a/src/librustc/lib.rs b/src/librustc/lib.rs index 2a877aca53b..11db68cbf23 100644 --- a/src/librustc/lib.rs +++ b/src/librustc/lib.rs @@ -42,12 +42,7 @@ #![feature(sort_unstable)] #![feature(trace_macros)] -#![cfg_attr(stage0, unstable(feature = "rustc_private", issue = "27812"))] -#![cfg_attr(stage0, feature(rustc_private))] -#![cfg_attr(stage0, feature(staged_api))] -#![cfg_attr(stage0, feature(loop_break_value))] - -#![recursion_limit="192"] +#![recursion_limit="256"] extern crate arena; extern crate core; @@ -68,6 +63,8 @@ extern crate serialize as rustc_serialize; // used by deriving +extern crate flate2; + #[macro_use] mod macros;