Update to proc_macro

This commit is contained in:
David Tolnay 2016-10-08 22:12:51 -07:00
parent e5f9ca89c6
commit c104badf1c
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
3 changed files with 3 additions and 3 deletions

View File

@ -62,7 +62,7 @@ serde_derive = "0.8"
Then run:
```rust
#![feature(rustc_macro)]
#![feature(proc_macro)]
#[macro_use]
extern crate serde_derive;

View File

@ -1,7 +1,7 @@
#![cfg_attr(feature = "nightly-testing", feature(plugin))]
#![cfg_attr(feature = "nightly-testing", plugin(clippy))]
#![cfg_attr(not(feature = "with-syntex"), feature(rustc_macro))]
#![cfg_attr(not(feature = "with-syntex"), feature(proc_macro))]
#![feature(test)]

View File

@ -1,7 +1,7 @@
#![cfg_attr(feature = "nightly-testing", feature(plugin))]
#![cfg_attr(feature = "nightly-testing", plugin(clippy))]
#![cfg_attr(not(feature = "with-syntex"), feature(rustc_macro, plugin))]
#![cfg_attr(not(feature = "with-syntex"), feature(proc_macro, plugin))]
#![cfg_attr(not(feature = "with-syntex"), plugin(indoc))]
#[cfg(not(feature = "with-syntex"))]