Skip to content

Commit c104bad

Browse files
committed
Update to proc_macro
1 parent e5f9ca8 commit c104bad

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ serde_derive = "0.8"
6262
Then run:
6363

6464
```rust
65-
#![feature(rustc_macro)]
65+
#![feature(proc_macro)]
6666

6767
#[macro_use]
6868
extern crate serde_derive;

json_tests/benches/bench.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![cfg_attr(feature = "nightly-testing", feature(plugin))]
22
#![cfg_attr(feature = "nightly-testing", plugin(clippy))]
33

4-
#![cfg_attr(not(feature = "with-syntex"), feature(rustc_macro))]
4+
#![cfg_attr(not(feature = "with-syntex"), feature(proc_macro))]
55

66
#![feature(test)]
77

json_tests/tests/test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![cfg_attr(feature = "nightly-testing", feature(plugin))]
22
#![cfg_attr(feature = "nightly-testing", plugin(clippy))]
33

4-
#![cfg_attr(not(feature = "with-syntex"), feature(rustc_macro, plugin))]
4+
#![cfg_attr(not(feature = "with-syntex"), feature(proc_macro, plugin))]
55
#![cfg_attr(not(feature = "with-syntex"), plugin(indoc))]
66

77
#[cfg(not(feature = "with-syntex"))]

0 commit comments

Comments
 (0)