We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 616b6d2 commit cd76d57Copy full SHA for cd76d57
clippy_utils/src/lib.rs
@@ -22,6 +22,9 @@ extern crate rustc_ast;
22
extern crate rustc_ast_pretty;
23
extern crate rustc_attr;
24
extern crate rustc_data_structures;
25
+// The `rustc_driver` crate seems to be required in order to use the `rust_ast` crate.
26
+#[allow(unused_extern_crates)]
27
+extern crate rustc_driver;
28
extern crate rustc_errors;
29
extern crate rustc_hir;
30
extern crate rustc_hir_typeck;
0 commit comments