diff options
Diffstat (limited to '')
-rw-r--r-- | testing/tests/rocket.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/tests/rocket.rs b/testing/tests/rocket.rs index 2bf4713..93cf93d 100644 --- a/testing/tests/rocket.rs +++ b/testing/tests/rocket.rs @@ -1,9 +1,9 @@ #![cfg(feature = "with-rocket")] -#![feature(plugin)] -#![plugin(rocket_codegen)] +#![feature(proc_macro_hygiene, decl_macro)] #[macro_use] extern crate askama; +#[macro_use] extern crate rocket; use askama::Template; |