diff --git a/contrib/lib/tests/space_helmet.rs b/contrib/lib/tests/space_helmet.rs index 464379b055..fb7ed7dd69 100644 --- a/contrib/lib/tests/space_helmet.rs +++ b/contrib/lib/tests/space_helmet.rs @@ -1,7 +1,7 @@ #![cfg_attr(test, feature(plugin, decl_macro, proc_macro_non_items))] #![cfg_attr(test, plugin(rocket_codegen))] -#[macro_use] extern crate rocket; +extern crate rocket; extern crate rocket_contrib; #[cfg(feature = "space_helmet")] diff --git a/examples/space_helmet/src/hello.rs b/examples/space_helmet/src/hello.rs index e8ea1f8367..025a7b8205 100644 --- a/examples/space_helmet/src/hello.rs +++ b/examples/space_helmet/src/hello.rs @@ -1,7 +1,7 @@ #![feature(decl_macro, proc_macro_non_items, plugin)] #![plugin(rocket_codegen)] -#[macro_use] extern crate rocket; +extern crate rocket; extern crate rocket_contrib; use rocket::http::uri::Uri;