From 9b5858da4fdb6595009b6bb57521361e757980c2 Mon Sep 17 00:00:00 2001 From: Eunchong Yu Date: Sun, 16 Mar 2014 18:54:34 +0900 Subject: [PATCH] logging macros are moved out to the separate crate `log`. --- src/http/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/http/lib.rs b/src/http/lib.rs index 6f7f77d..62d91cf 100644 --- a/src/http/lib.rs +++ b/src/http/lib.rs @@ -11,8 +11,10 @@ //#[deny(missing_doc)]; #[feature(macro_rules)]; +#[feature(phase)]; #[macro_escape]; +#[phase(syntax, link)] extern crate log; extern crate extra; extern crate time; extern crate collections;