From 44296980fc9c1c5d1e2edf7f30502d65dd3973b1 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Sat, 7 Jan 2017 20:59:35 -0800 Subject: [PATCH] Remove proc_macro as a feature - it's stabilized! --- examples/content_types/src/main.rs | 2 +- examples/handlebars_templates/src/main.rs | 2 +- examples/json/src/main.rs | 2 +- examples/todo/src/main.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/content_types/src/main.rs b/examples/content_types/src/main.rs index 371a5983..d33f789b 100644 --- a/examples/content_types/src/main.rs +++ b/examples/content_types/src/main.rs @@ -1,4 +1,4 @@ -#![feature(plugin, proc_macro)] +#![feature(plugin)] #![plugin(rocket_codegen)] extern crate rocket; diff --git a/examples/handlebars_templates/src/main.rs b/examples/handlebars_templates/src/main.rs index 7f5a7063..5e29e6b1 100644 --- a/examples/handlebars_templates/src/main.rs +++ b/examples/handlebars_templates/src/main.rs @@ -1,4 +1,4 @@ -#![feature(plugin, proc_macro)] +#![feature(plugin)] #![plugin(rocket_codegen)] extern crate rocket_contrib; diff --git a/examples/json/src/main.rs b/examples/json/src/main.rs index 43ef0855..5e66d911 100644 --- a/examples/json/src/main.rs +++ b/examples/json/src/main.rs @@ -1,4 +1,4 @@ -#![feature(plugin, proc_macro)] +#![feature(plugin)] #![plugin(rocket_codegen)] extern crate rocket; diff --git a/examples/todo/src/main.rs b/examples/todo/src/main.rs index 93a84b15..d6f77048 100644 --- a/examples/todo/src/main.rs +++ b/examples/todo/src/main.rs @@ -1,4 +1,4 @@ -#![feature(plugin, custom_derive, custom_attribute, proc_macro)] +#![feature(plugin, custom_derive, custom_attribute)] #![plugin(rocket_codegen)] extern crate rocket;