about summary refs log tree commit diff
path: root/clippy_dev
diff options
context:
space:
mode:
authorflip1995 <hello@philkrones.com>2020-02-21 09:39:38 +0100
committerflip1995 <hello@philkrones.com>2020-02-21 11:14:18 +0100
commit8472ecda0f18a2b1045d4b8736e06e774ab1c73a (patch)
tree26fd7a74ebdb2e8cbcbd7ad815f33cf81bd4b758 /clippy_dev
parentb67764d5cb067aaa3ee53168855959465a8a7267 (diff)
downloadrust-8472ecda0f18a2b1045d4b8736e06e774ab1c73a.tar.gz
rust-8472ecda0f18a2b1045d4b8736e06e774ab1c73a.zip
Fix fallout
Diffstat (limited to 'clippy_dev')
-rw-r--r--clippy_dev/src/main.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/clippy_dev/src/main.rs b/clippy_dev/src/main.rs
index ec0c33109ba..901e663ded3 100644
--- a/clippy_dev/src/main.rs
+++ b/clippy_dev/src/main.rs
@@ -1,7 +1,10 @@
 #![cfg_attr(feature = "deny-warnings", deny(warnings))]
 
 use clap::{App, Arg, SubCommand};
-use clippy_dev::*;
+use clippy_dev::{
+    gather_all, gen_changelog_lint_list, gen_deprecated, gen_lint_group_list, gen_modules_list, gen_register_lint_list,
+    replace_region_in_file, Lint, DOCS_LINK,
+};
 use std::path::Path;
 
 mod fmt;