diff options
Diffstat (limited to 'src/libsyntax/lib.rs')
| -rw-r--r-- | src/libsyntax/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs index e84d43117e5..08b4fa7b444 100644 --- a/src/libsyntax/lib.rs +++ b/src/libsyntax/lib.rs @@ -26,9 +26,7 @@ This API is completely unstable and subject to change. html_favicon_url = "http://www.rust-lang.org/favicon.ico", html_root_url = "http://static.rust-lang.org/doc/master")]; -#[feature(macro_rules, globs, managed_boxes, default_type_params)]; -#[allow(unknown_features)];// Note: remove it after a snapshot. -#[feature(quote)]; +#[feature(macro_rules, globs, managed_boxes, default_type_params, phase, quote)]; #[allow(deprecated)]; #[deny(non_camel_case_types)]; @@ -37,6 +35,8 @@ This API is completely unstable and subject to change. extern crate serialize; extern crate term; extern crate collections; +#[phase(syntax, link)] +extern crate log; pub mod util { pub mod interner; |
