]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc/lib.rs
Remove the in-tree `flate` crate
[rust.git] / src / librustc / lib.rs
index 5cf26ea8bfca596db6575dc9ec4cc46066f1cc88..11db68cbf232c401e3067557f0b23def9abae79b 100644 (file)
@@ -28,9 +28,9 @@
 #![feature(conservative_impl_trait)]
 #![feature(const_fn)]
 #![feature(core_intrinsics)]
+#![feature(discriminant_value)]
 #![feature(i128_type)]
 #![feature(libc)]
-#![feature(loop_break_value)]
 #![feature(never_type)]
 #![feature(nonzero)]
 #![feature(quote)]
 #![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))]
-
-#![recursion_limit="128"]
+#![recursion_limit="256"]
 
 extern crate arena;
 extern crate core;
@@ -54,7 +50,7 @@
 extern crate getopts;
 extern crate graphviz;
 extern crate libc;
-extern crate rustc_llvm as llvm;
+extern crate owning_ref;
 extern crate rustc_back;
 extern crate rustc_data_structures;
 extern crate serialize;
@@ -67,6 +63,8 @@
 
 extern crate serialize as rustc_serialize; // used by deriving
 
+extern crate flate2;
+
 #[macro_use]
 mod macros;