Update mini-macro post proc macro stabilization

https://github.com/rust-lang/rust/pull/52081 stabilized proc macros, but
quote is still unstable, so you need to explicitly enable that feature.
This commit is contained in:
Manish Goregaokar 2018-07-16 16:29:09 -07:00
parent 8f61a792f4
commit 3246a1f5c0

View File

@ -1,4 +1,4 @@
#![feature(proc_macro, proc_macro_non_items)]
#![feature(use_extern_macros, proc_macro_quote, proc_macro_non_items)]
extern crate proc_macro;
use proc_macro::{TokenStream, quote};