Skip to content

Commit a7bea13

Browse files
committed
Remove implied rust_2018 feature
We are already on the edition and this feature is implied.
1 parent 76321d3 commit a7bea13

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

clippy_lints/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#![feature(iterator_find_map)]
1313
#![feature(macro_at_most_once_rep)]
1414
#![feature(tool_attributes)]
15-
#![feature(rust_2018_preview)]
1615
#![warn(rust_2018_idioms)]
1716

1817
use toml;

mini-macro/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(use_extern_macros, proc_macro_quote, proc_macro_non_items)]
1+
#![feature(proc_macro_quote, proc_macro_non_items)]
22
extern crate proc_macro;
33

44
use proc_macro::{TokenStream, quote};

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// error-pattern:cargo-clippy
22
#![feature(plugin_registrar)]
3-
#![feature(rust_2018_preview)]
43
#![feature(rustc_private)]
54
#![feature(macro_vis_matcher)]
65
#![allow(unknown_lints)]

0 commit comments

Comments
 (0)