diff options
Diffstat (limited to 'src/libserialize/lib.rs')
| -rw-r--r-- | src/libserialize/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libserialize/lib.rs b/src/libserialize/lib.rs index 89e1e23637f..c27c5542ce1 100644 --- a/src/libserialize/lib.rs +++ b/src/libserialize/lib.rs @@ -23,7 +23,7 @@ Core encoding and decoding interfaces. html_root_url = "http://static.rust-lang.org/doc/master")]; #[allow(missing_doc)]; #[forbid(non_camel_case_types)]; -#[feature(macro_rules, managed_boxes, default_type_params)]; +#[feature(macro_rules, managed_boxes, default_type_params, phase)]; // NOTE remove the following two attributes after the next snapshot. #[allow(unrecognized_lint)]; @@ -33,6 +33,8 @@ Core encoding and decoding interfaces. // test harness access #[cfg(test)] extern crate test; +#[phase(syntax, link)] +extern crate log; extern crate collections; |
