about summary refs log tree commit diff
path: root/src/tools
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2020-06-02 22:46:42 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2020-06-03 00:18:57 +0300
commite793b46e49afc1ac1e15bf92c4e544695b646ca9 (patch)
tree4aafa036de9201a0f0244ed211d9631907b1f103 /src/tools
parent283e5b4106771f9d6ee6e081c07d4a174b51441e (diff)
downloadrust-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.rs4
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;