Transition leftover test libs to Rust 2018
This commit is contained in:
parent
273b7f7f46
commit
64ff65990f
@ -1,6 +1,7 @@
|
||||
[package]
|
||||
name = "clippy_workspace_tests"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
|
||||
[workspace]
|
||||
members = ["subcrate"]
|
||||
|
@ -1,2 +1,4 @@
|
||||
#![deny(rust_2018_idioms)]
|
||||
|
||||
fn main() {
|
||||
}
|
||||
|
@ -11,6 +11,7 @@ authors = [
|
||||
license = "MPL-2.0"
|
||||
description = "A macro to test clippy's procedural macro checks"
|
||||
repository = "https://github.com/rust-lang/rust-clippy"
|
||||
edition = "2018"
|
||||
|
||||
[lib]
|
||||
name = "clippy_mini_macro_test"
|
||||
|
@ -1,4 +1,5 @@
|
||||
#![feature(proc_macro_quote, proc_macro_hygiene)]
|
||||
#![deny(rust_2018_idioms)]
|
||||
extern crate proc_macro;
|
||||
|
||||
use proc_macro::{TokenStream, quote};
|
||||
|
Loading…
Reference in New Issue
Block a user