]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/src/lib.rs
Merge branch 'macro-use' into HEAD
[rust.git] / clippy_lints / src / lib.rs
index 98258189701594e827aaf48092e6cb7808788e8f..8ff0e1852c3db51f6a1fe5f1120d47371ab3be74 100644 (file)
 #![feature(rust_2018_preview)]
 #![warn(rust_2018_idioms)]
 
-#[macro_use]
-extern crate rustc;
-
 use toml;
 use rustc_plugin;
 
-#[macro_use]
-extern crate matches as matches_macro;
-
-#[macro_use]
-extern crate serde_derive;
-
-#[macro_use]
-extern crate lazy_static;
-
-#[macro_use]
-extern crate if_chain;
 
 macro_rules! declare_clippy_lint {
     { pub $name:tt, style, $description:tt } => {