Skip to content

Commit c4515c0

Browse files
author
Arnavion
committed
Fixed build on latest nightly.
rust-lang/rust#52081 updated the name of the main feature required for proc-macro-related sub features.
1 parent fb5016d commit c4515c0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

factorio-mods-common/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Common types and functionality used by the other factorio-mods crates.
22
33
#![deny(missing_docs)]
4-
#![feature(proc_macro, proc_macro_path_invoc)]
4+
#![feature(proc_macro_path_invoc, use_extern_macros)]
55

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

factorio-mods-local/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! API to interface with the local Factorio installation.
22
33
#![deny(missing_docs)]
4-
#![feature(generators, generator_trait, proc_macro, proc_macro_path_invoc)]
4+
#![feature(generators, generator_trait, proc_macro_path_invoc, use_extern_macros)]
55

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

factorio-mods-web/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! API to interface with <https://mods.factorio.com/>
22
33
#![deny(missing_docs)]
4-
#![feature(catch_expr, generators, generator_trait, proc_macro, proc_macro_non_items, proc_macro_path_invoc)]
4+
#![feature(catch_expr, generators, generator_trait, proc_macro_non_items, proc_macro_path_invoc, use_extern_macros)]
55

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

package/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Solves the given set of packages and requirements to produce a solution of packages to be installed.
22
3-
#![feature(proc_macro, proc_macro_path_invoc)]
3+
#![feature(proc_macro_path_invoc, use_extern_macros)]
44

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

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! A CLI tool to manage Factorio mods.
22
3-
#![feature(catch_expr, exhaustive_patterns, generators, never_type, nll, proc_macro, proc_macro_non_items, proc_macro_path_invoc)]
3+
#![feature(catch_expr, exhaustive_patterns, generators, never_type, nll, proc_macro_non_items, proc_macro_path_invoc, use_extern_macros)]
44

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

0 commit comments

Comments
 (0)