X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Flibrustc%2Flib.rs;h=11db68cbf232c401e3067557f0b23def9abae79b;hb=a4024c58e1e5c92cfe3ed39ed9f5b96f3f38122e;hp=d1d9dd4853d7baa19ee5a43266f8d8321f1ec131;hpb=74751358e625878306aa193fed788e79aa53d4fa;p=rust.git diff --git a/src/librustc/lib.rs b/src/librustc/lib.rs index d1d9dd4853d..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="128"] +#![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;