Drop support for non-syroot proc macro ABIs

This commit is contained in:
Lukas Wirth 2023-03-29 10:57:32 +02:00
parent 8ea1afce28
commit 7498ec730e
28 changed files with 140 additions and 4617 deletions

View file

@ -1,6 +1,5 @@
//! A standalone binary for `proc-macro-srv`.
use proc_macro_srv::cli;
//! Driver for proc macro server
fn main() -> std::io::Result<()> {
let v = std::env::var("RUST_ANALYZER_INTERNALS_DO_NOT_USE");
@ -15,5 +14,5 @@ fn main() -> std::io::Result<()> {
}
}
cli::run()
proc_macro_srv_cli::run()
}