]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc/lib.rs
Remove the in-tree `flate` crate
[rust.git] / src / librustc / lib.rs
index 2a877aca53b7cb618d7b4bed10b97c50df360317..11db68cbf232c401e3067557f0b23def9abae79b 100644 (file)
 #![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;