Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions clippy_workspace_tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "clippy_workspace_tests"
version = "0.1.0"
edition = "2018"

[workspace]
members = ["subcrate"]
2 changes: 2 additions & 0 deletions clippy_workspace_tests/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
#![deny(rust_2018_idioms)]

fn main() {
}
1 change: 1 addition & 0 deletions mini-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 1 addition & 0 deletions mini-macro/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![feature(proc_macro_quote, proc_macro_hygiene)]
#![deny(rust_2018_idioms)]
extern crate proc_macro;

use proc_macro::{TokenStream, quote};
Expand Down