]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_trans/lib.rs
std: Stabilize/deprecate features for 1.4
[rust.git] / src / librustc_trans / lib.rs
index f4daa6e86e9c0d126dd9509cd20d905059524a1b..a7fb3af138453ffa024b9b5eb2ad05d20425e340 100644 (file)
@@ -17,7 +17,7 @@
 // Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
 #![cfg_attr(stage0, feature(custom_attribute))]
 #![crate_name = "rustc_trans"]
-#![unstable(feature = "rustc_private")]
+#![unstable(feature = "rustc_private", issue = "27812")]
 #![staged_api]
 #![crate_type = "dylib"]
 #![crate_type = "rlib"]
@@ -36,7 +36,6 @@
 #![feature(path_relative_from)]
 #![feature(path_relative_from)]
 #![feature(quote)]
-#![feature(rc_weak)]
 #![feature(rustc_diagnostic_macros)]
 #![feature(rustc_private)]
 #![feature(staged_api)]
@@ -53,7 +52,9 @@
 extern crate libc;
 extern crate rustc;
 extern crate rustc_back;
+extern crate rustc_front;
 extern crate rustc_llvm as llvm;
+extern crate rustc_platform_intrinsics as intrinsics;
 extern crate serialize;
 
 #[macro_use] extern crate log;