diff --git a/src/librustc/lib.rs b/src/librustc/lib.rs index be625affc2e..d39b14e6fee 100644 --- a/src/librustc/lib.rs +++ b/src/librustc/lib.rs @@ -44,7 +44,9 @@ #![feature(path)] #![feature(io)] #![feature(path_ext)] +#![feature(str_words)] #![cfg_attr(test, feature(test))] + extern crate arena; extern crate flate; extern crate fmt_macros; diff --git a/src/librustc_trans/lib.rs b/src/librustc_trans/lib.rs index 5f97709dd33..01076a4afa2 100644 --- a/src/librustc_trans/lib.rs +++ b/src/librustc_trans/lib.rs @@ -44,6 +44,7 @@ #![feature(os)] #![feature(path_ext)] #![feature(fs)] +#![feature(hash)] extern crate arena; extern crate flate; diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index 80584da265c..c203dc0e719 100644 --- a/src/librustdoc/lib.rs +++ b/src/librustdoc/lib.rs @@ -38,6 +38,7 @@ #![feature(str_words)] #![feature(io)] #![feature(path)] +#![feature(file_path)] #![feature(path_ext)] extern crate arena;