]> git.lizzy.rs Git - rust.git/blobdiff - src/lib.rs
deps: bump toml from 0.4 to 0.5
[rust.git] / src / lib.rs
index bfa44d08703c6eceebf62abf539cc5d0d0208520..86174a6b316fc942663ef7122eb71b74a15f7bcd 100644 (file)
@@ -1,13 +1,12 @@
 // error-pattern:cargo-clippy
 #![feature(plugin_registrar)]
 #![feature(rustc_private)]
-#![feature(tool_lints)]
-#![allow(unknown_lints)]
-#![allow(clippy::missing_docs_in_private_items)]
 #![warn(rust_2018_idioms)]
 
 // FIXME: switch to something more ergonomic here, once available.
-// (currently there is no way to opt into sysroot crates w/o `extern crate`)
+// (Currently there is no way to opt into sysroot crates without `extern crate`.)
+#[allow(unused_extern_crates)]
+extern crate rustc_driver;
 #[allow(unused_extern_crates)]
 extern crate rustc_plugin;
 use self::rustc_plugin::Registry;