Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Import rustc_plugin from its new location #1544

Merged
merged 1 commit into from
Aug 22, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions rls/src/build/rustc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ extern crate rustc_interface;
#[allow(unused_extern_crates)]
extern crate rustc_metadata;
#[allow(unused_extern_crates)]
extern crate rustc_plugin;
#[allow(unused_extern_crates)]
extern crate rustc_resolve;
#[allow(unused_extern_crates)]
extern crate rustc_save_analysis;
Expand Down Expand Up @@ -241,7 +239,7 @@ impl rustc_driver::Callbacks for RlsRustcCalls {

#[cfg(feature = "clippy")]
fn clippy_after_parse_callback(compiler: &interface::Compiler) {
use self::rustc_plugin::registry::Registry;
use self::rustc_driver::plugin::registry::Registry;

let sess = compiler.session();
let mut registry = Registry::new(
Expand Down