|
17 | 17 |
|
18 | 18 | // FIXME: switch to something more ergonomic here, once available.
|
19 | 19 | // (Currently there is no way to opt into sysroot crates without `extern crate`.)
|
20 |
| -#[allow(unused_extern_crates)] |
21 | 20 | extern crate rustc_ast;
|
22 |
| -#[allow(unused_extern_crates)] |
23 | 21 | extern crate rustc_ast_pretty;
|
24 |
| -#[allow(unused_extern_crates)] |
25 | 22 | extern crate rustc_attr;
|
26 |
| -#[allow(unused_extern_crates)] |
27 | 23 | extern crate rustc_data_structures;
|
28 |
| -#[allow(unused_extern_crates)] |
29 |
| -extern crate rustc_driver; |
30 |
| -#[allow(unused_extern_crates)] |
31 | 24 | extern crate rustc_errors;
|
32 |
| -#[allow(unused_extern_crates)] |
33 | 25 | extern crate rustc_hir;
|
34 |
| -#[allow(unused_extern_crates)] |
35 | 26 | extern crate rustc_hir_pretty;
|
36 |
| -#[allow(unused_extern_crates)] |
37 | 27 | extern crate rustc_index;
|
38 |
| -#[allow(unused_extern_crates)] |
39 | 28 | extern crate rustc_infer;
|
40 |
| -#[allow(unused_extern_crates)] |
41 | 29 | extern crate rustc_lexer;
|
42 |
| -#[allow(unused_extern_crates)] |
43 | 30 | extern crate rustc_lint;
|
44 |
| -#[allow(unused_extern_crates)] |
45 | 31 | extern crate rustc_middle;
|
46 |
| -#[allow(unused_extern_crates)] |
47 | 32 | extern crate rustc_mir;
|
48 |
| -#[allow(unused_extern_crates)] |
49 | 33 | extern crate rustc_parse;
|
50 |
| -#[allow(unused_extern_crates)] |
51 | 34 | extern crate rustc_parse_format;
|
52 |
| -#[allow(unused_extern_crates)] |
53 | 35 | extern crate rustc_session;
|
54 |
| -#[allow(unused_extern_crates)] |
55 | 36 | extern crate rustc_span;
|
56 |
| -#[allow(unused_extern_crates)] |
57 | 37 | extern crate rustc_target;
|
58 |
| -#[allow(unused_extern_crates)] |
59 | 38 | extern crate rustc_trait_selection;
|
60 |
| -#[allow(unused_extern_crates)] |
61 | 39 | extern crate rustc_typeck;
|
62 | 40 |
|
63 | 41 | use rustc_data_structures::fx::FxHashSet;
|
|
0 commit comments