Skip to content

Commit

Permalink
Fixed build on latest nightly.
Browse files Browse the repository at this point in the history
rust-lang/rust#52081 updated the name of the main
feature required for proc-macro-related sub features.
  • Loading branch information
Arnavion committed Jul 17, 2018
1 parent fb5016d commit c4515c0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion factorio-mods-common/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Common types and functionality used by the other factorio-mods crates.

#![deny(missing_docs)]
#![feature(proc_macro, proc_macro_path_invoc)]
#![feature(proc_macro_path_invoc, use_extern_macros)]

#![cfg_attr(feature = "cargo-clippy", deny(clippy, clippy_pedantic))]
#![cfg_attr(feature = "cargo-clippy", allow(
Expand Down
2 changes: 1 addition & 1 deletion factorio-mods-local/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! API to interface with the local Factorio installation.

#![deny(missing_docs)]
#![feature(generators, generator_trait, proc_macro, proc_macro_path_invoc)]
#![feature(generators, generator_trait, proc_macro_path_invoc, use_extern_macros)]

#![cfg_attr(feature = "cargo-clippy", deny(clippy, clippy_pedantic))]
#![cfg_attr(feature = "cargo-clippy", allow(
Expand Down
2 changes: 1 addition & 1 deletion factorio-mods-web/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! API to interface with <https://mods.factorio.com/>

#![deny(missing_docs)]
#![feature(catch_expr, generators, generator_trait, proc_macro, proc_macro_non_items, proc_macro_path_invoc)]
#![feature(catch_expr, generators, generator_trait, proc_macro_non_items, proc_macro_path_invoc, use_extern_macros)]

#![cfg_attr(feature = "cargo-clippy", deny(clippy, clippy_pedantic))]
#![cfg_attr(feature = "cargo-clippy", allow(
Expand Down
2 changes: 1 addition & 1 deletion package/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Solves the given set of packages and requirements to produce a solution of packages to be installed.

#![feature(proc_macro, proc_macro_path_invoc)]
#![feature(proc_macro_path_invoc, use_extern_macros)]

#![cfg_attr(feature = "cargo-clippy", deny(clippy, clippy_pedantic))]
#![cfg_attr(feature = "cargo-clippy", allow(
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! A CLI tool to manage Factorio mods.

#![feature(catch_expr, exhaustive_patterns, generators, never_type, nll, proc_macro, proc_macro_non_items, proc_macro_path_invoc)]
#![feature(catch_expr, exhaustive_patterns, generators, never_type, nll, proc_macro_non_items, proc_macro_path_invoc, use_extern_macros)]

#![cfg_attr(feature = "cargo-clippy", deny(clippy, clippy_pedantic))]
#![cfg_attr(feature = "cargo-clippy", allow(
Expand Down

0 comments on commit c4515c0

Please sign in to comment.