diff options
| author | flip1995 <hello@philkrones.com> | 2020-02-21 09:39:38 +0100 |
|---|---|---|
| committer | flip1995 <hello@philkrones.com> | 2020-02-21 11:14:18 +0100 |
| commit | 8472ecda0f18a2b1045d4b8736e06e774ab1c73a (patch) | |
| tree | 26fd7a74ebdb2e8cbcbd7ad815f33cf81bd4b758 /clippy_dev | |
| parent | b67764d5cb067aaa3ee53168855959465a8a7267 (diff) | |
| download | rust-8472ecda0f18a2b1045d4b8736e06e774ab1c73a.tar.gz rust-8472ecda0f18a2b1045d4b8736e06e774ab1c73a.zip | |
Fix fallout
Diffstat (limited to 'clippy_dev')
| -rw-r--r-- | clippy_dev/src/main.rs | 5 |
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; |
