diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2020-06-02 22:46:42 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2020-06-03 00:18:57 +0300 |
| commit | e793b46e49afc1ac1e15bf92c4e544695b646ca9 (patch) | |
| tree | 4aafa036de9201a0f0244ed211d9631907b1f103 /src/tools | |
| parent | 283e5b4106771f9d6ee6e081c07d4a174b51441e (diff) | |
| download | rust-e793b46e49afc1ac1e15bf92c4e544695b646ca9.tar.gz rust-e793b46e49afc1ac1e15bf92c4e544695b646ca9.zip | |
Update fulldeps tests and clippy
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/clippy/clippy_lints/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/clippy/clippy_lints/src/lib.rs b/src/tools/clippy/clippy_lints/src/lib.rs index 902f3d56c1e..b7d928d249f 100644 --- a/src/tools/clippy/clippy_lints/src/lib.rs +++ b/src/tools/clippy/clippy_lints/src/lib.rs @@ -16,8 +16,6 @@ // FIXME: switch to something more ergonomic here, once available. // (Currently there is no way to opt into sysroot crates without `extern crate`.) #[allow(unused_extern_crates)] -extern crate fmt_macros; -#[allow(unused_extern_crates)] extern crate rustc_ast; #[allow(unused_extern_crates)] extern crate rustc_ast_pretty; @@ -48,6 +46,8 @@ extern crate rustc_mir; #[allow(unused_extern_crates)] extern crate rustc_parse; #[allow(unused_extern_crates)] +extern crate rustc_parse_format; +#[allow(unused_extern_crates)] extern crate rustc_session; #[allow(unused_extern_crates)] extern crate rustc_span; |
