We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3337e09 commit 3c0d6b3Copy full SHA for 3c0d6b3
src/lib.rs
@@ -54,6 +54,11 @@ extern crate rustc_session;
54
extern crate rustc_span;
55
extern crate rustc_target;
56
57
+// Necessary to pull in object code as the rest of the rustc crates are shipped only as rmeta
58
+// files.
59
+#[allow(unused_extern_crates)]
60
+extern crate rustc_driver;
61
+
62
mod borrow_tracker;
63
mod clock;
64
mod concurrency;
0 commit comments